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. HTML email accessibility: table layouts, inline styles, dark mode, image fallbacks, and email client rendering constraints.
$ npx -y skills add Community-Access/accessibility-agents --skill kb-email-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kb-email-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Reference data, not a reviewer. HTML email accessibility: table layouts, inline styles, dark mode, image fallbacks, and email client rendering constraints.
name: kb-email-accessibility description: "Reference data, not a reviewer. HTML email accessibility: table layouts, inline styles, dark mode, image fallbacks, and email client rendering constraints." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: reference domain: cross-cutting output: none effort: low title: Email Accessibility
Reference data for HTML email accessibility under email client rendering constraints. Used by `email-accessibility` agent.
---
Email HTML operates under severe constraints compared to web browsers:
| Feature | Gmail | Outlook (Win) | Apple Mail | Yahoo | Outlook.com | |---------|-------|--------------|------------|-------|-------------| | Semantic HTML (`<nav>`, `<main>`) | Stripped | Stripped | Supported | Stripped | Stripped | | `role` attributes | Stripped | Stripped | Supported | Stripped | Stripped | | `aria-*` attributes | Stripped | Stripped | Supported | Stripped | Stripped | | `<style>` blocks | Supported | Supported | Supported | Supported | Supported | | External CSS | Stripped | Stripped | Stripped | Stripped | Stripped | | JavaScript | Stripped | Stripped | Stripped | Stripped | Stripped | | CSS Grid | Supported | Not supported | Supported | Supported | Supported | | CSS Flexbox | Supported | Not supported | Supported | Supported | Supported | | `<button>` element | Rendered | Rendered | Rendered | Rendered | Rendered | | `tabindex` | Stripped | Stripped | Supported | Stripped | Stripped |
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center" style="padding: 20px;">
<!-- Content here -->
</td>
</tr>
</table>**Rules:**
<img src="hero.jpg" alt="Product launch announcement: 50% off all subscriptions through March" width="600" height="300" style="display: block; max-width: 100%;">
**Rules:**
<a href="https://example.com/subscribe" style="color: #005a9c; text-decoration: underline;"> Subscribe to our accessibility newsletter </a>
**Rules:**
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
<tr>
<td style="border-radius: 4px; background: #005a9c;">
<a href="https://example.com/action" style="background: #005a9c; border: 15px solid #005a9c; font-family: Arial, sans-serif; font-size: 16px; line-height: 1.1; text-align: center; text-decoration: none; display: block; border-radius: 4px; font-weight: bold;">
<span style="color: #ffffff;">Get Started</span>
</a>
</td>
</tr>
</table><html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!-- Meta tag for dark mode support -->
<meta name="color-scheme" content="light dark">
<meta name="supported-color-schemes" content="light dark">
<style>
@media (prefers-color-scheme: dark) {
.email-body { background-color: #1a1a1a !important; }
.text-content { color: #e0e0e0 !important; }
}
</style>**Rules:**
<mj-image src="photo.jpg" alt="Description of the image" /> <mj-button href="https://example.com" background-color="#005a9c" color="#ffffff"> Accessible Button Text </mj-button>
<img src="photo.jpg" alt="Description" class="float-center"> <button class="button large" href="https://example.com"> <a href="https://example.com">Accessible Button Text</a> </button>
Each check, with its WCAG SC and priority.
| Check | WCAG SC | Priority | |-------|---------|----------| | All layout tables have
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.