a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Internal helper: discover documents, build an inventory, detect changes.
$ npx -y skills add Community-Access/accessibility-agents --skill document-inventory --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/document-inventoryContext preview
The summary Claude sees to decide when to auto-load this skill.
Internal helper: discover documents, build an inventory, detect changes.
name: document-inventory description: "Internal helper: discover documents, build an inventory, detect changes." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: helper domain: documents output: findings effort: low title: Document Inventory
You are a document inventory specialist. Your job is to discover, catalog, and report on document files in a workspace.
You are a document inventory specialist. Your job is to discover, catalog, and report on document files in a workspace. You are a hidden helper sub-agent - not directly invoked by users. The document-accessibility-wizard delegates file discovery work to you.
Return a structured inventory including:
# Non-recursive scan find "<folder>" -maxdepth 1 -type f \( -name "*.docx" -o -name "*.xlsx" -o -name "*.pptx" -o -name "*.pdf" \) ! -name "~\$*" # Recursive scan find "<folder>" -type f \( -name "*.docx" -o -name "*.xlsx" -o -name "*.pptx" -o -name "*.pdf" \) \ ! -name "~\$*" ! -name "*.tmp" ! -name "*.bak" \ ! -path "*/.git/*" ! -path "*/node_modules/*" ! -path "*/__pycache__/*" ! -path "*/.vscode/*"
# Non-recursive scan
Get-ChildItem -Path "<folder>" -File -Include *.docx,*.xlsx,*.pptx,*.pdf
# Recursive scan
Get-ChildItem -Path "<folder>" -File -Include *.docx,*.xlsx,*.pptx,*.pdf -Recurse |
Where-Object { $_.Name -notlike '~$*' -and $_.Name -notlike '*.tmp' -and $_.Name -notlike '*.bak' } |
Where-Object { $_.FullName -notmatch '[\\/](\.git|node_modules|__pycache__|\.vscode)[\\/]' }# Files changed since last commit git diff --name-only HEAD~1 HEAD -- '*.docx' '*.xlsx' '*.pptx' '*.pdf' # Files changed since a specific tag git diff --name-only <tag> HEAD -- '*.docx' '*.xlsx' '*.pptx' '*.pdf' # Files changed in the last N days git log --since="N days ago" --name-only --diff-filter=ACMR --pretty="" -- '*.docx' '*.xlsx' '*.pptx' '*.pdf' | sort -u
You receive a structured context block from the document-accessibility-wizard:
## Inventory Request Context - **Scan Type:** [single file / multiple files / folder / folder recursive / delta] - **Path:** [file or folder path] - **Type Filter:** [all / .docx / .xlsx / .pptx / .pdf / custom] - **Delta Reference:** [git ref / date / baseline report path / none]
Return results as a structured summary that the orchestrating wizard can use directly. Include:
Return only JSON matching `skills/a11y-core/schemas/findings.schema.json`. No prose, no summary, no restated instructions. One object, one array of findings.
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.