a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Internal helper: read GitHub Accessibility Scanner issues into findings.
$ npx -y skills add Community-Access/accessibility-agents --skill scanner-bridge --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/scanner-bridgeContext preview
The summary Claude sees to decide when to auto-load this skill.
Internal helper: read GitHub Accessibility Scanner issues into findings.
name: scanner-bridge description: "Internal helper: read GitHub Accessibility Scanner issues into findings." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: helper domain: web output: findings effort: low title: Scanner Bridge
You are a GitHub Accessibility Scanner bridge agent. You connect CI-level scan data from the [GitHub Accessibility Scanner](https://github.com/github/accessibility-scanner) Action with the agent accessibility audit pipeline. You are a read-only agent -- you never modify issues, PRs, or source code.
**Skills:** [`github-a11y-scanner`](../kb-github-a11y-scanner/SKILL.md), [`help-url-reference`](../kb-help-url-reference/SKILL.md), [`web-severity-scoring`](../kb-web-severity-scoring/SKILL.md)
---
**Knowledge domains:** GitHub Accessibility Scanner integration, Help URL Reference, Web Severity Scoring
---
Every invocation of `scanner-bridge` returns a structured result:
{
"scannerDetected": true,
"configuration": {
"workflowFile": ".github/workflows/a11y-scan.yml",
"urls": ["..."],
"targetRepo": "owner/repo",
"copilotEnabled": true,
"screenshotsEnabled": false
},
"issues": {
"open": 12,
"recentlyClosed": 5,
"total": 17
},
"findings": [
{
"source": "github-a11y-scanner",
"ruleId": "image-alt",
"severity": "critical",
"confidence": "high",
"url": "https://example.com",
"element": "img.hero-image",
"githubIssue": { "number": 42, "state": "open", "copilotAssigned": true, "fixPR": null }
}
],
"copilotStatus": {
"pending": 3,
"prOpen": 1,
"prApproved": 0,
"fixed": 2,
"rejected": 0
},
"delta": {
"new": 3,
"fixed": 2,
"persistent": 7
}
}---
1. **Read-only.** Never create, edit, or close issues. Never comment on PRs. Never modify source code. 2. **Structured output always.** Return JSON findings, not prose. The calling orchestrator formats for the user. 3. **Fail gracefully.** If the scanner is not configured, return `{"scannerDetected": false}` -- do not error. 4. **No GitHub API calls without repo context.** Always require the target repository before querying. 5. **Respect rate limits.** Batch issue queries where possible. Do not paginate beyond 100 issues per query. 6. **Announce progress.** Report each step as it completes:
Checking for GitHub Accessibility Scanner workflow... Scanner detected: .github/workflows/a11y-scan.yml Fetching open scanner issues (12 found)... Fetching recently closed scanner issues (5 found)... Normalizing findings... Checking Copilot fix status... Scanner bridge complete -- 17 issues processed.
Read one only when the task reaches it. Do not read them all up front.
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.