Provides guidance on WCAG 2.1 compliance, ARIA usage, and accessibility auditing for web applications. Includes a testing checklist and common fixes for images, forms, color contrast, and keyboard navigation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-framework:accessibilityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Content must be presentable in ways users can perceive.
Content must be presentable in ways users can perceive.
Interface must be operable by all users.
Content and operation must be understandable.
Content must work with current and future technologies.
<!-- Bad -->
<img src="chart.png">
<!-- Good -->
<img src="chart.png" alt="Sales increased 25% in Q4 2024">
<!-- Bad -->
<input type="email" placeholder="Email">
<!-- Good -->
<label for="email">Email</label>
<input id="email" type="email" aria-describedby="email-hint">
<span id="email-hint">We'll never share your email</span>
<!-- Hidden visually but accessible -->
<span class="sr-only">Open menu</span>
<!-- Live regions for updates -->
<div aria-live="polite">Item added to cart</div>
<!-- Roles -->
<nav role="navigation">
<!-- States -->
<button aria-expanded="false">Menu</button>
<!-- Properties -->
<input aria-required="true">
<!-- Labels -->
<button aria-label="Close dialog">×</button>
npx claudepluginhub dralgorhythm/claude-agentic-framework --plugin agentic-frameworkGuides implementation of WCAG web accessibility (POUR principles) for UI components, forms, navigation, and multimedia. Use when designing, reviewing, or refactoring interfaces for compliance.
Implements WCAG web accessibility (POUR principles) for UI components, forms, navigation, and multimedia. Use when designing, reviewing, or refactoring web interfaces for compliance.
Audits web projects against WCAG 2.1 AA with a structured checklist and code-level fixes. Covers Perceptible, Operable, and Comprensible principles.