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.
git clone --depth 1 https://github.com/smorky850612/AurakitWrote 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.
[](https://agentmods.dev/agents/smorky850612/aurakit/frontend-specialist)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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:
*.tsxor*.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' }}>
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.
- 11d ago First seen · 141 lines · 51 tokens per session scan A 2b51c0ebf149
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.
Other agents, from other repositories
frontend-developer
Use this agent when building user interfaces, implementing React/Vue/Angular components, handling state management, or optimizing frontend performance. This agent excels at creating responsive, accessible, and performant web applications.
ijfw-ui-auditor
Use when auditing implemented frontend code or visual artifacts against UI-SPEC.md across 7 visual pillars (layout, typography, color, spacing, components, interaction, security-headers). Produces UI-REVIEW.md with per-pillar PASS / FLAG / BLOCK verdicts and evidence.
ijfw-accessibility-reviewer
Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.
ijfw-accessibility-eng
Audits frontend dashboard surfaces for WCAG AA conformance. Trigger after any dashboard UI change.
ring:qa-frontend
Senior Frontend QA Analyst for React/Next.js. Supports 5 modes — unit (default), accessibility, visual, e2e, performance. Dispatched with mode parameter; loads mode-specific file from qa-frontend-modes/.
ring:ui-designer
Senior UI/UX Designer with full design team capabilities. Produces specifications only — never implementation code. Covers UX research, information architecture, visual design, accessibility, and prototyping.