a11y-audit
Installation
SKILL.md
Accessibility Audit: $ARGUMENTS
If $ARGUMENTS is empty, ask the user for a component path or folder before proceeding.
Audit the component(s) at $ARGUMENTS for WCAG AA compliance. Check both the component implementation and its documentation examples.
Checklist
1. Semantic HTML
- Interactive elements use native HTML (
<button>,<a>,<input>) — not<div>or<span>with click handlers - Lists use
<ul>/<ol>/<li>— not divs with list styling - Headings use
<h1>-<h6>with correct hierarchy - Tables use
<table>,<thead>,<tbody>,<th>with scope