inclusive-accessibility-design

Audits interfaces for WCAG 2.1/2.2 compliance and inclusive design principles.

Updated Jun 30, 2026
One-click install
npx skills add https://github.com/kaitoartz/dotfiles --skill inclusive-accessibility-design-kaitoartz
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: inclusive-accessibility-design
Source: https://github.com/kaitoartz/dotfiles/tree/main/dot_gemini/config/skills/inclusive-accessibility-design
Command: npx skills add https://github.com/kaitoartz/dotfiles --skill inclusive-accessibility-design-kaitoartz

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Digital products often exclude users with visual, motor, or cognitive disabilities due to poor contrast, missing keyboard support, or inaccessible markup. This Skill provides a structured framework to audit and fix interfaces against WCAG standards and the POUR principles. ## Core Features & Use Cases - WCAG Compliance Auditing: Systematic checks for color contrast ratios (4.5:1), alt text, semantic HTML, and ARIA usage. - POUR-Based Review: Evaluates interfaces across Perceivable, Operable, Understandable, and Robust dimensions, including keyboard navigation and touch target sizing. - Cognitive & Sensory Inclusion: Addresses motion reduction, flashing content risks, font scaling, and personalization options. - Use Case: Before shipping a new checkout flow, run an accessibility audit to verify keyboard focus visibility, screen reader labels on buttons, and descriptive error messages. ## Quick Start Audit my checkout page for WCAG 2.2 accessibility issues and suggest concrete fixes.

Frequently Asked Questions about inclusive-accessibility-design

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit a website for WCAG accessibility compliance?▼

Audit WCAG compliance by checking the four POUR principles: verify contrast ratios of at least 4.5:1 for normal text, test full keyboard navigation without a mouse, confirm images have alt text, and validate semantic HTML usage. A structured workflow covers color validation, keyboard testing, screen reader checks, and a cognitive walkthrough.

What contrast ratio is required for WCAG text accessibility?▼

WCAG requires a minimum contrast ratio of 4.5:1 for normal text and 3:1 for large text or UI components. Meeting these ratios ensures readability for users with low vision or color blindness.

How do I make an interface accessible for keyboard navigation?▼

Keyboard accessibility requires every interactive element to be reachable via Tab, Enter, and Space, with visible focus styles using :focus or :focus-visible. Avoid keyboard traps in modals and menus, and ensure the tab order follows a logical sequence.

When should I use ARIA labels instead of semantic HTML?▼

Use ARIA labels or roles only when native HTML elements cannot express the needed semantics. Always prioritize native tags like <button>, <nav>, and <main> over generic <div> elements, since assistive technologies handle native HTML more reliably.

How do I design interfaces for users with cognitive disabilities?▼

Design for cognitive accessibility by using clear, jargon-free language, consistent navigation and iconography, and descriptive error messages that suggest corrections. Avoid content flashing more than three times per second and provide a reduce-motion option for users with vertigo or ADHD.