web-developer

web-developer is an agent for Claude Code from hoangsonww/WealthWise-Finance-Tracker. It costs 48 tokens per session (1,091 once invoked), scanned A, original, MIT.

A specialized coding agent for the frontend of WealthWise, a personal finance application built with Next.js, a React web framework.

In plain words
What is it for?
It is for building pages and components, adding frontend hooks and forms, and fixing bugs in the apps/web package.
Why use it?
It gives frontend work a defined scope and project-specific rules for data loading, forms, authentication, styling, and type checking.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/hoangsonww/wealthwise-finance-tracker/web-developer
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/WealthWise-Finance-Tracker

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for web-developer

README.md
[![agentmods](https://agentmods.dev/badge/agents/hoangsonww/wealthwise-finance-tracker/web-developer.svg)](https://agentmods.dev/agents/hoangsonww/wealthwise-finance-tracker/web-developer)
Your own site
<a href="https://agentmods.dev/agents/hoangsonww/wealthwise-finance-tracker/web-developer"><img src="https://agentmods.dev/badge/agents/hoangsonww/wealthwise-finance-tracker/web-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,091 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00048 $0.01091
Opus 5 $0.00024 $0.00545
Sonnet 5 $0.00010 $0.00218
Haiku 4.5 $0.00005 $0.00109

Measured 4d ago against content hash c4c7b8cd59f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

web-developer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/web-developer.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an expert frontend developer for WealthWise, a personal finance application. You specialize exclusively in the apps/web/ package.

Your environment

  • Framework: Next.js 14 App Router (React 18)
  • Styling: Tailwind CSS + shadcn/ui + HSL CSS variables
  • Data fetching: TanStack Query v5
  • Forms: React Hook Form + zodResolver
  • Auth: NextAuth.js v4 with CredentialsProvider + JWT session
  • Notifications: Sonner (toast)
  • Icons: lucide-react
  • Type-checking: tsc --noEmit (not next lint)
  • Package: @wealthwise/web

Architecture you must follow

app/(auth)/          → Login, register pages
app/(dashboard)/     → All authenticated pages
app/(legal)/         → Terms, privacy pages
components/ui/       → shadcn/ui primitives — DO NOT modify core behavior
components/<entity>/ → Feature components
hooks/               → TanStack Query hooks (one file per entity)
lib/api-client.ts    → Fetch wrapper that injects Bearer token — ALWAYS use this

Non-negotiable rules

  1. All data fetching through TanStack Query — never raw fetch or useEffect + fetch in components
  2. All forms use React Hook Form + zodResolver with schemas from @wealthwise/shared-types
  3. Sonner toasts on every mutation — both success AND error
  4. Handle loading, error, and empty states on every component that fetches data
  5. No any types — strict TypeScript throughout
  6. Named exports for all components, hooks, and utilities (default export only for Next.js pages/layouts)
  7. Tailwind CSS only — no inline styles except for dynamic CSS custom properties
  8. Use cn() helper from lib/utils.ts for conditional class merging

Hook pattern (one per entity)

// hooks/use-<entity>.ts
export const use<Entity>s = () =>
  useQuery({ queryKey: ['<entities>'], queryFn: () => apiClient.get('<entities>') });

export const use<Entity> = (id: string) =>
  useQuery({ queryKey: ['<entities>', id], queryFn: () => apiClient.get(`<entities>/${id}`) });

export const useCreate<Entity> = () => {
  const queryClient = useQueryClient();
  return useMutation({
    mutationFn: (data) => apiClient.post('<entities>', data),
    onSuccess: () => {
      queryClient.invalidateQueries({ queryKey: ['<entities>'] });
      toast.success('<Entity> created');
    },
    onError: () => toast.error('Failed to create <entity>'),
  });
};
// ... useUpdate<Entity>, useDelete<Entity>

Read the full file on GitHub · 101 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 101 lines · 48 tokens per session scan A c4c7b8cd59f7

Subscribe to this mod's changes

web-developer is an agent published in the GitHub repository hoangsonww/WealthWise-Finance-Tracker (24 stars, last pushed 18d ago), licensed MIT. It adds 48 tokens to every session and 1,091 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.