aria-command-name
Installation
SKILL.md
Provide accessible names for ARIA command elements
Without an accessible name, screen reader users will only hear the role (e.g., 'button') without knowing what it does, making the interface impossible to navigate.
Quick Reference
- Elements with command roles (button, link, menuitem) must have a label
- Accessible names can be provided via text content,
aria-label, oraria-labelledby - Ensures users know the purpose of the interactive element
Check
Identify elements with command roles (like button or link) that lack a clear accessible name.
Fix
Add an accessible name using inner text, aria-label, or aria-labelledby to all command elements.