helderberto/agent-skills

a11y-audit

Audit accessibility compliance in frontend code.

First seen Mar 26, 2026

Installation

$ npx skills add helderberto/agent-skills --skill a11y-audit

Summary

  • Audit accessibility compliance in frontend code.
  • Use when user asks to "check accessibility", "/a11y-audit", "audit a11y", "check WCAG", or wants to find accessibility issues.
  • Don't use for backend code, non-UI files, projects without HTML/JSX output, bundle size (use /perf-audit), or translation coverage (use /i18n).

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from helderberto/agent-skills · top by installs.

npx skills add helderberto/agent-skills

Browse all from helderberto/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 14
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,143 B
  • docs SUMMARY.md 337 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 23 installs

SKILL.md

Accessibility Audit

Workflow

  1. Detect framework from package.json (React, Vue, Svelte)
  2. Run static analysis -- grep JSX/TSX/HTML files for violations
  3. If dev server is running, optionally run axe-core CLI:

``bash npx @axe-core/cli@4 http://localhost:3000 ``

  1. Report findings grouped by severity

Output format

Group by WCAG criterion:

  • Critical (A) -- blocks assistive technology users
  • Serious (AA) -- significantly impacts usability
  • Suggestions -- best practice improvements

Use file:line references. Include the fix for each finding. Prioritize keyboard navigation and screen reader issues; never auto-fix -- show what to change and why.

Error Handling

  • Framework undetected -- scan all .html, .jsx, .tsx, .vue files