a11y-crusade

a11y-crusade is a command for Claude Code from btachinardi/church. It costs 40 tokens per session (3,943 once invoked), scanned A, original, MIT.

A command that launches several accessibility reviewers to inspect a codebase. Accessibility means making software usable by people with disabilities and understandable to assistive technology.

In plain words
What is it for?
Auditing WCAG 2.2 Level AA compliance, semantic HTML, keyboard navigation, ARIA usage, focus behavior, color and contrast, and other perceivability issues.
Why use it?
It helps uncover barriers such as missing keyboard support, poor semantics, incorrect ARIA labels, and hard-to-perceive content.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the church plugin — 1 skill, 14 commands, 14 agents shipped together

Good fit Auditing WCAG 2.2 Level AA compliance, semantic HTML, keyboard navigation, ARIA usage, focus behavior, color and contrast, and other perceivability issues.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/btachinardi/church/a11y-crusade
Install

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.

Clone the repo
git clone --depth 1 https://github.com/btachinardi/church

Made for: Claude Code.

Or install church, the plugin that ships this one along with the rest of its 1 skill, 14 commands, 14 agents.

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 a11y-crusade

README.md
[![agentmods](https://agentmods.dev/badge/commands/btachinardi/church/a11y-crusade/github.svg)](https://agentmods.dev/commands/btachinardi/church/a11y-crusade)
Your own site
<a href="https://agentmods.dev/commands/btachinardi/church/a11y-crusade"><img src="https://agentmods.dev/badge/commands/btachinardi/church/a11y-crusade/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.

agentmods 80×15 button for a11y-crusade

Your own site · 80×15
<a href="https://agentmods.dev/commands/btachinardi/church/a11y-crusade"><img src="https://agentmods.dev/badge/commands/btachinardi/church/a11y-crusade.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,943 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.00040 $0.03943
Opus 5 $0.00020 $0.01972
Sonnet 5 $0.00008 $0.00789
Haiku 4.5 $0.00004 $0.00394

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

Security

Grade A, and why

a11y-crusade 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 11d 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.

commands/a11y-crusade.md · 456 lines

How it starts

The opening of the file, as written. The whole thing — 456 lines — stays where its author put it; the contents beside it link to each section on GitHub.

A11y Crusade: The March for Universal Readability

You are the A11y Crusade Orchestrator, commanding squads of accessibility specialists to purge the web of barriers that exclude the blind, the motor-impaired, the photosensitive, the colorblind—and the AI agents who parse your code as "non-visual users."

THE MISSION

"The web is for everyone. Code that abandons the blind, traps the keyboard user, or speaks only to the sighted is code that has failed its covenant. We march for Universal Readability—a world where humans AND machines can perceive, operate, understand, and trust the digital realm."

The Crusade will:

  1. Scan the codebase for WCAG 2.2 Level AA violations
  2. Organize findings into specialist squads (Semantic, Focus, ARIA, Perceivability)
  3. Deploy specialist purist agents in parallel
  4. Aggregate findings into a unified victory report
  5. (Optional) Auto-remediate simple violations with --write

PHASE 1: RECONNAISSANCE

Step 1: Parse Arguments

Extract and validate arguments from the user's invocation:

/a11y-crusade [path] [flags]

Arguments:

  • path (optional) - Target directory (default: current working directory)
  • --write - Enable auto-remediation for fixable violations
  • --scope all|api|web - Limit scan to specific workspace

Step 2: Scan the Codebase

Use Glob and Grep to establish baseline accessibility metrics.

# Count HTML/JSX/TSX files
find <path> -type f \( -name "*.html" -o -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" \) | wc -l

# Count images
find <path> -type f \( -name "*.tsx" -o -name "*.jsx" -o -name "*.html" \) -exec grep -l '<img' {} \; | wc -l

# Find potential violations
grep -r '<img' --include="*.tsx" --include="*.jsx" --include="*.html" | grep -vc 'alt='  # Missing alt text
grep -r 'outline: none' --include="*.css" --include="*.scss" | wc -l  # Focus removed
grep -r 'onClick.*<div' --include="*.tsx" --include="*.jsx" | wc -l  # Div buttons
grep -r 'role=' --include="*.tsx" --include="*.jsx" | wc -l  # ARIA usage (for review)

Read the full file on GitHub · 456 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. 11d ago First seen · 456 lines · 0 tokens per session scan A d9964e578fbf

Subscribe to this mod's changes

a11y-crusade is a command published in the GitHub repository btachinardi/church (58 stars, last pushed 5mo ago), licensed MIT. It adds 40 tokens to every session and 3,943 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-08-30.