a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Reference data, not a reviewer. Video/audio accessibility: WebVTT/SRT/TTML captions, audio descriptions, accessible media player ARIA, and WCAG 1.2.x compliance.
$ npx -y skills add Community-Access/accessibility-agents --skill kb-media-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kb-media-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Reference data, not a reviewer. Video/audio accessibility: WebVTT/SRT/TTML captions, audio descriptions, accessible media player ARIA, and WCAG 1.2.x compliance.
name: kb-media-accessibility description: "Reference data, not a reviewer. Video/audio accessibility: WebVTT/SRT/TTML captions, audio descriptions, accessible media player ARIA, and WCAG 1.2.x compliance." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: reference domain: cross-cutting output: none effort: low title: Media Accessibility
Reference data for video, audio, and streaming media accessibility. Used by `media-accessibility` agent and any web agent encountering `<video>` or `<audio>` elements.
---
Each SC, with its level, requirement and test.
| SC | Level | Requirement | Test | |----|-------|-------------|------| | 1.2.1 | A | Audio-only/video-only: provide text transcript or audio track | Transcript exists alongside media | | 1.2.2 | A | Captions for prerecorded audio in video | Synchronized captions present | | 1.2.3 | A | Audio description OR text alternative for prerecorded video | Description track or full transcript | | 1.2.4 | AA | Captions for live audio in video | Real-time captioning active | | 1.2.5 | AA | Audio description for prerecorded video | Description track present | | 1.2.6 | AAA | Sign language for prerecorded audio | Sign language interpretation video | | 1.2.7 | AAA | Extended audio description | Paused video for long descriptions | | 1.2.8 | AAA | Media alternative for prerecorded video | Full text alternative document | | 1.2.9 | AAA | Audio-only (live): text alternative | Real-time text transcript |
WEBVTT 00:00:01.000 --> 00:00:04.000 Welcome to the accessibility course. 00:00:04.500 --> 00:00:08.000 Today we'll cover caption best practices. 00:00:08.500 --> 00:00:12.000 <v Speaker 2>Let's start with file formats.
**Key rules:**
1 00:00:01,000 --> 00:00:04,000 Welcome to the accessibility course. 2 00:00:04,500 --> 00:00:08,000 Today we'll cover caption best practices.
**Key rules:**
Each metric, with its requirement.
| Metric | Requirement | |--------|------------| | Accuracy | 99%+ word accuracy | | Synchronization | Within 1 second of audio | | Speaker identification | Required when 2+ speakers | | Sound effects | Describe in brackets: `[applause]`, `[phone rings]` | | Music | Describe: `[upbeat music]`, `[dramatic orchestral score]` | | Caption rate | Maximum 200 words per minute (3 words/second) | | Line length | Maximum 32 characters per line | | Lines per caption | Maximum 2 lines | | Placement | Bottom center default; move for on-screen text |
Audio description narrates visual information during pauses in dialogue.
**Requirements:**
**HTML implementation:**
<video controls> <source src="video.mp4" type="video/mp4"> <track kind="captions" src="captions-en.vtt" srclang="en" label="English" default> <track kind="descriptions" src="descriptions-en.vtt" srclang="en" label="English Audio Descriptions"> </video>
Every media player must have keyboard-accessible controls for:
<div aria-live="polite" class="sr-only" id="player-status"> <!-- Announce: "Playing", "Paused", "Video ended", "Captions on", "Captions off" --> </div>
Each key, with its action.
| Key | Action | |-----|--------| | Space / Enter | Play/Pause | | Left Arrow | Rewind 5 seconds | | Right Arrow | Forward 5 seconds | | Up Arrow | Volume up | | Down Arrow | Volume down | | M | Mute/Unmute | | C | Toggle captions | | F | Toggle fullscreen |
Each issue, with its WCAG SC and severity.
| Issue | WCAG SC | Severity | |-------|---------|-------
WCAG 2.2 AA enforcement for agentic coding, as a set of Agent Skills. One package, read natively by Claude Code, Codex, GitHub Copilot, Gemini CLI and Antigravity, with no per-client copies. Models forget accessibility while generating code.
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Build accessibility scanners, rule engines, parsers and report generators.
Web UI accessibility lead. Use before writing or changing HTML, JSX, TSX, Vue, Svelte, CSS or templates. Picks specialists and merges their findings.
Compare audits across commits to find new, fixed and regressed issues.
Generate a W3C or EU model accessibility statement from audit results.
GitHub Actions: workflow runs, logs, re-runs and CI failure triage.