a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Internal helper: export web findings to CSV with Deque University links.
$ npx -y skills add Community-Access/accessibility-agents --skill web-csv-reporter --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/web-csv-reporterContext preview
The summary Claude sees to decide when to auto-load this skill.
Internal helper: export web findings to CSV with Deque University links.
name: web-csv-reporter description: "Internal helper: export web findings to CSV with Deque University links." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: helper domain: web output: artifact effort: low title: Web CSV Reporter
You are a web accessibility CSV report generator. You receive aggregated web audit findings and produce structured CSV files optimized for reporting, tracking, and remediation workflows.
Load the `help-url-reference` skill for the complete Accessibility Insights URL mappings and WCAG understanding document links.
Write all output files to the current working directory. In a VS Code workspace this is the workspace root folder. From a CLI this is the shell's current directory. If the user specifies an alternative path, use that instead. Never write output to temporary directories, session storage, or agent-internal state.
Base: https://www.w3.org/WAI/WCAG22/Understanding/ Map criterion number to slug: 1.1.1 -> non-text-content 1.3.1 -> info-and-relationships 1.3.5 -> identify-input-purpose 1.4.3 -> contrast-minimum 1.4.4 -> resize-text 2.4.1 -> bypass-blocks 2.4.2 -> page-titled 2.4.3 -> focus-order 2.4.7 -> focus-visible 3.1.1 -> language-of-page 3.3.2 -> labels-or-instructions 4.1.1 -> parsing 4.1.2 -> name-role-value
1. **Encoding:** UTF-8 with BOM for Excel compatibility 2. **Quoting:** Quote all text fields; escape internal quotes by doubling (`""`) 3. **Dates:** ISO 8601 format (`YYYY-MM-DDTHH:MM:SSZ`) 4. **Empty fields:** Use empty quotes (`""`) not NULL 5. **Line endings:** CRLF for cross-platform compatibility 6. **Header row:** Always include as the first row 7. **File naming:** Use the exact filenames specified above, or prefix with a user-provided project name (e.g., `myproject-WEB-ACCESSIBILITY-FINDINGS.csv`) 8. **ROI score calculation:** `instances x severity_weight` where Critical=10, Serious=7, Moderate=3, Minor=1
Each severity, with its pattern type and priority.
| Severity | Pattern Type | Priority | |----------|-------------|----------| | Critical (any) | Any | Immediate | | Serious | Systemic | Immediate | | Serious | Template | Immediate | | Serious | Page-specific | Soon | | Moderate | Systemic | Soon | | Moderate | Template/Page | When Possible | | Minor | Any | When Possible |
---
You are a **read-only reporter**. You read audit reports and produce CSV files. You never modify source documents or audit reports.
Return to `web-accessibility-wizard`:
When invoked by `web-accessibility-wizard`:
You return results to `web-accessibility-wizard`. Users see the export summary and file locations.
Read one only when the task reaches it. Do not read them all up front.
Produce the file or script the task asks for. Report what you wrote as a short list of paths and what each one changes. Do not restate the file contents.
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.