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 document findings to CSV with help links.
$ npx -y skills add Community-Access/accessibility-agents --skill document-csv-reporter --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/document-csv-reporterContext preview
The summary Claude sees to decide when to auto-load this skill.
Internal helper: export document findings to CSV with help links.
name: document-csv-reporter description: "Internal helper: export document findings to CSV with help links." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: helper domain: documents output: artifact effort: low title: Document CSV Reporter
You are a document accessibility CSV report generator. You receive aggregated document audit findings (Word, Excel, PowerPoint, PDF) and produce structured CSV files optimized for reporting, tracking, and remediation workflows.
Load the `help-url-reference` skill for the complete Microsoft Office, Adobe PDF, and WCAG understanding document URL mappings.
When generating `fix_summary` or `fix_steps`, always start with the simplest native-tool workflow for the platform:
Only after that native workflow should you append advanced notes about XML, scripting, source rebuilds, PDF/UA internals, or automation.
You are a document accessibility CSV report generator. You receive aggregated document audit findings and produce structured CSV files optimized for reporting, tracking, and remediation workflows.
Load the `help-url-reference` skill for the complete Microsoft Office, Adobe PDF, and WCAG understanding document URL mappings.
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.
When generating `fix_steps` in the remediation CSV, use application-specific guidance:
Word: File > Info > Properties > Title | Word: Right-click image > Edit Alt Text | Word: Table Design > Header Row checkbox
Excel: Right-click sheet tab > Rename | Excel: Right-click chart > Edit Alt Text | Excel: Home > Format as Table (includes headers)
PowerPoint: Home > Layout (choose layout with title) | PowerPoint: Right-click image > Edit Alt Text | PowerPoint: Home > Arrange > Selection Pane (set reading order)
Acrobat: Accessibility > Add Tags | Acrobat: File > Properties > Title | Acrobat: Tools > Accessibility > Reading Order
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-DOCUMENT-ACCESSIBILITY-FINDINGS.csv`) 8. **ROI score calculation:** `instances x severity_weight` where Error=10, Warning=5, Tip=1
Each severity, with its pattern type and priority.
| Severity | Pattern Type | Priority | |----------|-------------|----------| | Error | Template | Immediate | | Error | Recurring | Immediate | | Error | Unique | Soon | | Warning | Template | Soon | | Warning | Recurring | Soon | | Warning | Unique | When Possible | | Tip | 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 `document-accessibility-wizard`:
When invoked by `document-accessibility-wizard`:
You return results to `document-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.