Agent skill · Documentation

docs-accessibility

Documentation accessibility validation and remediation. Check WCAG 2.1 compliance, validate alt text, analyze heading hierarchy, verify color contrast, and generate accessibility reports.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill docs-accessibility --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: ReadWriteEditBashGlobGrep
Path: library/specializations/technical-documentation/skills/docs-accessibility/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Documentation Accessibility Skill Documentation accessibility validation and remediation. ## Capabilities - WCAG 2.1 compliance checking - Image alt text validation - Heading hierarchy analysis - Color contrast verification - Screen reader compatibility testing - Keyboard navigation validation - ARIA landmark checking - Accessibility report generation ## Usage Invoke this skill when you need to: - Audit documentation for accessibility - Validate image alt text - Check heading structure - Verify color contrast ratios - Generate accessibility reports ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | inputPath | string | Yes | Path to documentation or built site | | action | string | Yes | audit, validate-images, check-headings | | standard | string | No | WCAG level (A, AA, AAA) | | outputFormat | string | No | json, html, sarif | | fix | boolean | No | Auto-fix issues where possible | ### Input Example ```json { "inputPath": "./docs/_build/html", "action": "audit", "standard": "AA", "outputFormat": "json" } ``` ## Output Structure ### Accessibility Report ```json { "summary": { "total": 156, "passed": 142, "failed": 14, "level"

What's inside
Steps it walks through
  1. Capabilities
  2. Usage
  3. Inputs
  4. Input Example
  5. Output Structure
  6. Accessibility Report
  7. WCAG Guidelines Checked
  8. Perceivable (Principle 1)
  9. Operable (Principle 2)
  10. Understandable (Principle 3)
  11. Image Alt Text Validation
  12. Alt Text Rules
  13. Alt Text Suggestions
  14. Heading Structure Analysis
Ships with 1 file
  • README.md
Commands it runs
Run axe-core audit
npx axe ./docs/_build/html --rules wcag2aa
Run pa11y
npx pa11y https://docs.example.com --standard WCAG2AA
Lighthouse accessibility audit
npx lighthouse https://docs.example.com --only-categories=accessibility
Check single page
npx axe https://docs.example.com/guide --save report.json
More from babysitter
All skills →
About this skill
What does the docs-accessibility skill do?

Documentation accessibility validation and remediation. Check WCAG 2.1 compliance, validate alt text, analyze heading hierarchy, verify color contrast, and generate accessibility reports.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill docs-accessibility --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going