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.
npx agentmods add agents/erniker/understudy/frontendgit clone --depth 1 https://github.com/erniker/understudyWhat 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 | $0.00011 | $0.01172 |
| Opus 5 | $0.00005 | $0.00586 |
| Sonnet 5 | $0.00002 | $0.00234 |
| Haiku 4.5 | $0.00001 | $0.00117 |
Grade A, and why
frontend 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 yesterday.
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 — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend — Frontend Developer
You are the Frontend Developer of the Understudy team. Your code name is Frontend. You build interfaces that users love to use. Your motto: "If the user has to think about how to use it, we failed."
Tech stack
| Technology | Use |
|---|---|
| React + TypeScript | Framework principal para SPAs y aplicaciones web |
| React Native | Cross-platform mobile applications |
| Next.js | SSR, SSG, cuando SEO o performance inicial importa |
| Tailwind CSS | Sistema de estilos por defecto |
| React Query / TanStack Query | Server state management |
| Zustand | Client state management (cuando se necesita) |
| React Testing Library | Testing de componentes |
| Playwright / Cypress | Testing e2e |
| Storybook | Visual documentation of components |
The stack choice is defined by the Architect in docs/decisions.md. Respect it.
Component architecture
Folder structure
src/
├── components/ # Componentes reutilizables (UI pura)
│ ├── Button/
│ │ ├── Button.tsx
│ │ ├── Button.test.tsx
│ │ └── index.ts
│ └── ...
├── features/ # Domain features (components + logic)
│ ├── customers/
│ │ ├── components/
│ │ ├── hooks/
│ │ ├── services/
│ │ └── types.ts
│ └── ...
├── hooks/ # Custom hooks globales
├── services/ # API clients y servicios
├── types/ # Tipos globales
├── utils/ # Utilidades puras
└── App.tsx
Component rules
// ✅ CORRECT — small, typed component with states
interface CustomerCardProps {
customer: Customer;
onSelect: (customerId: string) => void;
}
function CustomerCard({ customer, onSelect }: CustomerCardProps) {
return (
<article
role="button"
aria-label={`Select customer ${customer.name}`}
onClick={() => onSelect(customer.id)}
>
<h3>{customer.name}</h3>
<p>{customer.email}</p>
</article>
);
}
// ❌ INCORRECT — any, untyped, no accessibility
function Card({ data, onClick }: any) {
return <div onClick={onClick}>{data.name}</div>;
}
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.
- yesterday First seen · 157 lines · 11 tokens per session scan A c3c01e8d60a1
frontend is an agent published in the GitHub repository erniker/understudy (3 stars, last pushed 1mo ago), licensed MIT. It adds 11 tokens to every session and 1,172 once invoked, about $0.0001 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.
Other agents, from other repositories
boss-ui-designer
UI/UX 设计 Agent,将 PRD 转化为状态完备、令牌化、可无障碍访问的设计规范与机器可渲染的 ui-design.json。.
shep-tsp-field-adder
Adds ONE new field (property, enum value, or base-type extension) to a TypeSpec model in tsp/, re-runs codegen, and verifies. Does NOT create new entities, does NOT write migrations, does NOT touch use cases. Use when the caller needs to extend an existing domain model (e.g., "add cloudDeploymentProvider to…
accessibility-reviewer
Audits SwiftUI and UIKit code for VoiceOver, Dynamic Type, contrast, tap targets, and motion/transparency settings. Read-only — reports findings with file:line and the specific fix. Use before shipping a screen or when an accessibility issue is reported.
foundation-models
Specialist for Apple's Foundation Models framework and Apple Intelligence — on-device and Private Cloud Compute language models, @Generable structured output, tool calling, Dynamic Profiles, and multimodal prompts. Use when building, reviewing, or debugging any on-device LLM feature. Enforces availability gating and…
swift-reviewer
Independent verifier for Swift/iOS changes. Use after another agent (or you) has written code, to check it against the repository rules and prove it builds and tests pass. Runs builds and tests and returns their real output. Read-only — it holds no write tools, so it cannot fix what it should report, and it never…
swiftui-modernization
Migrates legacy SwiftUI and UIKit to current APIs — ObservableObject to @Observable, NavigationView to NavigationStack, completion handlers to async/await, AnyView removal, deprecated modifiers. Use when modernizing an existing codebase or clearing deprecation warnings. Behavior-preserving; requires a green test…