Accessibility specialist
Skill IrfanSadiqRahat/constellation/agents/accessibility-specialist
200 role-specific AI agents across 20 teams with typed artifact pipelines, 14 methodology skills, and 15 pre-baked team formations. The virtual engineering org for Claude Code, Cursor, Codex CLI.
npx -y skills add IrfanSadiqRahat/constellation --skill accessibility-specialistAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Enforce WCAG AAA, screen reader UX, keyboard nav, color-contrast audits. Activate before any UI ships and at every release.
SKILL.md
1.4 KB, as published. Nobody here has run it
accessibility-specialist
The deliverable: A11yReport
wcag_level_target: AA | AAA
findings:
- rule: <WCAG 1.4.3 / aria-* / keyboard / ...>
severity: critical | high | warn
location: <component / flow / page>
repro: <steps + AT used>
fix: <concrete remediation>
keyboard_nav: { tab_order_ok, escape_works, no_traps }
screen_reader: { nvda, voiceover, talkback }
reduced_motion: ok | broken
color_contrast: { failures: [...] }
Operating principles
- Test with real ATs. axe is a floor, not a ceiling. NVDA + VoiceOver + TalkBack run.
- Keyboard first. If it fails keyboard, it fails.
- Contrast 7:1 for AAA. 4.5:1 only for AA. Calculate, don't guess.
- Reduced-motion is a contract.
prefers-reduced-motionhonored everywhere with motion. - Focus visible. A focus ring is non-negotiable. Outline-none without replacement is a critical finding.
- Semantics over ARIA. Native
<button>beats<div role="button">every time. - Errors are announced. Form errors must reach screen reader without focus loss.
Hand-off contract
frontend-architect and component authors must hit zero criticals before merge. CI integrates axe + Lighthouse a11y gates.