Check and verify accessibility compliance for Spark UI components. Use when the user wants to test accessibility, verify WCAG compliance, or fix accessibility issues.
60
70%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./.cursor/skills/check-accessibility/SKILL.mdVerify that components meet WCAG 2.1 AA accessibility standards.
Automated Testing:
# Test all components
npm run test:a11y
# Test specific component(s)
npm run test:a11y -- tabs
npm run test:a11y -- tabs button card
# Combine with Playwright options
npm run test:a11y -- tabs --workers 1This runs Playwright tests with @axe-core/playwright for automated accessibility checks. You can test specific components by passing their names as arguments after --. Component names are case-insensitive and should match the keys in e2e/a11y/routes/components.ts.
Manual Checks:
Common Accessibility Requirements:
Testing Tools:
@axe-core/playwright for automated testing@testing-library/react for unit test accessibilityFix Issues:
All components must meet WCAG 2.1 AA standards. See .cursor/rules/accessibility-standards.md for details.
76a3678
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.