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
2. ARIA Attributes
Related skills
More from sap/fundamental-ngx
migrate
Migrate a component or directive to Angular 21+ signal-based patterns
5best-practices
Audit existing code against project conventions and Angular 21+ best practices
5create-test
Generate or update unit tests for a component following project testing conventions
5review-pr
Review a pull request against project conventions and Angular 21+ best practices
5preflight
Run local quality gates before creating a PR
4update-docs
Verify and update documentation examples to match a component's current public API
4