accessibility-compliance▌
aj-geddes/useful-ai-prompts · updated Apr 18, 2026
Implement comprehensive accessibility features following WCAG guidelines to ensure your application is usable by everyone, including people with disabilities.
Accessibility Compliance
Table of Contents
Overview
Implement comprehensive accessibility features following WCAG guidelines to ensure your application is usable by everyone, including people with disabilities.
When to Use
- Building public-facing web applications
- Ensuring WCAG 2.1/2.2 AA or AAA compliance
- Supporting screen readers (NVDA, JAWS, VoiceOver)
- Implementing keyboard-only navigation
- Meeting ADA, Section 508, or similar regulations
- Improving SEO and overall user experience
- Conducting accessibility audits
Quick Start
Minimal working example:
<!-- Bad: Non-semantic markup -->
<div class="button" onclick="submit()">Submit</div>
<!-- Good: Semantic HTML -->
<button type="submit" aria-label="Submit form">Submit</button>
<!-- Custom components with proper ARIA -->
<div
role="button"
tabindex="0"
aria-pressed="false"
onclick="toggle()"
onkeydown="handleKeyPress(event)"
>
Toggle Feature
</div>
<!-- Form with proper labels and error handling -->
<form>
<label for="email">Email Address</label>
<input
id="email"
type="email"
name="email"
aria-required="true"
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Semantic HTML with ARIA | Semantic HTML with ARIA |
| React Component with Accessibility | React Component with Accessibility |
| Keyboard Navigation Handler | Keyboard Navigation Handler |
| Color Contrast Validator | Color Contrast Validator |
| Screen Reader Announcements | Screen Reader Announcements |
| Focus Management | Focus Management |
Best Practices
✅ DO
- Use semantic HTML elements
- Provide text alternatives for images
- Ensure sufficient color contrast (4.5:1 minimum)
- Support keyboard navigation
- Implement focus management
- Test with screen readers
- Use ARIA attributes correctly
- Provide skip links
- Make forms accessible with labels
- Support text resizing up to 200%
❌ DON'T
- Rely solely on color to convey information
- Remove focus indicators
- Use only mouse/touch interactions
- Auto-play media without controls
- Create keyboard traps
- Use positive tabindex values
- Override user preferences
- Hide content only visually that should be hidden from screen readers
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.8★★★★★52 reviews- ★★★★★Omar Nasser· Dec 28, 2024
accessibility-compliance is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Henry Srinivasan· Dec 28, 2024
accessibility-compliance reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Henry Iyer· Dec 4, 2024
I recommend accessibility-compliance for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Liam Mehta· Nov 19, 2024
accessibility-compliance reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Hana Smith· Nov 19, 2024
accessibility-compliance is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Arya Patel· Nov 7, 2024
Keeps context tight: accessibility-compliance is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Emma Torres· Oct 26, 2024
accessibility-compliance is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Liam Huang· Oct 10, 2024
Registry listing for accessibility-compliance matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Mia Lopez· Oct 10, 2024
Keeps context tight: accessibility-compliance is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Michael Garcia· Sep 17, 2024
accessibility-compliance fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 52