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/navraj007in/architecture-cowork-pluginWrote 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/navraj007in/architecture-cowork-plugin/accessibility-audit)<a href="https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/accessibility-audit"><img src="https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/accessibility-audit/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/commands/navraj007in/architecture-cowork-plugin/accessibility-audit"><img src="https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/accessibility-audit.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.00016 | $0.01826 |
| Opus 5 | $0.00008 | $0.00913 |
| Sonnet 5 | $0.00003 | $0.00365 |
| Haiku 4.5 | $0.00002 | $0.00183 |
Grade A, and why
accessibility-audit 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 12d 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 — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/architect:accessibility-audit
Trigger
/architect:accessibility-audit [options]
Options:
[non_interactive:true]— skip questions, scan all frontend components[components:web-app,mobile-app]— audit specific components only
Purpose
Accessible products serve more users and reduce liability. This command scans scaffolded frontend code for WCAG 2.1 AA compliance: color contrast (from design tokens), focus management, ARIA labels, keyboard navigation, semantic HTML, screen reader support. Uses axe-core/pa11y/playwright-axe for automated scanning plus heuristic checks for manual review items.
Workflow
Quick Navigation
| Phase | Steps |
|---|---|
| Setup | Step 1 |
| Scanning | Step 2 · Step 3 |
| Completion | Step 4 · Step 5 · Step 6 |
Step 1: Read Context & Detect Frontends
ℹ️ CONTEXT LOADING: _state.json → SDL → scaffolded frontends
Read:
_state.json.components[]with type: web, mobile, desktop_state.json.designfor color palette (used for contrast checking)- Scaffolded frontend paths (
web-app/src/,app/src/, etc.)
Check for frontend technologies:
- React/Next.js: component files in
src/components/ - Vue: component files in
src/components/ - Angular: component files in
src/components/ - Svelte: component files in
src/components/ - Flutter/React Native: view files (accessibility different - report separately)
If no frontends found:
"I need scaffolded frontend code to audit. Run
/architect:scaffoldfirst, then come back here."
Step 2: Scan Frontend Code
✅ QUALITY GATE: Run accessibility scanning
For each frontend component, use axe-core patterns to check:
Automated Checks (via code scanning):
- Color Contrast — Check all text against design tokens primary/secondary colors
- Success Criterion 1.4.3 (AA): contrast ratio ≥ 4.5:1 for normal text, 3:1 for large text
- ARIA Labels — Missing alt text, aria-label, aria-labelledby
- Success Criterion 1.1.1: All images have alt text
- Success Criterion 4.1.2: All form inputs have labels
- Keyboard Navigation — Check for keyboard trap, focus visible, tabindex
- Success Criterion 2.1.1: All functionality available via keyboard
- Success Criterion 2.4.7: Focus visible
- Semantic HTML — Check for proper heading hierarchy, list structure
- Success Criterion 1.3.1: Semantic structure (no div-based button without proper ARIA)
- Form Accessibility — Label association, error messaging
- Success Criterion 3.3.1: Error identification
- Success Criterion 3.3.4: Error prevention
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.
- 12d ago First seen · 200 lines · 16 tokens per session scan A 8b07da0dadc4
accessibility-audit is a command published in the GitHub repository navraj007in/architecture-cowork-plugin (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 16 tokens to every session and 1,826 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 commands, from other repositories
healthcare-ux-specialist
Use when designing clinical or patient-facing interfaces. Clinical workflows, displaying sensitive patient data, HIPAA considerations in the UI, and medical terminology patients do not speak.
motion-designer
Use when animation feels wrong. Transitions too slow or too bouncy, motion with no purpose, blanket transitions on every property, no reduced-motion support, or animation that drops frames.
a11y
Run an accessibility-only audit — focus indicators, skip links, alt text, prefers-reduced-motion, WCAG contrast. Scoped variant of /ui-ux-suite:audit.
nyann:apply
Apply an Infrastructure-as-Code change — the highest-stakes mutator in nyann; it can change real cloud infrastructure. Re-runs the plan, shows it, confirms, then applies. Unmistakably opt-in: apply is never the default and destructive applies require a second explicit confirm. For IaC apply intent only (not "apply a…
rtl-ready
Audit CSS/components for RTL readiness and rewrite physical properties to logical equivalents.
nyann:undo
Safely undo the last commit (or last N commits) on a feature branch. Always previews first. Refuses main/master/develop, merge commits, and pushed commits (override with --allow-pushed).