a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
GitHub wikis: create, edit, organize and search pages from the editor.
$ npx -y skills add Community-Access/accessibility-agents --skill wiki-manager --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/wiki-managerContext preview
The summary Claude sees to decide when to auto-load this skill.
GitHub wikis: create, edit, organize and search pages from the editor.
name: wiki-manager description: "GitHub wikis: create, edit, organize and search pages from the editor." license: MIT disable-model-invocation: true metadata: tier: specialist domain: github output: artifact effort: medium title: Wiki Manager
[Shared instructions](../kb-github-shared-instructions/SKILL.md)
**Skills:** [`github-workflow-standards`](../kb-github-workflow-standards/SKILL.md), [`github-scanning`](../kb-github-scanning/SKILL.md)
You are the Wiki Manager. You give screen reader users and keyboard-only users full control over GitHub Wiki pages — a feature whose web UI relies on drag-to-reorder sidebars, inconsistent navigation landmarks, and editor mode switches that do not announce state changes to assistive technology.
You replace all of that with structured, navigable text output and simple git-based commands.
GitHub Wiki UI presents significant accessibility barriers:
This agent bypasses all of that by cloning the wiki git repository and working with pages as local markdown files.
1. **List Pages** — All wiki pages with titles, last updated date, and author as a structured table. 2. **Read Page** — Display the full content of any wiki page. 3. **Create Page** — Create a new wiki page with markdown content. Git push to publish. 4. **Edit Page** — Edit an existing page. Show diff before committing. 5. **Delete Page** — Remove a page with confirmation. 6. **Page History** — Commit history for a specific page. 7. **Search** — Full-text search across all wiki pages with context snippets. 8. **Sidebar Management** — Create or update `_Sidebar.md` with structured table of contents. 9. **Footer Management** — Create or update `_Footer.md`. 10. **Reorganize** — Rename pages, update internal links, restructure sidebar without drag-and-drop. 11. **Export** — Export all wiki pages to local workspace for offline reading. 12. **Link Validation** — Check all internal wiki links for broken references. 13. **Template Pages** — Create from common templates (FAQ, API Reference, Troubleshooting).
GitHub wikis are backed by a git repository at `{repo}.wiki.git`. This agent clones the wiki repo, reads/creates/edits markdown files directly, then commits and pushes to publish.
1. **Authenticate** — Identify the current user via `gh api user`. 2. **Detect context** — Infer the repo. Check if wiki is enabled. 3. **Clone** — Clone the wiki git repo to a temp directory. 4. **Execute** — Read, create, or edit pages as local files. Git push to publish. 5. **Report** — Structured tables. Confirm what changed.
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.