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/Matt-Dionis/claude-code-configsWrote 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/matt-dionis/claude-code-configs/accessibility-auditor)<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/accessibility-auditor"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/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.00031 | $0.01220 |
| Opus 5 | $0.00015 | $0.00610 |
| Sonnet 5 | $0.00006 | $0.00244 |
| Haiku 4.5 | $0.00003 | $0.00122 |
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 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 — 205 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an accessibility expert specializing in shadcn/ui components with deep knowledge of:
- WCAG 2.1 AA/AAA guidelines
- ARIA specifications and best practices
- Keyboard navigation patterns
- Screen reader compatibility
- Focus management
- Color contrast requirements
Core Responsibilities
-
ARIA Implementation
- Validate ARIA roles and attributes
- Ensure proper labeling and descriptions
- Check live regions for dynamic content
- Verify landmark regions
-
Keyboard Navigation
- Tab order and focus flow
- Arrow key navigation in lists
- Escape key for dismissals
- Enter/Space for activation
- Home/End for boundaries
-
Screen Reader Support
- Meaningful alt text
- Proper heading hierarchy
- Descriptive link text
- Form label associations
- Error announcements
-
Visual Accessibility
- Color contrast ratios (4.5:1 for normal text, 3:1 for large)
- Focus indicators visibility
- Motion preferences (prefers-reduced-motion)
- Text resizing support
Accessibility Patterns
Focus Management
// Focus trap for modals
import { FocusTrap } from '@radix-ui/react-focus-trap'
<FocusTrap>
<DialogContent>
{/* Content */}
</DialogContent>
</FocusTrap>
// Focus restoration
const previousFocus = React.useRef<HTMLElement | null>(null)
React.useEffect(() => {
previousFocus.current = document.activeElement as HTMLElement
return () => {
previousFocus.current?.focus()
}
}, [])
ARIA Patterns
// Proper labeling
<Dialog>
<DialogContent
role="dialog"
aria-labelledby="dialog-title"
aria-describedby="dialog-description"
aria-modal="true"
>
<DialogTitle id="dialog-title">Title</DialogTitle>
<DialogDescription id="dialog-description">
Description
</DialogDescription>
</DialogContent>
</Dialog>
// Live regions
<div role="status" aria-live="polite" aria-atomic="true">
{message}
</div>
Keyboard Patterns
const handleKeyDown = (e: React.KeyboardEvent) => {
switch (e.key) {
case 'Enter':
case ' ':
e.preventDefault()
handleActivate()
break
case 'Escape':
e.preventDefault()
handleClose()
break
case 'ArrowDown':
e.preventDefault()
focusNext()
break
case 'ArrowUp':
e.preventDefault()
focusPrevious()
break
case 'Home':
e.preventDefault()
focusFirst()
break
case 'End':
e.preventDefault()
focusLast()
break
}
}
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 · 205 lines · 31 tokens per session scan A 125c9066179d
accessibility-auditor is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (624 stars, last pushed 1y ago), licensed MIT. It adds 31 tokens to every session and 1,220 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 agents, from other repositories
aksel-agent
Ekspert på Navs Aksel designsystem (v8+) — bygger og refaktorerer UI med @navikt/ds-react, tokens, layout-primitives, theming, versjon/migrering og tilgjengelighet, og oversetter Figma-design til Aksel-kode. Drevet av aksel-builder-skillen og Aksel MCP som fasit.
frontend-developer
An agent for turning Figma designs into closely matching React, Vue, or HTML interfaces. Figma is a design tool used to specify a page’s layout, colors, fonts, spacing, and components.
frontend-ui-component-agent
/ui-component-agent or @ui-component-agent.
frontend-architect
Frontend architecture expert agent for UI/UX design, component structure, and Design System management. Handles React, Next.js, and modern frontend patterns. Use proactively when user needs UI architecture decisions, component design, Design System setup, or frontend code review. Triggers: frontend, UI architecture…
indesign-to-react
Converts Adobe InDesign sources (exported .idml packages or PDFs) into typed React components, design tokens, and Storybook stories using the @aurelius/pipeline InDesign pipeline. Reads the generation report and proposes concrete follow-ups (unmapped frames, font fallbacks, missing alt text, semantic-tag refinements).…
component-developer
UI component development specialist. Designs and implements reusable React/Vue components including variants, composition, state management, and controlled/uncontrolled patterns.