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. Map accessibility findings to help resources: axe-core to Accessibility Insights, document rules to Microsoft Office/Adobe, WCAG criteria to W3C Understanding documents.
$ npx -y skills add Community-Access/accessibility-agents --skill kb-help-url-reference --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kb-help-url-referenceContext preview
The summary Claude sees to decide when to auto-load this skill.
Reference data, not a reviewer. Map accessibility findings to help resources: axe-core to Accessibility Insights, document rules to Microsoft Office/Adobe, WCAG criteria to W3C Understanding documents.
name: kb-help-url-reference description: "Reference data, not a reviewer. Map accessibility findings to help resources: axe-core to Accessibility Insights, document rules to Microsoft Office/Adobe, WCAG criteria to W3C Understanding documents." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: reference domain: cross-cutting output: none effort: low title: Help Url Reference
Centralized mapping of accessibility rule IDs and WCAG criteria to external help documentation. Used by CSV reporters, audit report generators, and any agent that links findings to remediation guidance.
Base URL: https://accessibilityinsights.io/info-examples/web/
Pattern: {base_url}{rule-id}
Example: https://accessibilityinsights.io/info-examples/web/image-alt/For any axe-core rule, construct the URL by appending the rule ID to the base URL. This pattern covers all axe-core rules.
Each rule ID, with its issue, WCAG and help URL.
| Rule ID | Issue | WCAG | Help URL | |---------|-------|------|---------------| | `image-alt` | Image missing alternative text | 1.1.1 | `https://accessibilityinsights.io/info-examples/web/image-alt/` | | `button-name` | Button has no accessible name | 4.1.2 | `https://accessibilityinsights.io/info-examples/web/button-name/` | | `color-contrast` | Text has insufficient contrast | 1.4.3 | `https://accessibilityinsights.io/info-examples/web/color-contrast/` | | `label` | Form element has no label | 1.3.1 | `https://accessibilityinsights.io/info-examples/web/label/` | | `link-name` | Link has no discernible text | 4.1.2 | `https://accessibilityinsights.io/info-examples/web/link-name/` | | `html-has-lang` | Page missing lang attribute | 3.1.1 | `https://accessibilityinsights.io/info-examples/web/html-has-lang/` | | `document-title` | Page missing title | 2.4.2 | `https://accessibilityinsights.io/info-examples/web/document-title/` | | `heading-order` | Heading levels skipped | 1.3.1 | `https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html` | | `aria-roles` | Invalid ARIA role | 4.1.2 | `https://accessibilityinsights.io/info-examples/web/aria-roles/` | | `aria-required-attr` | Missing required ARIA attribute | 4.1.2 | `https://accessibilityinsights.io/info-examples/web/aria-required-attr/` | | `aria-valid-attr` | Invalid ARIA attribute | 4.1.2 | `https://accessibilityinsights.io/info-examples/web/aria-valid-attr/` | | `bypass` | No skip navigation link | 2.4.1 | `https://accessibilityinsights.io/info-examples/web/bypass/` | | `region` | Content not in landmark | 1.3.1 | `https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html` | | `tabindex` | Positive tabindex used | 2.4.3 | `https://www.w3.org/WAI/WCAG22/Understanding/focus-order.html` | | `duplicate-id` | Duplicate element ID | 4.1.1 | `https://accessibilityinsights.io/info-examples/web/duplicate-id/` | | `focus-order-semantics` | Focus order issue | 2.4.3 | `https://www.w3.org/WAI/WCAG22/Understanding/focus-order.html` | | `input-image-alt` | Input image missing alt | 1.1.1 | `https://accessibilityinsights.io/info-examples/web/input-image-alt/` | | `meta-viewport` | Viewport disables zoom | 1.4.4 | `https://accessibilityinsights.io/info-examples/web/meta-viewport/` | | `select-name` | Select element has no label | 4.1.2 | `https://accessibilityinsights.io/info-examples/web/select-name/` | | `autocomplete-valid` | Invalid autocomplete value | 1.3.5 | `https://accessibilityinsights.io/info-examples/web/autocomplete-valid/` |
For agent-detected issues without axe-core rule IDs, use these W3C/WAI pages:
| Topic | URL | |-------|-----| | Focus management | `https://www.w3.org/WAI/WCAG22/Understanding/focus-order.html` | | Live regions | `https://www.w3.org/WAI/WCAG22/Understanding/status-messages.html` | | Modal dialogs | `https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/` | | Data tables | `https://www.w3.org/WAI/tutorials/tables/` |
> Rule IDs match the canonical definitions in the `word-accessibility` format agent.
| Rule ID | Issue | Help URL | |---------|-------|----------| | `DOCX-E001` | Missing alt text on images | `https://support.microsoft.com/en-us/office/add-alternative-text-to-a-shape-picture-chart-smartart-graphic-or-other-object-44989b2a-903c-4d9a-b742-6a75b451c669` | | `DOCX-E002` | Missing table header row | `https://support.microsoft.com/en-us/office/create-accessible-tables-in-word-cb464015-59dc-46a0-ac01-6217c62210e5` | | `DOCX-E003` | Skipped heading levels | `https://support.microsoft.com/en-us/office/create-accessible-word-documents-d9bf3683-87ac-47ea-b91a-78dcacb3c66d#bkmk_headings` | | `DOCX-E004` | Missing document title | `https://support.microsoft.com/en-us/office/create-accessible-word-documents-d9bf3683-87ac-47ea-b91a-78dcacb3c66d#bkmk_doctitle` | | `DOCX-E005` | Merged or split table cells | `https://support.microsoft.com/en-us/office/create-accessible-tables-in-word-cb464015-59dc-46a0-ac01-6217c62210e5` | | `DOCX-E006` | Ambiguous hyperlink text | `https://support.microsoft.com/en-us/office/create-accessible-word-documents-d9bf3683-87ac-47ea-b91a-78dcacb3c66d#bkmk_links` | | `DOCX-E007` | No heading structure | `https://support.microsoft.com/en-us/office/create-accessible-word-documents-d9bf3683-87ac-47ea-b91a-78dcacb3c66d#bkmk_headings` | | `DOCX-E008` | Document access restricted (IRM) | `https://support.microsoft.com/en-us/office/create-accessible-word-documents-d9bf3683-87ac-47ea-b91a-78dcacb3c66d` | | `DOCX-E009` | Content controls without titles | `https://support.microsoft.com/en-us/office/create-accessible-word-documents-d9bf3683-87ac-47ea-b91a-78dcacb3c66d` | | `DOCX-W001` | Nested tables | `https://support.microsoft.com/en-us/office/create-accessible-tables-in-
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.