Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

Accessibility Audit (a11y-audit)

Audits UI or designs against WCAG 2.2 AA/AAA and ARIA patterns, returning criterion-referenced findings with severity and concrete fixes.

Design & UIIntermediate★ 1,458⑂ 151AI score 7/10Last updated: Sep 16, 2026

What it does

  • Reviews a UI against WCAG 2.2, including the newer criteria: Focus Not Obscured (2.4.11), Target Size (2.5.8), Accessible Authentication (3.3.8).
  • Checks a mandatory P0 set per component: keyboard navigability, visible focus (≥3:1), screen-reader name/role/state, contrast (4.5:1 text / 3:1 UI), ≥24×24 targets, and no color-only signaling.
  • Measures contrast with real scripts instead of eyeballing (measure_render.mjs, verify_states.mjs, contrast.py), covering default/hover/focus states so hover-only failures get caught.
  • Outputs a findings table: WCAG criterion · severity (P0/P1/P2) · what fails · specific fix, plus explicit confirmation of passes.

Who it's for

  • Front-end engineers, UI/UX designers, design-system owners.
  • Teams under accessibility compliance requirements (public sector, finance, enterprise procurement).
  • Anyone adding an accessibility gate to pre-release QA.

Examples

  1. "Audit this modal component" → findings on focus trap, close-button accessible name, ESC handling, each mapped to a WCAG criterion.
  2. "Does the button pass contrast in dark mode?" → runs verify_states.mjs --dark and flags only the failing state.
  3. "Is #767676 on white AA-compliant?" → contrast.py gives the measured ratio and suggested alternatives.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/plugin87/ux-ui-agent-skills/HEAD/.claude/skills/a11y-audit/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .claude/skills/a11y-audit folder from the GitHub repo plugin87/ux-ui-agent-skills into my ~/.claude/skills/plugin87-a11y-audit/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/plugin87/ux-ui-agent-skills.git && mkdir -p ~/.claude/skills && cp -r ux-ui-agent-skills/.claude/skills/* ~/.claude/skills/

⚠ This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/plugin87/ux-ui-agent-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skills in: cp -r ux-ui-agent-skills/.claude/skills/* ~/.claude/skills/
  5. This skill reads reference docs in accessibility/ and taste/ and runs scripts in scripts/, so keep the repo contents available in your project or copy those folders too.
  6. Make sure Node.js and Python 3 are installed for the measurement scripts (node -v, python3 -V).
  7. Restart Claude Code and ask something like "run an accessibility audit on this page" to trigger the skill.