Run comprehensive accessibility audit against WCAG 2.2 guidelines with actionable fix recommendations
Performs comprehensive WCAG 2.2 accessibility audits with actionable fix recommendations
/plugin marketplace add standardbeagle/standardbeagle-tools/plugin install ux-developer@standardbeagle-toolsPerform a thorough accessibility audit using agnt's browser tools and WCAG 2.2 guidelines.
If reviewing a live page:
1. Use mcp__agnt__proxy to start proxy for the target URL
2. Navigate to the page through the proxy
3. Use mcp__agnt__proxy exec with __devtool.auditAccessibility()
If reviewing code:
Run comprehensive accessibility checks:
// Via agnt proxy exec
__devtool.auditAccessibility()
This checks:
Note which AAA criteria are met as bonus.
Guide user through manual checks:
Test: Tab through entire page
- Can reach all interactive elements?
- Focus order logical?
- No keyboard traps?
- Skip link works?
Recommended: Test with NVDA (Windows) or VoiceOver (Mac)
- Page title announced?
- Headings navigable?
- Form fields properly labeled?
- Dynamic content announced?
- Zoom to 200%: Content still usable?
- High contrast mode: Content visible?
- Reduce motion: Animations respect preference?
## Accessibility Audit Report
**Target**: [URL or component]
**Date**: [date]
**WCAG Target Level**: AA
### Compliance Summary
| Level | Criteria | Pass | Fail | N/A |
|-------|----------|------|------|-----|
| A | 30 | X | X | X |
| AA | 20 | X | X | X |
| AAA | 28 | X | X | X |
### Critical Violations (Level A)
1. **[Criterion]**: [Issue]
- Location: [element/selector]
- Impact: [who is affected]
- Fix: [specific recommendation]
```html
<!-- Before -->
<img src="photo.jpg">
<!-- After -->
<img src="photo.jpg" alt="Description of image content">
[Similar format]
[Similar format]
### 6. Fix Assistance
For each violation, offer to:
1. Generate the fix code
2. Explain the accessibility requirement
3. Provide testing verification steps
## Continuous Monitoring
Suggest setting up:
- Pre-commit accessibility linting
- CI/CD accessibility testing
- Regular manual audits schedule