Help us improve
Share bugs, ideas, or general feedback.
Performs formal WCAG 2.2 A/AA conformance audits, assigning Pass/Fail/NT/NA per success criterion with evidence. Uses Playwright for automated checks.
npx claudepluginhub masup9/a11y-specialist-skills --plugin a11y-specialist-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/a11y-specialist-skills:auditing-wcag URL or file path to auditURL or file path to auditThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
[日本語版 (Japanese)](./SKILL.ja.md)
README.ja.mdREADME.mdSKILL.ja.mdagents/openai.yamlreferences/automated-checks.ja.mdreferences/automated-checks.mdreferences/content-checks.ja.mdreferences/content-checks.mdreferences/coverage-matrix.ja.mdreferences/coverage-matrix.mdreferences/interactive-checks.ja.mdreferences/interactive-checks.mdreferences/manual-checks.ja.mdreferences/manual-checks.mdreferences/output-format.ja.mdreferences/output-format.mdreferences/scripts/IMPLEMENTATION-PLAN.mdreferences/scripts/NPM-PACKAGE-NOTE.mdreferences/scripts/README.mdreferences/scripts/TODO-COVERAGE.mdConducts interactive WCAG accessibility audits on entire solutions, directories, or live URLs, checking compliance levels A/AA/AAA with optional Playwright visual scans.
Guides WCAG 2.2 accessibility audits with automated scans, manual checks, and remediation strategies for ADA/Section 508 compliance.
Systematically tests products against WCAG 2.1 AA using automated scans, keyboard testing, screen readers, and color contrast checks to find and prioritize accessibility barriers.
Share bugs, ideas, or general feedback.
You perform WCAG 2.2 AA conformance audits. Report Pass/Fail/NT/NA per success criterion with evidence.
| Perspective | reviewing-a11y | auditing-wcag |
|---|---|---|
| Goal | Find issues and propose fixes | Systematic conformance verification |
| Output | Severity-based issues list | Pass/Fail/NT/NA per success criterion |
| Scope | Practical issues focus | Full WCAG 2.2 A/AA coverage |
Confirm and get agreement on:
references/automated-checks.md.references/scripts/.references/coverage-matrix.md to ensure A/AA coverage.references/interactive-checks.md.references/manual-checks.md and references/content-checks.md.references/output-format.md.references/automated-checks.mdreferences/interactive-checks.mdreferences/manual-checks.mdreferences/content-checks.mdreferences/output-format.mdreferences/coverage-matrix.mdThe references/scripts/ directory contains Playwright-based test scripts for detailed automated checks. These scripts generate JSON results and annotated screenshots.
The check logic now lives in the npm package
@a11y-skills/audit; each script here is a thin wrapper.npm install(below) pulls the package and its optionalpixelmatch/pngjsdeps automatically. To consume the checks directly in your own project, see the package README.
| Script | Criterion | Description |
|---|---|---|
axe-audit.ts | Multiple | axe-core comprehensive check |
reflow-check.ts | 1.4.10 | Horizontal scroll at 320px |
text-spacing-check.ts | 1.4.12 | Text spacing override clipping |
zoom-200-check.ts | 1.4.4 | 200% zoom content loss |
orientation-check.ts | 1.3.4 | Orientation lock detection |
autocomplete-audit.ts | 1.3.5 | Missing/invalid autocomplete |
time-limit-detector.ts | 2.2.1 | Timer/meta refresh detection |
auto-play-detection.ts | 1.4.2, 2.2.2 | Auto-play content detection |
focus-indicator-check.ts | 2.4.7 | Focus indicator visibility |
target-size-check.ts | 2.5.5, 2.5.8 | Target size measurement |
Usage:
cd references/scripts
npm install
TEST_PAGE="https://example.com" npx playwright test <script-name>.ts
See references/scripts/README.md for detailed documentation.