Accessibility Review
A review skill that checks front-end code for accessibility barriers before they reach users.
What it covers
- Semantic HTML — correct heading hierarchy, landmark regions, lists for list content, buttons vs. links
- ARIA usage — ARIA only when native HTML is insufficient, correct roles, live regions for dynamic content
- Keyboard navigation — focus management, visible focus indicators, no keyboard traps, skip links
- Forms — associated labels, error messages linked to inputs, fieldset/legend for groups
- Color and contrast — WCAG AA contrast ratios, not relying on color alone to convey meaning
- Media — alt text for images, captions for video, reduced motion preferences
When to use
Run this on any PR that modifies UI components, page layouts, or interactive elements. Required before launching user-facing features.