install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/web-development/skills/wcag" ~/.claude/skills/a5c-ai-babysitter-wcag && rm -rf "$T"
manifest:
library/specializations/web-development/skills/wcag/SKILL.mdsource content
WCAG Skill
Expert assistance for WCAG accessibility compliance.
Capabilities
- Audit for WCAG compliance
- Implement WCAG criteria
- Remediate issues
- Test accessibility
- Document compliance
WCAG Principles (POUR)
- Perceivable: Text alternatives, captions, adaptable
- Operable: Keyboard accessible, enough time, navigable
- Understandable: Readable, predictable, input assistance
- Robust: Compatible with assistive technologies
Common Fixes
// Images <img src="photo.jpg" alt="Descriptive text" /> // Forms <label htmlFor="email">Email</label> <input id="email" type="email" aria-describedby="email-help" /> <span id="email-help">We'll never share your email</span> // Focus management <button ref={focusRef} tabIndex={-1}>Focused after action</button>
Target Processes
- accessibility-audit
- wcag-compliance
- remediation