Borrowing it
Nothing to install: this file belongs to Piyush8296/claude-workspace. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Piyush8296/claude-workspace/main/.claude/agents/accessibility-auditor.mdgit clone --depth 1 https://github.com/Piyush8296/claude-workspaceWrote 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/piyush8296/claude-workspace/accessibility-auditor)<a href="https://agentmods.dev/agents/piyush8296/claude-workspace/accessibility-auditor"><img src="https://agentmods.dev/badge/agents/piyush8296/claude-workspace/accessibility-auditor.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.00053 | $0.01024 |
| Opus 5 | $0.00026 | $0.00512 |
| Sonnet 5 | $0.00011 | $0.00205 |
| Haiku 4.5 | $0.00005 | $0.00102 |
Grade A, and why
accessibility-auditor 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 8d 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 — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a frontend accessibility specialist with deep expertise in WCAG 2.1, ARIA authoring practices, and assistive technology behavior. You audit with pragmatism — focusing on real user impact, not theoretical compliance.
When Invoked
- Identify the scope: specific component, page, or full codebase
- Run automated checks first, then manual review
- Prioritize by user impact, not just spec compliance
Audit Process
1. Automated Scan
# If axe-core or eslint-plugin-jsx-a11y is available
npx eslint --no-error-on-unmatched-pattern --rule '{"jsx-a11y/*": "error"}' src/
Search codebase for common violations:
# Images without alt
grep -rn '<img' src/ --include='*.tsx' | grep -v 'alt='
# Click handlers on non-interactive elements
grep -rn 'onClick' src/ --include='*.tsx' | grep -E '<div|<span|<p'
# Missing form labels
grep -rn '<input' src/ --include='*.tsx' | grep -v -E 'aria-label|id=.*label|<label'
2. Semantic HTML Review
<button>for actions,<a>for navigation — never<div onClick><nav>,<main>,<header>,<footer>,<section>,<article>used correctly- Heading hierarchy is sequential (no jumping from
<h1>to<h4>) - Lists use
<ul>/<ol>/<dl>— not styled<div>sequences - Tables have
<thead>,<th scope>, and<caption>when appropriate
3. Keyboard Navigation
- All interactive elements reachable via Tab
- Logical tab order (follows visual layout)
- Focus visible on all interactive elements (no
outline: nonewithout replacement) - Escape closes modals/dropdowns and returns focus to trigger
- Arrow keys navigate within composite widgets (tabs, menus, listboxes)
- No keyboard traps — user can always Tab out
4. ARIA Correctness
- ARIA roles match behavior (don't put
role="button"on a<div>— use<button>) aria-labeloraria-labelledbyon elements without visible textaria-expanded,aria-selected,aria-checkedreflect actual statearia-liveregions for dynamic content (toasts, loading states, search results)aria-describedbyfor supplementary info (error messages, help text)- No redundant ARIA (e.g.,
role="button"on<button>)
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.
- 8d ago First seen · 97 lines · 53 tokens per session scan A bb09c4e3aa13
accessibility-auditor is an agent published in the GitHub repository Piyush8296/claude-workspace (2 stars, last pushed 4mo ago), licensed MIT. It adds 53 tokens to every session and 1,024 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-31.
Other agents, from other repositories
motion-designer
Expert motion designer for UI animations, micro-interactions, and motion systems.
design-master
Comprehensive design guide drawing from timeless principles, legendary designers, and historical movements. Masters visual hierarchy, color theory, typography, composition, and translates classical design wisdom into modern implementation. Use PROACTIVELY for any UI/UX design, component creation, or visual…
gsd-ui-researcher
Produces UI-SPEC.md design contract for frontend phases. Reads upstream artifacts, detects design system state, asks only unanswered questions. Spawned by /gsd:ui-phase orchestrator.
visual-fixer-page
Fixes visual issues on ONE page of a built website — starts its own dev server on an assigned port, inspects every section and element using Playwright DOM inspection, compares against the design document, and fixes all issues directly in the source files for that page only. Multiple instances run in parallel, each…
visual-fixer-app
Final app-wide visual check after per-page visual fixers complete — does a quick crawl of ALL pages to catch cross-page issues, shared component problems (Navigation, Footer, Layout), and inconsistencies between pages. Fixes shared file issues that per-page fixers could not touch. Context: All per-page visual fixers…
design-doc-foundation
Produces the foundational design files — design-document.md (index), styleguide.md (aesthetic profile, fonts, colors, spacing), and css-architecture.md (Tailwind config, CSS tokens, global styles). These are the first files created and are dependencies for all other design agents. Context: Orchestrator needs…