Agent skill · Security

accessibility

Audit and improve web accessibility following WCAG 2.1 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible". Do NOT use for SEO (use seo), performance (use core-web-vitals), or comprehensive site audits covering multiple areas (use web-quality-audit).

tech-leads-clubgithub.com/tech-leads-clubGitHub ↗
claude-codecopilotcursorNOASSERTION
Install
npx skills add tech-leads-club/agent-skills --skill web-accessibility --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Version: 1.0
Declared author: web-quality-skills
Path: packages/skills-catalog/skills/(quality)/web-accessibility/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 4,983
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Accessibility (a11y) Comprehensive accessibility guidelines based on WCAG 2.1 and Lighthouse accessibility audits. Goal: make content usable by everyone, including people with disabilities. ## WCAG Principles: POUR | Principle | Description | | ------------------ | ------------------------------------------------- | | **P**erceivable | Content can be perceived through different senses | | **O**perable | Interface can be operated by all users | | **U**nderstandable | Content and interface are understandable | | **R**obust | Content works with assistive technologies | ## Conformance levels | Level | Requirement | Target | | ------- | ---------------------- | ----------------------------------------------------- | | **A** | Minimum accessibility | Must pass | | **AA** | Standard compliance | Should pass (legal requirement in many jurisdictions) | | **AAA** | Enhanced accessibility | Nice to have | --- ## Perceivable ### Text alternatives (1.1) **Images require alt text:** ```html <!-- ❌ Missing alt --> <img src="chart.png" /> <!-- ✅ Descriptive alt --> <img src="chart.png" alt="Bar chart showing 40% increase in Q3 sales" /> <!-- ✅ Decorative image (empty alt) --> <img src="decorativ

What's inside
Steps it walks through
  1. WCAG Principles: POUR
  2. Conformance levels
  3. Perceivable
  4. Text alternatives (1.1)
  5. Color contrast (1.4.3, 1.4.6)
  6. Media alternatives (1.2)
  7. Operable
  8. Keyboard accessible (2.1)
  9. Focus visible (2.4.7)
  10. Skip links (2.4.1)
  11. Timing (2.2)
  12. Motion (2.3)
  13. Understandable
  14. Page language (3.1.1)
Ships with 1 file
  • references/WCAG.md
Commands it runs
Lighthouse accessibility audit
npx lighthouse https://example.com --only-categories=accessibility
axe-core
npm install @axe-core/cli -g
axe https://example.com
More from agent-skills
All skills →
About this skill
What does the accessibility skill do?

Audit and improve web accessibility following WCAG 2.1 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible". Do NOT use for SEO (use seo), performance (use core-web-vitals), or comprehensive site audits covering multiple areas (use web-quality-audit).

How do I install it?

Run `npx skills add tech-leads-club/agent-skills --skill web-accessibility --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From tech-leads-club/agent-skills, a repository with 4,983 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going