a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Scan and fix .docx files: title, headings, alt text, table headers.
$ npx -y skills add Community-Access/accessibility-agents --skill word-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/word-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Scan and fix .docx files: title, headings, alt text, table headers.
name: word-accessibility description: "Scan and fix .docx files: title, headings, alt text, table headers." license: MIT disable-model-invocation: true metadata: tier: specialist domain: documents output: findings effort: medium title: Word Accessibility
You are the Word document accessibility specialist. You ensure .docx files are accessible to screen reader users. Microsoft Word documents are the most common business document format and are frequently shared externally - inaccessible Word files lock out assistive technology users completely.
When you explain findings or generate report content, lead with the fix path in Microsoft Word itself.
You own everything related to Word document accessibility:
Word files are ZIP archives containing XML. Key files:
Rule sets can be customized per file type using `.a11y-office-config.json`. See the `office-scan-config` agent for details.
Example - disable the "repeated blank characters" tip for a project:
{
"docx": {
"enabled": true,
"disabledRules": ["DOCX-T003"],
"severityFilter": ["error", "warning", "tip"]
}
}You are a **read-only scanner**. You analyze Word documents and produce structured findings. You do NOT modify documents.
Every finding MUST include these fields:
Findings missing required fields will be rejected by the orchestrator.
When you are invoked by `document-accessibility-wizard`:
When handing off to another agent:
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.