
A11y Audit
- 15 installs
- 293 repo stars
- Updated August 4, 2026
- sap/fundamental-ngx
Helps with security tasks.
About
a11y-audit is a Claude Code skill for security. It helps solo builders move faster with AI-assisted coding.
- a11y-audit
- Security
- AI-coding skill
A11y Audit by the numbers
- 15 all-time installs (skills.sh)
- +2 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #1,619 of 2,203 Security skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sap/fundamental-ngx --skill a11y-auditAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 15 |
|---|---|
| repo stars | ★ 293 |
| Last updated | August 4, 2026 |
| Repository | sap/fundamental-ngx ↗ |
What it does
Helps with security tasks.
Files
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
- [ ] Custom interactive components have appropriate
roleattribute - [ ]
aria-labeloraria-labelledbyon elements without visible text - [ ]
aria-expandedon expandable triggers (menus, dropdowns, accordions) - [ ]
aria-selectedon selectable items (tabs, list items) - [ ]
aria-disabledsynced withdisabledinput - [ ]
aria-haspopupon elements that open popups/menus - [ ]
aria-liveregions for dynamic content updates - [ ] No redundant ARIA (e.g.
role="button"on<button>)
3. Keyboard Navigation
- [ ] All interactive elements reachable via Tab
- [ ] Tab order follows visual/logical order
- [ ] Arrow keys for navigation within composite widgets (menus, tabs, grids)
- [ ] Enter/Space activates buttons and links
- [ ] Escape closes modals, popups, and dropdowns
- [ ] Focus trapped inside modals/dialogs when open
- [ ] Focus returns to trigger element when popup/modal closes
- [ ] No keyboard traps (user can always Tab out)
4. Focus Management
- [ ] Focus indicator visible on all interactive elements (
:focus-visiblestyles) - [ ] Focus moves to new content when dynamically added (e.g. dialog opens)
- [ ]
tabindex="0"only on elements that need to be in tab order - [ ]
tabindex="-1"for programmatically focusable elements not in tab order - [ ] No positive
tabindexvalues (breaks natural tab order)
5. Color and Contrast
- [ ] Text meets 4.5:1 contrast ratio (normal text) or 3:1 (large text)
- [ ] Information not conveyed by color alone (icons, patterns, or text as backup)
- [ ] Focus indicators meet 3:1 contrast ratio
- [ ] Disabled states still readable (though not required to meet full contrast)
6. Screen Reader Compatibility
- [ ] Meaningful
alttext on images (oralt=""for decorative) - [ ] Form inputs have associated
<label>oraria-label - [ ] Error messages associated via
aria-describedby - [ ] Status changes announced via
aria-liveor role="status" - [ ] Hidden decorative elements have
aria-hidden="true"
7. Documentation Examples
- [ ] Examples are keyboard-navigable when rendered
- [ ] Examples include
tabindexwhere needed for non-native interactive elements - [ ] Examples demonstrate accessible usage patterns
Output
## A11y Audit: [component name]
**Compliance:** PASS / PARTIAL / FAIL
### Critical (WCAG A — must fix)
- [file:line] Issue description — WCAG criterion
### Major (WCAG AA — should fix)
- [file:line] Issue description — WCAG criterion
### Minor (best practice)
- [file:line] Issue description
### Recommendations
- Suggested improvements for better accessibilityRelated skills
Securityappsec