accessibility-expert

Build inclusive interfaces with WCAG compliance and best practices.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "accessibility-expert" with this command: npx skills add slb2248/ai-ux-skills/slb2248-ai-ux-skills-accessibility-expert

Accessibility Expert

Create inclusive digital experiences that work for everyone.

WCAG 2.1 Quick Reference

Level A (Minimum)

  • All images have alt text
  • Videos have captions
  • Content is keyboard accessible
  • No seizure-triggering content
  • Pages have titles

Level AA (Target for most)

  • 4.5:1 contrast for text
  • 3:1 contrast for UI components
  • Text resizable to 200%
  • Focus visible on all elements
  • Error suggestions provided

Level AAA (Enhanced)

  • 7:1 contrast ratio
  • Sign language for video
  • Extended audio descriptions
  • No timing-based interactions

Semantic HTML First

<!-- Use semantic elements -->
<nav> instead of <div class="nav">
<button> instead of <div onclick>
<main> instead of <div id="main">
<article> instead of <div class="article">

<!-- Proper heading hierarchy -->
<h1>Page Title</h1>
  <h2>Section</h2>
    <h3>Subsection</h3>

ARIA When Needed

<!-- Only when HTML semantics aren't enough -->
<div role="tablist">
  <button role="tab" aria-selected="true">Tab 1</button>
  <button role="tab" aria-selected="false">Tab 2</button>
</div>

<!-- Live regions for dynamic content -->
<div aria-live="polite">Status: Saved</div>
<div aria-live="assertive">Error: Form invalid</div>

<!-- Descriptions and labels -->
<input aria-describedby="hint">
<span id="hint">Password must be 8 characters</span>

Keyboard Navigation

Focus Management

  • Visible focus indicator on all interactive elements
  • Logical tab order (follows visual order)
  • Skip links for main content
  • Focus trap in modals

Key Patterns

KeyAction
TabMove to next element
Shift+TabMove to previous
Enter/SpaceActivate button
Arrow keysNavigate within component
EscapeClose modal/menu

Screen Reader Support

Content Structure

  • Use landmarks: main, nav, aside, footer
  • Descriptive link text (not "click here")
  • Announce dynamic changes
  • Provide text alternatives

Testing Checklist

  • Can navigate with keyboard only
  • Screen reader announces all content
  • Focus order makes sense
  • Dynamic content is announced
  • Forms have proper labels
  • Errors are clearly communicated

Color & Contrast

Don't Rely on Color Alone

  • Add icons or patterns
  • Use text labels
  • Provide multiple indicators

Contrast Requirements

  • Normal text: 4.5:1 minimum
  • Large text (18px+): 3:1 minimum
  • UI components: 3:1 minimum
  • Focus indicators: 3:1 minimum

Forms

<!-- Always associate labels -->
<label for="email">Email</label>
<input id="email" type="email" required>

<!-- Group related fields -->
<fieldset>
  <legend>Shipping Address</legend>
  <!-- address fields -->
</fieldset>

<!-- Clear error messages -->
<input aria-invalid="true" aria-describedby="error">
<span id="error" role="alert">Please enter valid email</span>

Testing Tools

  • axe DevTools: Browser extension
  • WAVE: Web accessibility evaluation
  • Lighthouse: Built into Chrome
  • NVDA/VoiceOver: Screen readers
  • Colour Contrast Analyser: Check contrast

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

accessibility-expert

No summary provided by upstream source.

Repository SourceNeeds Review
General

accessibility-expert

No summary provided by upstream source.

Repository SourceNeeds Review
General

ll-feishu-audio

飞书语音交互技能。支持语音消息自动识别、AI 处理、语音回复全流程。需要配置 FEISHU_APP_ID 和 FEISHU_APP_SECRET 环境变量。使用 faster-whisper 进行语音识别,Edge TTS 进行语音合成,自动转换 OPUS 格式并通过飞书发送。适用于飞书平台的语音对话场景。

Archived SourceRecently Updated
General

test_skill

import json import tkinter as tk from tkinter import messagebox, simpledialog

Archived SourceRecently Updated