agentsclimarketplace

Skill accessibility

Skill saitarrun/sdlc-ai-workflow/skills/skill-accessibility

A comprehensive Claude Code plugin that automates the complete Software Development Lifecycle with 20 role-specific agents, 12 knowledge skills, and 8 commands, all guided by principles.

Install
npx -y skills add saitarrun/sdlc-ai-workflow --skill skill-accessibility

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

WCAG 2.1 AA compliance, keyboard navigation, screen reader testing, semantic HTML, ARIA labels, color contrast, assistive technology validation. Use when ensuring accessibility, conducting a11y audits, testing with screen readers, or designing inclusive interfaces.

SKILL.md

2.5 KB, as published. Nobody here has run it

Skill: Accessibility (WCAG 2.1 AA)

Ensure your product is usable by everyone, including people with disabilities. Accessibility is a feature, not optional.

WCAG 2.1 AA Checklist

Perceivable

  • Images have meaningful alt text
  • Videos have captions
  • Color is not the only way to convey info
  • Text contrast ≥ 4.5:1 (normal), ≥ 3:1 (large)
  • Content can be resized 200% without loss
  • No flashing > 3x/second

Operable

  • Keyboard accessible (Tab, Enter, Space, Arrows)
  • Focus visible (outline or custom)
  • Focus order logical (top→bottom)
  • No keyboard traps
  • Enough time to read content
  • Navigable (headings, landmarks, skip links)

Understandable

  • Language identified
  • Instructions clear
  • Form labels + error messages
  • Consistent navigation

Robust

  • Valid semantic HTML
  • Heading hierarchy valid (h1 → h2/h3, no skips)
  • ARIA only when HTML insufficient
  • Works with assistive tech

Semantic HTML

<!-- ✓ Use semantic tags -->
<nav>Navigation</nav>
<main>Content</main>
<article>Post</article>
<section>Section</section>
<aside>Related</aside>

<!-- ✓ Form labels -->
<label for="email">Email</label>
<input id="email" type="email" />

<!-- ✓ Heading hierarchy -->
<h1>Title</h1>
<h2>Section</h2>
<h3>Subsection</h3>

Keyboard Testing

  1. Hide mouse
  2. Tab through entire page
  3. Check: Focus visible, order logical, no traps
  4. Test: Enter (buttons), Space (toggles), Arrows (menus)

Screen Reader Testing

  • NVDA (free, Windows): Ctrl+Alt+N
  • VoiceOver (Mac): Cmd+F5
  • Mobile: TalkBack (Android), VoiceOver (iOS)

Color Contrast

  • Text: 4.5:1 minimum (white text on dark blue too light)
  • Large text (18pt+): 3:1 minimum
  • Use: WebAIM contrast checker

Testing Tools

  • Automated: axe, WAVE, Lighthouse
  • Manual: Screen reader, keyboard-only
  • CI: axe in Playwright tests

Success

  • WCAG 2.1 AA compliant
  • Keyboard usable (no mouse)
  • Screen reader tested
  • Zero high/critical violations
  • Contrast ≥ 4.5:1

Status: Ready for accessibility work
Best for: A11y audits, accessible design, WCAG compliance

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.