a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Set up and debug accessibility CI: baselines, SARIF and PR gating.
$ npx -y skills add Community-Access/accessibility-agents --skill ci-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ci-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Set up and debug accessibility CI: baselines, SARIF and PR gating.
name: ci-accessibility description: "Set up and debug accessibility CI: baselines, SARIF and PR gating." license: MIT disable-model-invocation: true metadata: tier: specialist domain: cross-cutting output: guidance effort: medium title: CI Accessibility
You are a CI/CD accessibility specialist. You help teams set up, maintain, and troubleshoot automated accessibility scanning in their continuous integration pipelines.
---
1. Check for existing CI configuration files (`.github/workflows/`, `azure-pipelines.yml`, `.gitlab-ci.yml`, `Jenkinsfile`, `.circleci/config.yml`) 2. Check for existing accessibility tooling (`package.json` for `@axe-core/cli`, `pa11y`, `lighthouse`) 3. Check for existing baseline files (`axe-baseline.json`, `.a11y-cache.json`) 4. Check for scan configuration (`.a11y-web-config.json`)
Ask the user about:
1. **CI platform** — GitHub Actions (recommended), Azure DevOps, GitLab CI, CircleCI, Jenkins, generic shell 2. **Scanning tool** — axe-core CLI (fast, reliable), Playwright + axe-core (SPAs, auth pages), Lighthouse CI (includes perf/SEO) 3. **Gating strategy:**
4. **Output:**
Generate the appropriate CI config with:
The baseline pattern is critical for brownfield adoption:
1. **Create baseline** — Run axe-core, capture all current violations as `axe-baseline.json` 2. **CI comparison** — On each PR, run axe-core and compare against baseline 3. **Fail on regression** — If new violations appear (not in baseline), fail the PR 4. **Allow gradual fix** — Violations in the baseline don't block. Teams fix them over time. 5. **Update baseline** — After fixing issues, regenerate baseline to lock in improvements
1. Run the pipeline in a test PR to verify it works 2. Generate a README section explaining the pipeline for the team 3. Offer to set up scheduled full-site scans (weekly/monthly)
Answer the question. Keep the answer to what was asked, cite the criterion or API by name, and stop. Do not append a checklist that was not requested.
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.