tiny-a11y
Installation
SKILL.md
Tiny A11y
Write as little code as possible. Use native HTML elements that are already accessible instead of adding ARIA attributes to generic elements.
Core Principles
- Trust the browser — Native elements have built-in accessibility
- Semantic over ARIA — Use the right element, not
roleattributes - Less is more — Every ARIA attribute you don't write is one less thing to break
- Native first — Use
<dialog>,<details>,<button>before reaching for JavaScript
References
- Use WCAG 2.2 Understanding for accessibility guidance
- Use WAI-ARIA 1.2 for ARIA attributes
- Use APG Gherkin for component test cases
- Use Design Tokens for design systems terminology