home / skills / tlabs-xyz / tbtc-v2-performance / frontend--accessibility
/.codex/skills/frontend--accessibility
This skill enforces frontend accessibility standards by applying agent-os guidelines to components, pages, and interactions for inclusive user interfaces.
npx playbooks add skill tlabs-xyz/tbtc-v2-performance --skill frontend--accessibilityReview the files below or copy the command above to add this skill to your agents.
---
name: frontend--accessibility
description: Apply the Agent OS standard for frontend accessibility.
tags: [agent-os, standard, frontend]
---
# Frontend Accessibility
Use this skill when working on frontend accessibility in this repo.
## Instructions
- Follow the standard in `agent-os/standards/frontend/accessibility.md`.
## References
- `agent-os/standards/frontend/accessibility.md`
This skill applies the Agent OS frontend accessibility standard to UI code and deliverables. It helps teams evaluate, fix, and verify accessibility issues to meet the standard. The focus is on practical, testable changes that improve keyboard navigation, screen reader compatibility, and semantic markup.
The skill inspects frontend code, components, and markup for accessibility gaps against the Agent OS frontend accessibility standard. It identifies violations like missing aria attributes, incorrect heading structure, color-contrast failures, and non-semantic interactive elements. It produces actionable recommendations and test steps to validate fixes using automated tools and manual checks.
Does this skill replace manual accessibility testing?
No. It augments automated checks with concrete guidance, but manual testing with screen readers and keyboard navigation remains essential.
When should I use ARIA versus native HTML?
Prefer native semantic HTML first; use ARIA only when native elements cannot provide the required semantics or behavior.