a11y-audit

a11y-audit is a skill for Claude Code, Codex from JansenAnalytics/claudex. It costs 31 tokens per session (884 once invoked), scanned A, original, MIT.

A toolkit for checking whether websites work well for people with disabilities, including users who rely on keyboards or screen readers. It checks parts of WCAG, the international accessibility guidelines for websites.

In plain words
What is it for?
Use it to check color combinations, scan HTML files, review ARIA labels and landmarks, and assess keyboard navigation and screen-reader support.
Why use it?
It helps find barriers such as poor color contrast, missing labels, incorrect page structure, and controls that cannot be reached by keyboard.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is python3 scripts/contrast-checker.py --fg "#333333" --bg "#ffffff".

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

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-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/jansenanalytics/claudex/a11y-audit.svg)](https://agentmods.dev/skills/jansenanalytics/claudex/a11y-audit)
Your own site
<a href="https://agentmods.dev/skills/jansenanalytics/claudex/a11y-audit"><img src="https://agentmods.dev/badge/skills/jansenanalytics/claudex/a11y-audit.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 884 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00031 $0.00884
Opus 5 $0.00015 $0.00442
Sonnet 5 $0.00006 $0.00177
Haiku 4.5 $0.00003 $0.00088

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

Security

Grade A, and why

a11y-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 5d 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.

skills/a11y-audit/SKILL.md · 117 lines

How it starts

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

a11y-audit

Accessibility auditing: WCAG compliance checking, contrast ratios, ARIA labels, keyboard navigation, semantic HTML, screen reader compatibility.

Use When

  • Auditing web pages for accessibility compliance
  • Checking color contrast ratios against WCAG standards
  • Verifying ARIA attributes and landmark usage
  • Ensuring keyboard navigability
  • Meeting WCAG 2.1 AA standards
  • Reviewing HTML for semantic correctness and screen reader compatibility

Scripts

contrast-checker.py

Calculates WCAG contrast ratios between foreground and background colors. Pure Python, no dependencies.

Single pair:

python3 scripts/contrast-checker.py --fg "#333333" --bg "#ffffff"

Batch mode (reads JSON file with array of {"fg": "#hex", "bg": "#hex", "label": "optional"} objects):

python3 scripts/contrast-checker.py --batch colors.json

Output includes:

  • Contrast ratio (e.g., 12.63:1)
  • Pass/fail for AA normal text (≥4.5:1), AA large text (≥3:1)
  • Pass/fail for AAA normal text (≥7:1), AAA large text (≥4.5:1)

html-a11y-scan.py

Scans an HTML file for common accessibility issues. Uses Python's built-in html.parser.

python3 scripts/html-a11y-scan.py page.html
python3 scripts/html-a11y-scan.py page.html --format json
python3 scripts/html-a11y-scan.py page.html --format text

Checks for:

  • Images without alt attributes (critical)
  • Form inputs without labels or aria-label (critical)
  • Missing lang attribute on <html> (critical)
  • Empty links or buttons (warning)
  • Skipped heading levels (warning)
  • Tables without <th> headers (warning)
  • Missing ARIA landmarks: main, nav, banner, contentinfo (info)

Output (JSON by default): array of issues with severity, element, line, issue, and suggestion fields.

keyboard-nav-checklist.sh

Generates a Markdown checklist for manual keyboard navigation testing.

bash scripts/keyboard-nav-checklist.sh
bash scripts/keyboard-nav-checklist.sh --output checklist.md

Read the full file on GitHub · 117 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. 5d ago First seen · 117 lines · 31 tokens per session scan A be2960589249

Subscribe to this mod's changes

a11y-audit is a skill published in the GitHub repository JansenAnalytics/claudex (5 stars, last pushed 2mo ago), licensed MIT. It adds 31 tokens to every session and 884 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-31.

Related

Other skills, from other repositories

Accessibility A11y Enhanced

Comprehensive WCAG compliance and accessibility testing covering ARIA, keyboard navigation, screen readers, color contrast, and automated a11y validation.

PramodDutta/qaskills · 34 tokens

accessibility

Use when making a web UI conform to WCAG 2.2 Level AA — axe-core or Lighthouse a11y violations, keyboard operability, focus management, ARIA roles/names/live regions, contrast, tap-target size. NOT palette or visual intent (that is design), NOT test-runner setup (that is testing-web), NOT LCP/page-speed (that is…

ericrisco/rsc-harness · 86 tokens

accessibility-expert

Build interfaces usable by everyone: WCAG 2.2 conformance, semantic HTML, ARIA, keyboard navigation, screen readers and accessible forms. Use when the user mentions accessibility, a11y, WCAG, ARIA, screen readers, keyboard navigation, colour contrast, focus management, the European Accessibility Act or Section 508, or…

personamanagmentlayer/pcl · 98 tokens

accessibility-engineer

You are the Accessibility Engineering Specialist. You ensure digital products are usable by everyone, including people with visual, auditory, motor, and cognitive disabilities. You audit against WCAG 2.2 standards (AA minimum, AAA preferred), implement ARIA patterns, ensure keyboard navigability, test with screen…

buiphucminhtam/forgewright · 61 tokens

accessibility-commerce

Make your store usable by everyone with WCAG 2.1 AA compliance — screen reader support, keyboard navigation, and accessible cart and checkout flows.

finsilabs/awesome-ecommerce-skills · 33 tokens

accessibility-automation-expert

Implement WCAG 2.2 AA/AAA compliance with automated testing, keyboard navigation, screen reader support, and focus management. Activate on: accessibility audit, WCAG compliance, keyboard navigation, screen reader, aria attributes, axe-core, focus trap. NOT for: design-level accessibility review (use…

curiositech/windags-skills · 85 tokens