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/kumaran-is/claude-code-onboardingWrote 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/commands/kumaran-is/claude-code-onboarding/scaffold-a2ui)<a href="https://agentmods.dev/commands/kumaran-is/claude-code-onboarding/scaffold-a2ui"><img src="https://agentmods.dev/badge/commands/kumaran-is/claude-code-onboarding/scaffold-a2ui.svg" alt="Measured on agentmods" 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.00043 | $0.01060 |
| Opus 5 | $0.00022 | $0.00530 |
| Sonnet 5 | $0.00009 | $0.00212 |
| Haiku 4.5 | $0.00004 | $0.00106 |
Grade A, and why
scaffold-a2ui 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.
How it starts
The opening of the file, as written. The whole thing — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scaffold A2UI Angular Renderer
Create an A2UI renderer feature module in an existing Angular 21.x project.
Feature name: $ARGUMENTS (default to "a2ui-chat" if not provided)
Pre-requisites
Official SDK:
npm install @a2ui/angularis the official Angular renderer SDK. If the project can use it, prefer the official package over a custom renderer implementation.
- Read the
a2ui-angularskill (SKILL.mdand allreference/*.mdfiles) for protocol spec, security rules, component catalog, and renderer patterns. - Read the
angular-spaskill'sreference/angular-conventions.mdfor Angular coding standards. - Use Context7 MCP to verify Angular signal inputs/outputs API if unsure.
Steps
-
Create feature folder structure
src/app/features/<name>/ +-- models/a2ui.model.ts +-- services/a2ui-catalog.service.ts +-- services/a2ui-agent.service.ts +-- services/a2ui-sanitizer.service.ts +-- components/a2ui-renderer/a2ui-renderer.component.ts +-- components/a2ui-renderer/a2ui-renderer.component.spec.ts +-- components/a2ui-chat/a2ui-chat.component.ts +-- components/a2ui-chat/a2ui-chat.component.spec.ts +-- <name>.routes.ts -
Create A2UI models —
A2UIValue,A2UIChildren,A2UIComponent,SurfaceUpdate,DataModelUpdate,A2UIMessage,SurfaceState,UserAction,ChatMessageinterfaces.UserActionis the client→agent message type:{ name, surfaceId, sourceComponentId, timestamp, context }. Followreference/a2ui-renderer-patterns.mdmodels section. -
Create catalog service — Allowlist of official A2UI v0.8 component types:
Row,Column,Text,Image,Icon,Button,TextField,Checkbox,DateTimeInput,Card,Modal,Tabs,List,Divider. Followreference/a2ui-security.md. -
Create sanitizer service — URL validation (protocol check), text length limits. Follow
reference/a2ui-security.md. -
Create recursive renderer component — Maps official A2UI v0.8 types (Row, Column, Text, Image, Icon, Button, TextField, Checkbox, DateTimeInput, Card, Modal, Tabs, List, Divider) to Angular/daisyUI components via
@switch. Uses signal inputs,computed()for child filtering, validates against catalog. Note: Card useschild(single id string); layout components usechildren.explicitList. Followreference/a2ui-renderer-patterns.md.
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.
- 4d ago First seen · 66 lines · 43 tokens per session scan A 2d55607cb438
scaffold-a2ui is a command published in the GitHub repository kumaran-is/claude-code-onboarding (35 stars, last pushed 2mo ago), licensed MIT. It adds 43 tokens to every session and 1,060 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-09-03.
Other commands, from other repositories
ui-flow-review
Review menus, HUD, navigation, and player flow from a UX perspective.
responsive-design-specialist
Use when a layout breaks between sizes. Arbitrary breakpoints, type that does not scale, images that blow out the grid, or a desktop design retrofitted onto mobile.
design-form
Design a form with the fewest fields that works, clear labels, and errors that help.
frontend-3d
You are an expert in 3D web development using Three.js, React Three Fiber, WebGL, and WebGPU. You create immersive 3D experiences for the web.
frontend-design
Read and follow the instructions in agents/frontend-design/design-all.md. Also read all referenced files in agents/frontend-design/reference/ as needed for the task.
get-component-source
The full TSX source of a component (append " demo" for its usage example).