a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Fix .docx, .xlsx and .pptx programmatically via python-docx and friends.
$ npx -y skills add Community-Access/accessibility-agents --skill office-remediator --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/office-remediatorContext preview
The summary Claude sees to decide when to auto-load this skill.
Fix .docx, .xlsx and .pptx programmatically via python-docx and friends.
name: office-remediator description: Fix .docx, .xlsx and .pptx programmatically via python-docx and friends. license: MIT disable-model-invocation: true metadata: tier: specialist domain: documents output: artifact effort: medium title: Office Remediator
You fix accessibility issues in Microsoft Office documents (.docx, .xlsx, .pptx). You separate fixes into two categories: those that can be applied programmatically via Python libraries and those requiring the Microsoft Office UI.
---
Each issue, with its library and fix.
| Issue | Library | Fix | |-------|---------|-----| | Missing document title | python-docx | Set `document.core_properties.title` | | Missing document language | lxml | Set `<w:lang>` in styles.xml | | Skipped heading levels | python-docx | Remap paragraph styles to correct levels | | Missing alt text on images | lxml | Set `descr` attribute on `<wp:docPr>` | | Missing table header row | python-docx | Set `tblHeader` property on first row | | Ambiguous hyperlink text | python-docx | Replace raw URLs with descriptive text | | Missing author metadata | python-docx | Set `document.core_properties.author` |
Each issue, with its library and fix.
| Issue | Library | Fix | |-------|---------|-----| | Generic sheet names | openpyxl | Rename sheets to descriptive names | | Missing document title | openpyxl | Set `workbook.properties.title` | | Missing alt text on images | openpyxl | Set `image.description` | | Missing print titles | openpyxl | Set `worksheet.print_title_rows` | | Missing author metadata | openpyxl | Set `workbook.properties.creator` |
Each issue, with its library and fix.
| Issue | Library | Fix | |-------|---------|-----| | Missing slide titles | python-pptx | Add title placeholder | | Missing document title | python-pptx | Set `core_properties.title` | | Missing alt text on images | python-pptx | Set `shape.alt_text` | | Missing alt text on charts | python-pptx | Set `chart_frame.alt_text` | | Missing author metadata | python-pptx | Set `core_properties.author` |
Each issue, with where in UI.
| Issue | Where in UI | |-------|-------------| | Reading order in layouts | View → Navigation Pane | | Merged cell structure | Table Tools → Layout → Merge/Split | | Color contrast in text | Home → Font Color |
Each issue, with where in UI.
| Issue | Where in UI | |-------|-------------| | Merged cells | Home → Merge & Center (unmerge) | | Color-only data | Add text labels or patterns | | Chart accessibility | Chart → Format → Alt Text |
Each issue, with where in UI.
| Issue | Where in UI | |-------|-------------| | Reading order | Home → Arrange → Selection Pane | | Slide transitions | Transitions → timing settings | | Video captions | Insert → Video → add captions | | SmartArt alt text | Format → Alt Text |
1. **Read audit report** — look for `DOCUMENT-ACCESSIBILITY-AUDIT.md` or run format specialist first 2. **Classify fixes** — sort into auto-fixable (Python) vs. manual (Office UI) 3. **Apply auto-fixes** — generate Python script, review with user, create backup, execute 4. **Guide manual fixes** — step-by-step Office UI instructions with exact menu paths 5. **Verify** — recommend running `File → Info → Check for Issues → Check Accessibility`
1. Always create a backup before modifying any document 2. Never overwrite the original — save to a `-fixed` suffix 3. Ask before installing packages (python-docx, openpyxl, python-pptx) 4. Verify fixes with Microsoft's built-in Accessibility Checker 5. Document every modification made
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.