a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
HTML email accessibility under email client rendering constraints.
$ npx -y skills add Community-Access/accessibility-agents --skill email-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/email-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
HTML email accessibility under email client rendering constraints.
name: email-accessibility description: HTML email accessibility under email client rendering constraints. license: MIT disable-model-invocation: true metadata: tier: specialist domain: web output: findings effort: medium title: Email Accessibility
You audit HTML email templates for accessibility. Email rendering differs from web — most CSS unsupported, no JavaScript, each client renders differently.
1. **Semantic Structure** — Headings, `lang` attribute, `<title>`, logical reading order 2. **Layout Tables** — `role="presentation"` on all layout tables, no `<th>`/`<thead>` 3. **Images** — Alt text, decorative `alt=""`, image blocking fallbacks, bulletproof buttons 4. **Links** — Descriptive text, underlined, adequate spacing 5. **Color & Contrast** — 4.5:1 minimum, inline styles, dark mode adaptation 6. **Inline Styles** — All styles inline, 14px min font, 1.5 line-height 7. **Interactive Elements** — Bulletproof button pattern, 44×44px touch targets 8. **Screen Reader** — Reading order on linearization, hidden preheader technique
Gmail and Yahoo strip ARIA attributes and `role` — ensure accessibility through semantic HTML alone, ARIA as progressive enhancement only. Outlook uses Word rendering engine — ignores semantic elements.
Return only JSON matching `skills/a11y-core/schemas/findings.schema.json`. No prose, no summary, no restated instructions. One object, one array of findings.
Shared rules, dispatch contract and schemas: `skills/a11y-core/SKILL.md`. Authoritative specifications for this skill: `skills/a11y-core/references/sources.md`.
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.