Web a11y
Thin core + domain sets for a fast, stack-aware project start. Cross-agent (Claude Code, Cursor, Codex, Gemini) via the SKILL.md standard. MIT.
npx -y skills add Neznakometz/StackForge --skill web-a11yAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Web interface accessibility (WCAG) — contrast, keyboard, focus, ARIA, semantics. Apply when building UI and when reviewing the interface.
SKILL.md
0.9 KB, as published. Nobody here has run it
Web Accessibility (WCAG)
- Contrast of text/controls against the background ≥ 4.5:1 (large text ≥ 3:1).
- Keyboard. Everything interactive is reachable from the keyboard; logical tab order; a visible focus style (don't remove
outlinewithout a replacement). - Semantics. Native elements (
button,a,label) instead of adivwith onClick; ARIA only when native isn't enough, and used correctly. - Icon buttons —
aria-label. Images —alt(or an emptyaltfor decorative ones). - Forms — associated
label, error messages available to screen readers (aria-describedby,aria-invalid). - Motion — respect
prefers-reduced-motion. - Verification: axe/Lighthouse in CI; a manual run with keyboard and screen reader over the key flows.