← ClaudeAtlas

accessibility-auditlisted

Audit UI code or a running page against WCAG 2.2 AA, covering semantics, keyboard access, focus management, labels, contrast, ARIA misuse, and motion, verifying in a real browser with axe-core when one is available and by code review when not. Produces findings ranked by user impact with concrete fixes. Use when building or reviewing UI components, before shipping user-facing pages, or when accessibility compliance is required.
KhaledSaeed18/dotclaude · ★ 4 · AI & Automation · score 77
Install: claude install-skill KhaledSaeed18/dotclaude
Audit for the users who hit the wall, not for the checklist: someone on a keyboard who cannot reach the button, a screen-reader user who hears "button button", a low-vision user who cannot read grey-on-white hints. Automated checks catch at most a third of real barriers; the rest come from reading the code and walking the flows. Prefer fixing semantics over adding ARIA; the first rule of ARIA is not to use it when native HTML already does the job. ## Step 1: Scope and method Identify what is being audited (components in a diff, a page, a whole flow) and pick the method: - **Running app available:** audit in the browser. Use the `webapp-testing` skill's Playwright setup and inject axe-core for the automated pass, then do the manual keyboard walk below. - **Code only:** review the markup and interaction logic directly. State that contrast and reading-order findings are provisional until seen rendered. For the automated pass with Playwright: ```js await page.goto(url); await page.addScriptTag({ url: "https://cdn.jsdelivr.net/npm/axe-core@4/axe.min.js" }); const results = await page.evaluate(() => axe.run()); // results.violations: id, impact, nodes[].html, nodes[].target ``` Treat axe output as a floor, not the audit. ## Step 2: The manual pass Work through these in order of user impact: **Keyboard** - Every interactive element reachable with Tab, operable with Enter/Space, in an order that follows the visual flow. No focus traps except intentional ones (modals) that al