Provides WCAG 2.1/2.2 AA compliance expertise specializing in accessibility audits, automated testing, screen reader validation, and remediation guidance. Ensures digital products are usable by everyone, including people with disabilities, through systematic testing methodologies and inclusive design verification.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionaccessibility-testerExecute the skills CLI command in your project's root directory to begin installation:
Fetches accessibility-tester from 404kidwiz/claude-supercode-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate accessibility-tester. Access via /accessibility-tester in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
75
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
75
stars
Provides WCAG 2.1/2.2 AA compliance expertise specializing in accessibility audits, automated testing, screen reader validation, and remediation guidance. Ensures digital products are usable by everyone, including people with disabilities, through systematic testing methodologies and inclusive design verification.
What needs testing?
│
├─ New Component / Feature?
│ │
│ ├─ Development Phase? → **Linting + Unit Tests (jest-axe)**
│ │
│ └─ Review Phase? → **Manual Keyboard + Screen Reader Check**
│
├─ Full Website / App?
│ │
│ ├─ Quick Health Check? → **Automated Scan (Lighthouse/Axe)**
│ │ (Catches ~30-50% of issues)
│ │
│ └─ Compliance Audit? → **Full Manual Audit (WCAG Checklist)**
│ (Required for legal compliance)
│
└─ Specific Interaction?
│
├─ Dynamic Content? → **ARIA Live Regions Check**
└─ Navigation? → **Keyboard Trap & Focus Order Check**
| OS / Browser | Primary Screen Reader | Secondary Choice |
|---|---|---|
| Windows | NVDA (Free, Open Source) | JAWS (Commercial, Enterprise standard) |
| macOS | VoiceOver (Built-in) | - |
| iOS | VoiceOver (Built-in) | - |
| Android | TalkBack (Built-in) | - |
| Linux | Orca | - |
Recommendation: Test with at least NVDA + Firefox/Chrome (Windows) and VoiceOver + Safari (macOS/iOS) to cover majority of user combinations.
| Impact | High Effort | Low Effort |
|---|---|---|
| Critical (Blocker) | P1: Plan & Fix ASAP(e.g., Keyboard trap, Missing form labels) | P0: Fix Immediately(e.g., Missing alt text, Bad contrast) |
| Major (Difficult) | P2: Roadmap(e.g., Complex ARIA widgets) | P1: Quick Win(e.g., Heading hierarchy) |
| Minor (Annoyance) | P3: Backlog | P2: Batch Fix |
Red Flags → Escalate to frontend-developer:
<div> and <span> instead of semantic HTML (requires rewrite)div button) without ARIAGoal: Ensure all functionality is operable without a mouse.
Steps:
Preparation
Navigation Test
onClick, customized spans.Interaction Test
Trap Test
Deliverable: List of focus management bugs (e.g., "Focus lost after closing modal", "Skip link missing").
Goal: Ensure iOS/Android apps (or mobile web) are usable by everyone.
Steps:
Touch Target Size Audit
Gesture Alternatives
Orientation Test
Zoom/Text Scaling
What it looks like:
<div role="button" onClick={submit} aria-label="Submit">Submit</div>
Why it fails:
Correct approach:
<button onClick={submit}>Submit</button>
Use native HTML elements whenever possible.
What it looks like:
Why it fails:
Correct approach:
What it looks like:
<input type="text" placeholder="Search...">
<!-- No <label> element -->
Why it fails:
Correct approach:
<label for="search">Search</label>
<input type="text" id="search" placeholder="Enter keywords...">
<!-- Or visually hidden label if design requires -->
Perceivable:
alt text.h1-h6) follow a logical hierarchy.Operable:
Understandable:
lang attribute (e.g., lang="en").Robust:
aria-live.Scenario: A mid-sized e-commerce platform needs WCAG 2.2 AA compliance before launching in the EU market.
Audit Approach:
Key Findings:
Remediation:
Scenario: A design system team needs to ensure their component library meets accessibility standards before internal release.
Testing Strategy:
Component-Specific Issues Found:
Fixes Implemented:
Scenario: A SaaS company wants to prevent accessibility bugs from reaching production.
CI/CD Integration:
# GitHub Actions workflow
- name: Run Accessibility Tests
run: |
npm test -- --testPathPattern="a11y"
npx cypress run --spec "cypress/e2e/a11y.cy.js"
Test Coverage:
Process:
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
404kidwiz/claude-supercode-skills
404kidwiz/claude-supercode-skills
404kidwiz/claude-supercode-skills
404kidwiz/claude-supercode-skills
404kidwiz/claude-supercode-skills
404kidwiz/claude-supercode-skills
I recommend accessibility-tester for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added accessibility-tester from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in accessibility-tester — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
accessibility-tester fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
accessibility-tester fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Solid pick for teams standardizing on skills: accessibility-tester is focused, and the summary matches what you get after install.
accessibility-tester has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: accessibility-tester is focused, and the summary matches what you get after install.
accessibility-tester has been reliable in day-to-day use. Documentation quality is above average for community skills.
accessibility-tester reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 34