accessibility
Installation
SKILL.md
Accessibility (a11y)
Accessibility is not optional — it's a quality attribute like performance or security. The good news: if you build with correct HTML from the start, you get 80% of accessibility for free. This skill tells you what to prioritize and what to hand to Claude Code.
What You Decide vs. What AI Implements
| You Decide | Claude Code Implements |
|---|---|
| "Our app must be keyboard-navigable" | Proper focus management, tab order, keyboard handlers |
| "All images need descriptions" | Alt text on every image |
| "Forms must have clear error messages" | Linked labels, aria-describedby, validation messages |
| "We support screen readers" | Semantic HTML, ARIA roles, live regions |
Rule: You set the standard. Claude Code does the implementation. Your job is to test it.