cosmicstack-labs/accessibility-testing
WCAG 2.1/2.2 audit, axe, Lighthouse, manual testing, screen reader testing, and remediation
npx skills add https://github.com/cosmicstack-labs/mercury-agent-skills --skill accessibility-testing
Systematically test and improve web accessibility.
| Level | Conformance | Target |
|-------|-------------|--------|
| A | Minimum | Must pass all A criteria |
| AA | Standard | Legal standard (ADA, Section 508) |
| AAA | Advanced | Highest level, not always achievable |
// axe-core in CI
const { axe } = require('jest-axe');
it('should have no accessibility violations', async () => {
render(<MyComponent />);
const results = await axe(document.body);
expect(results).toHaveNoViolations();
});
alt text to all images (decorative = alt="")aria-label to icon-only buttons<label> elementsskip-to-content linkTake cosmicstack-labs/accessibility-testing from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.