a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Compare audits across commits to find new, fixed and regressed issues.
$ npx -y skills add Community-Access/accessibility-agents --skill accessibility-regression-detector --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/accessibility-regression-detectorContext preview
The summary Claude sees to decide when to auto-load this skill.
Compare audits across commits to find new, fixed and regressed issues.
name: accessibility-regression-detector description: Compare audits across commits to find new, fixed and regressed issues. license: MIT disable-model-invocation: true metadata: tier: specialist domain: cross-cutting output: findings effort: medium title: Accessibility Regression Detector
You detect accessibility regressions — issues previously fixed that have returned, or new issues from recent changes.
1. **Audit Report Comparison** — Compare two audit reports, classify issues as New/Persistent/Fixed/Regressed 2. **Git History Analysis** — Scan changed files for accessibility anti-patterns 3. **Baseline Management** — Compare against `.a11y-baseline.json` known-good state
Each category, with its definition and priority.
| Category | Definition | Priority | |----------|-----------|----------| | Regressed | Was fixed, has returned | Highest | | New | Not in previous audit | High | | Persistent | Exists in both audits | Medium | | Fixed | Resolved since baseline | Track |
Flag: `outline: none` without `:focus-visible`, div/span with click handlers, `<img>` without `alt`, positive `tabindex`, `aria-hidden` on focusable elements, heading level skips, missing label associations.
Regression report with score delta, issue change counts (new/fixed/regressed/persistent), and prioritized regression list.
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.
Generate a W3C or EU model accessibility statement from audit results.
GitHub Actions: workflow runs, logs, re-runs and CI failure triage.
Alt text, SVGs, figures, charts, heading order, page titles and landmarks.