ss-a11y Accessibility Audit
Statically audits a component or page against WCAG 2.2 AA and applies the fixes it safely can.
Design & UIIntermediate★ 962⑂ 89AI score 7/10Last updated: Sep 18, 2026
What it does
- Reads the target component/page file and checks it against WCAG 2.2 AA.
- Walks the four principles: Perceivable (color contrast, alt text, aria-labels), Operable (44x44 touch targets, keyboard/tab order,
focus-visiblerings,prefers-reduced-motion), Understandable (visible labels,aria-describedbyerror wiring,lang), Robust (semantic HTML, ARIA via Radix, customroles). - Includes a design-token contrast table (
--foreground,--muted-foreground,--brand,--destructive,--success,--warning) with minimum ratios to verify per skin. - Reports issues by severity (Critical/Major/Minor), auto-fixes what it can, and flags items needing human judgement.
Who it's for
- Teams on a StyleSeed project (
.styleseedregistry,data-slot, semantic tokens). - Frontend developers building UI with Tailwind CSS + Radix UI.
- Design-system owners doing a pre-release accessibility sweep.
Examples
- Point it at
Button.tsxto catch icon buttons missingaria-labeland undersized hit areas. - Audit a form page to verify visible labels and programmatically associated error messages.
- Scan an animation-heavy landing page and add the
prefers-reduced-motionCSS guard.
Note: this is a static code audit, not a screen-reader simulation. Use
/ss-reviewfor design-system compliance and/ss-auditfor Nielsen UX heuristics.
· · · 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/bitjaru/styleseed/HEAD/engine/.claude/skills/ss-a11y/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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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 engine/.claude/skills/ss-a11y folder from the GitHub repo bitjaru/styleseed into my ~/.claude/skills/ss-a11y/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/bitjaru/styleseed.git /tmp/styleseed && mkdir -p ~/.claude/skills && cp -r /tmp/styleseed/engine/.claude/skills/ss-a11y ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in your working directory.
- Clone the repo:
git clone https://github.com/bitjaru/styleseed.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r styleseed/engine/.claude/skills/ss-a11y ~/.claude/skills/ - Restart Claude Code and run it with a file path, e.g.
/ss-a11y src/components/Button.tsx. - If you are not on a StyleSeed project, ignore the
.styleseedregistry steps and use it as a pure WCAG checklist.
View source on GitHub ↗License: MIT