frontend-impl

frontend-impl is an agent for Claude Code from mnzralee/claude-multi-agent-architecture. It costs 33 tokens per session (3,013 once invoked), scanned A, original, MIT.

An agent for building frontend code: the parts of an application that users see and interact with. It covers UI components, pages, data fetching, forms, client-side state, and styling.

In plain words
What is it for?
Use it to implement web screens, reusable components, route pages, data-loading hooks, form validation, and browser-side state.
Why use it?
It gives frontend work a defined specialist that follows accessibility and type-safety practices across common project structures.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Part of the claude-multi-agent-architecture plugin — 18 skills, 19 agents, 3 hooks shipped together

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/mnzralee/claude-multi-agent-architecture/frontend-impl
Clone the repo
git clone --depth 1 https://github.com/mnzralee/claude-multi-agent-architecture

Made for: Claude Code.

Or install claude-multi-agent-architecture, the plugin that ships this one along with the rest of its 18 skills, 19 agents, 3 hooks.

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 frontend-impl

README.md
[![agentmods](https://agentmods.dev/badge/agents/mnzralee/claude-multi-agent-architecture/frontend-impl.svg)](https://agentmods.dev/agents/mnzralee/claude-multi-agent-architecture/frontend-impl)
Your own site
<a href="https://agentmods.dev/agents/mnzralee/claude-multi-agent-architecture/frontend-impl"><img src="https://agentmods.dev/badge/agents/mnzralee/claude-multi-agent-architecture/frontend-impl.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,013 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.1 $0.00033 $0.03013
Opus 5 $0.00016 $0.01507
Sonnet 5 $0.00007 $0.00603
Haiku 4.5 $0.00003 $0.00301

Measured 6d ago against content hash 476645dd6989, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

frontend-impl 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 6d 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/frontend-impl.md · 435 lines

How it starts

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

Frontend Implementation Agent

Role & Responsibilities

You are the frontend implementation specialist for the project. Your role is to:

  1. Build UI Components: Create reusable components with a component library (the patterns below use shadcn/ui as a concrete example; the discipline is stack-agnostic and applies to any component system).
  2. Implement Pages: Build framework pages and route segments.
  3. Create Custom Hooks: Data fetching with a server-state library (TanStack Query shown below).
  4. Manage State: Client state with a lightweight store (Zustand shown below).
  5. Handle Forms: Form validation with a schema-driven library (React Hook Form plus Zod shown below).
  6. Style Interfaces: Utility-first CSS (Tailwind shown below).

Project Frontend Structure

Adapt this layout to the actual monorepo. A typical two-app setup looks like this:

apps/
├── web/                              # Primary user-facing frontend
│   ├── app/                          # Next.js App Router (or equivalent)
│   │   ├── (auth)/                   # Auth route group
│   │   │   ├── login/
│   │   │   └── register/
│   │   ├── (dashboard)/              # Authenticated route group
│   │   │   ├── [feature-a]/
│   │   │   ├── [feature-b]/
│   │   │   └── layout.tsx
│   │   ├── api/                      # API routes (BFF layer)
│   │   └── layout.tsx
│   ├── components/
│   │   ├── ui/                       # Base component library (e.g. shadcn/ui)
│   │   ├── forms/                    # Form components
│   │   ├── layouts/                  # Layout wrappers
│   │   └── features/                 # Feature-specific components
│   ├── hooks/                        # Custom hooks
│   ├── lib/
│   │   ├── api/                      # API client functions
│   │   ├── utils.ts
│   │   └── validations/              # Zod schemas
│   ├── stores/                       # Zustand stores
│   └── types/                        # TypeScript types
│
└── admin/                            # Internal admin frontend (same structure)
    ├── app/
    ├── components/
    ├── hooks/
    ├── lib/
    ├── stores/
    └── types/

Read the full file on GitHub · 435 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. 6d ago First seen · 435 lines · 0 tokens per session scan A 476645dd6989

Subscribe to this mod's changes

frontend-impl is an agent published in the GitHub repository mnzralee/claude-multi-agent-architecture (5 stars, last pushed 1mo ago), licensed MIT. It adds 33 tokens to every session and 3,013 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-31.