What problem does it solve? Accessibility work requires both finding real violations in a running page and citing exact WCAG criterion text, but AI models often recall criterion wording, levels, or technique details incorrectly. This Skill combines a live axe-core scanning harness driven through the chrome-devtools MCP with a bundled WCAG CLI that returns authoritative WCAG 2.2/2.1 text, so audits and citations are grounded in the actual spec rather than memory. ## Core Features & Use Cases - Live page scanning: Inject scripts/a11y-audit.js into any running web app to run axe-core, map tab order, check accessible names, and verify focus indicators with a real-keyboard walk that avoids false positives from programmatic focus probes. - Authoritative WCAG lookup: Query principles, guidelines, success criteria, techniques, failures, and glossary terms via npx @rawwee/wcag-cli, with a --normative mode for citation-ready requirement text and token-cost guidance per command. - Offline-capable dataset: The full WCAG 2.2 dataset ships bundled with the CLI, refreshes conditionally in the background, and works with zero network via WCAG_CLI_NO_NETWORK=1. - Use Case: While reviewing a checkout page, run the audit harness to find a missing focus indicator on the payment button, confirm it with the real-keyboard walk, then cite "2.4.7 Focus Visible (AA)" with exact normative text in the bug report. ## Quick Start Ask the AI to run an accessibility audit on the currently open page and look up the WCAG criteria for any violations it finds.