--- name: a11y description: Accessibility audit and patterns - WCAG 2.1 AA compliance for React apps. triggers: - a11y - accessibility - wcag - screen reader allowed-tools: Bash, Read, Grep, Glob model: opus user-invocable: true --- # Accessibility (WCAG 2.1 AA) ## Quick Audit ```bash # Automated checks (catches ~30% of issues) npx axe-core-cli http://localhost:3000 # Or in browser console # Install axe DevTools extension → run scan ``` **Automated tools catch 30%. Manual testing catches the rest.** ## Critical Checklist ### 1. Keyboard Navigation (Most Common Failure) ```tsx // ❌ Bad - click-only interaction