What problem does it solve? A green Lighthouse accessibility score is not proof of WCAG compliance: it runs only a subset of axe rules as a weighted average, and even a full axe pass detects only about half of real accessibility issues. This Skill establishes a three-layer accessibility discipline so Astro sites can credibly claim WCAG 2.2 AA conformance. ## Core Features & Use Cases - Zero-violations axe CI gate: A Playwright-based scan of every built page using @axe-core/playwright with WCAG 2.2 tags and the target-size rule explicitly enabled, failing the build on any violation. - Codified manual smoke checklist: A per-release keyboard, screen reader (NVDA/VoiceOver), 400% reflow, and form-semantics pass covering the six WCAG 2.2 A/AA criteria that automation cannot detect. - WCAG-EM 2.0 audit structure: A five-step sample-based evaluation methodology reserved for public conformance statements, plus Astro-specific guidance for ClientRouter announcements and island hydration windows. - Use Case: A client requires a WCAG 2.2 AA conformance statement for their marketing site. Use this Skill to wire the axe job into CI, run the manual smoke before each release, and structure the formal audit that the public statement quotes. ## Quick Start Set up a zero-violations axe accessibility scan in CI for my Astro site and give me the manual WCAG 2.2 checklist for each release.