claude-code-framework/essential/skills/quality/accessibility-checker/SKILL.md
Validates components for WCAG compliance including semantic HTML, ARIA labels, contrast ratios, and keyboard navigation. Use when user says "check accessibility", "a11y", "WCAG compliance", or mentions accessibility concerns.
npx skillsauth add tokenized2027/claude-initilization-v7 accessibility-checkerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
// ❌ Bad - non-semantic
<div onClick={handleClick}>Click me</div>
// ✅ Good - semantic
<button onClick={handleClick}>Click me</button>
// ❌ Bad - missing alt
<img src="logo.png" />
// ✅ Good - descriptive alt
<img src="logo.png" alt="Company logo" />
// ❌ Bad - no label
<button><SearchIcon /></button>
// ✅ Good - aria-label
<button aria-label="Search"><SearchIcon /></button>
// ✅ Good - keyboard accessible
<button onKeyDown={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
handleClick()
}
}}>
Submit
</button>
# Install axe-core
npm install --save-dev @axe-core/react
# Add to tests
import { axe, toHaveNoViolations } from 'jest-axe'
expect.extend(toHaveNoViolations)
test('should have no a11y violations', async () => {
const { container } = render(<App />)
const results = await axe(container)
expect(results).toHaveNoViolations()
})
development
Methodical debugging using reproducible steps, instrumentation, and root-cause analysis. Use when something is broken and you don't know why. Triggers on "bug", "broken", "not working", "error", "fails intermittently", "regression", "unexpected behavior".
development
Optimize prompts for Claude Code agents, API calls, and multi-agent orchestration. Use when writing system prompts, agent instructions, or refining LLM interactions. Triggers on "improve prompt", "write a prompt", "agent instructions", "system prompt", "prompt not working", "LLM output quality".
tools
Structured ideation and design review before any creative or constructive work. Use before building features, components, architecture, dashboards, or automation workflows. Triggers on "plan this", "design this", "brainstorm", "think through", "what should we build", "how should I approach".
testing
Generates test files for components and functions with setup, basic tests, and mocks. Use when user says "add tests", "create test", "test this component", or mentions testing.