claude-workspace: Agent for Claude Code

.claude/agents/accessibility-auditor.md

accessibility-auditor is an agent for Claude Code from Piyush8296/claude-workspace. It costs 53 tokens per session (1,024 once invoked), scanned A, original, MIT.

A frontend accessibility checker for WCAG 2.1 AA, the widely used standard for making websites usable by people with disabilities.

In plain words
What is it for?
Use it to review HTML structure, keyboard navigation, ARIA attributes, color contrast, image descriptions, form labels, and screen-reader behavior.
Why use it?
It helps find problems that can block keyboard users, screen-reader users, or people who cannot distinguish certain colors.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is Piyush8296/claude-workspace's own configuration. It tells Claude Code how to work on claude-workspace itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-workspace configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/Piyush8296/claude-workspace/main/.claude/agents/accessibility-auditor.md
Clone the repo
git clone --depth 1 https://github.com/Piyush8296/claude-workspace

Made for: Claude Code.

Wrote 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.

agentmods badge for accessibility-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/piyush8296/claude-workspace/accessibility-auditor.svg)](https://agentmods.dev/agents/piyush8296/claude-workspace/accessibility-auditor)
Your own site
<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>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,024 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash bb09c4e3aa13, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

.claude/agents/accessibility-auditor.md · 97 lines

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

  1. Identify the scope: specific component, page, or full codebase
  2. Run automated checks first, then manual review
  3. 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: none without 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-label or aria-labelledby on elements without visible text
  • aria-expanded, aria-selected, aria-checked reflect actual state
  • aria-live regions for dynamic content (toasts, loading states, search results)
  • aria-describedby for supplementary info (error messages, help text)
  • No redundant ARIA (e.g., role="button" on <button>)

Read the full file on GitHub · 97 lines

Changes

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.

  1. 8d ago First seen · 97 lines · 53 tokens per session scan A bb09c4e3aa13

Subscribe to this mod's changes

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.

Related

Other agents, from other repositories

motion-designer

Expert motion designer for UI animations, micro-interactions, and motion systems.

travisjneuman/.claude · 18 tokens

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…

HermeticOrmus/LibreUIUX-Claude-Code · 59 tokens

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.

travisjneuman/.claude · 44 tokens

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…

lukaskellerstein/claude-my-marketplace · 170 tokens

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…

lukaskellerstein/claude-my-marketplace · 158 tokens

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…

lukaskellerstein/claude-my-marketplace · 155 tokens