Babysitter screen-reader

Screen reader compatibility, testing, and optimization.

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/screen-reader" ~/.claude/skills/a5c-ai-babysitter-screen-reader && rm -rf "$T"
manifest: library/specializations/web-development/skills/screen-reader/SKILL.md
source content

Screen Reader Skill

Expert assistance for screen reader compatibility.

Capabilities

  • Test with screen readers
  • Optimize reading order
  • Handle announcements
  • Manage focus
  • Write accessible content

Testing Tools

  • NVDA (Windows)
  • VoiceOver (macOS/iOS)
  • JAWS (Windows)
  • TalkBack (Android)

Best Practices

// Visually hidden but screen reader accessible
<span className="sr-only">Close dialog</span>

// Skip links
<a href="#main-content" className="skip-link">
  Skip to main content
</a>

// Reading order
// Ensure DOM order matches visual order

Target Processes

  • screen-reader-testing
  • accessibility-optimization
  • user-testing