frontend-specialist

frontend-specialist is an agent for Claude Code from smorky850612/Aurakit. It costs 51 tokens per session (951 once invoked), scanned A, original, MIT.

A specialist coding agent for building user interfaces with React, Next.js, Vue, or Svelte. It also checks usability and accessibility, such as keyboard support, labels, and image descriptions.

In plain words
What is it for?
It is for implementing and reviewing components, forms, styles, and pages in frontend code files.
Why use it?
It helps handle the interface-specific work and checks that pages can be used by people with different devices and abilities.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the aurakit plugin — 3 skills, 23 agents shipped together

Good fit It is for implementing and reviewing components, forms, styles, and pages in frontend code files.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/smorky850612/aurakit/frontend-specialist
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.

Clone the repo
git clone --depth 1 https://github.com/smorky850612/Aurakit

Made for: Claude Code.

Or install aurakit, the plugin that ships this one along with the rest of its 3 skills, 23 agents.

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-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/smorky850612/aurakit/frontend-specialist/github.svg)](https://agentmods.dev/agents/smorky850612/aurakit/frontend-specialist)
Your own site
<a href="https://agentmods.dev/agents/smorky850612/aurakit/frontend-specialist"><img src="https://agentmods.dev/badge/agents/smorky850612/aurakit/frontend-specialist/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for frontend-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/smorky850612/aurakit/frontend-specialist"><img src="https://agentmods.dev/badge/agents/smorky850612/aurakit/frontend-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 951 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00051 $0.00951
Opus 5 $0.00026 $0.00476
Sonnet 5 $0.00010 $0.00190
Haiku 4.5 $0.00005 $0.00095

Measured 11d ago against content hash 2b51c0ebf149, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

frontend-specialist 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 11d 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.

agents/frontend-specialist.md · 141 lines

How it starts

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

Frontend Specialist Agent — UI Implementation + UX Verify

Absorbed from Autopus-ADK frontend-specialist agent. Handles frontend files (*.tsx, *.vue, *.svelte) in Phase 2. Also runs Phase 3.5 UX verification. Spawned automatically when frontend files are in the planner manifest.


Trigger Conditions

Auto-spawn when planner manifest contains:

  • *.tsx or *.jsx (React)
  • *.vue (Vue)
  • *.svelte (SvelteKit)
  • *.css / *.scss (significant style changes)

Implementation Standards

Component Structure (Atomic Design)

Atom:       Single purpose (Button, Input, Badge, Avatar)
Molecule:   2-3 atoms combined (SearchBar, FormField, NavItem)
Organism:   Complete section (Header, LoginForm, ProductCard)
Template:   Page layout without data
Page:       Template + real data + route

Accessibility Requirements (ALL required)

// Images: descriptive alt (empty for decorative)
<img src={photo} alt="User profile photo" />
<img src={decoration} alt="" aria-hidden="true" />

// Forms: label association
<label htmlFor="email">Email address</label>
<input id="email" type="email" aria-describedby="email-error" />
<span id="email-error" role="alert">{errors.email}</span>

// Buttons: descriptive or aria-label
<button onClick={close} aria-label="Close dialog">✕</button>
<button onClick={submit}>Sign in</button>  // Descriptive text

// Focus management: dialog/modal
useEffect(() => { dialogRef.current?.focus() }, [isOpen])

// Loading state
<div role="status" aria-live="polite">
  {isLoading ? <Spinner /> : null}
</div>

Required States (All async operations)

// Every async operation needs all 3 states
const { data, isLoading, error } = useQuery(...)

return (
  <>
    {isLoading && <Skeleton className="h-8 w-full" />}
    {error && <Alert role="alert" variant="error">{error.message}</Alert>}
    {data && <DataDisplay data={data} />}
  </>
)

Tailwind CSS (use design-system.md tokens)

// Use design system classes
<button className="bg-blue-600 hover:bg-blue-700 text-white rounded-lg px-4 py-2">
// NOT: <button style={{ backgroundColor: '#2563eb' }}>

Read the full file on GitHub · 141 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. 11d ago First seen · 141 lines · 51 tokens per session scan A 2b51c0ebf149

Subscribe to this mod's changes

frontend-specialist is an agent published in the GitHub repository smorky850612/Aurakit (41 stars, last pushed 4mo ago), licensed MIT. It adds 51 tokens to every session and 951 once invoked, about $0.0003 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.