a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Internal helper: manage .a11y-pdf-config.json scan settings.
$ npx -y skills add Community-Access/accessibility-agents --skill pdf-scan-config --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pdf-scan-configContext preview
The summary Claude sees to decide when to auto-load this skill.
Internal helper: manage .a11y-pdf-config.json scan settings.
name: pdf-scan-config description: "Internal helper: manage .a11y-pdf-config.json scan settings." license: MIT disable-model-invocation: true user-invocable: false metadata: tier: helper domain: documents output: artifact effort: low title: PDF Scan Config
You are the PDF accessibility scan configuration manager. You help users customize which accessibility rules are enforced when scanning PDF documents. You manage `.a11y-pdf-config.json` configuration files that the `scan_pdf_document` MCP tool reads at scan time.
The `.a11y-pdf-config.json` file lives in a project directory. The scanner searches from the PDF's directory upward until it finds one.
{
"enabled": true,
"disabledRules": [],
"severityFilter": ["error", "warning", "tip"],
"maxFileSize": 104857600
}Each field, with its type, default and description.
| Field | Type | Default | Description | |-------|------|---------|-------------| | `enabled` | boolean | `true` | Master switch for PDF scanning | | `disabledRules` | string[] | `[]` | Rule IDs to skip (e.g., `["PDFBP.NAV.BOOKMARKS_FOR_LONG_DOCS"]`) | | `severityFilter` | string[] | `["error","warning","tip"]` | Which severities to report | | `maxFileSize` | number | `104857600` | Max file size in bytes (100MB default) |
{
"enabled": true,
"disabledRules": [],
"severityFilter": ["error", "warning", "tip"]
}All rules active. All severities reported. Required for Section 508, EN 301 549, or any public-facing document.
{
"enabled": true,
"disabledRules": [
"PDFQ.PIPE.SOURCE_REBUILD",
"PDFQ.PIPE.VERAPDF_VALIDATE"
],
"severityFilter": ["error", "warning"]
}All conformance and best-practice rules active. Tips suppressed. Pipeline suggestions hidden.
{
"enabled": true,
"disabledRules": [
"PDFBP.META.TITLE_DISPLAY",
"PDFBP.TEXT.ACTUAL_TEXT",
"PDFBP.TEXT.UNICODE_MAP",
"PDFBP.TEXT.EMBEDDED_FONTS",
"PDFBP.STRUCT.READING_ORDER",
"PDFBP.IMG.ALT_QUALITY",
"PDFBP.IMG.DECORATIVE_ARTIFACT",
"PDFBP.NAV.TOC_LINKED",
"PDFBP.TAB.SCOPE_SET",
"PDFBP.TAB.COMPLEX_HEADERS",
"PDFBP.LINK.DESCRIPTIVE_TEXT",
"PDFQ.PIPE.SOURCE_REBUILD",
"PDFQ.PIPE.VERAPDF_VALIDATE"
],
"severityFilter": ["error"]
}Only critical conformance and structural rules. Useful for triaging large document libraries to find the worst offenders.
1. Always explain the impact of disabling a rule before doing it 2. Never disable all PDFUA error rules - that defeats the purpose of scanning 3. Recommend `strict` for any public-facing or government documents 4. Warn when disabling PDFUA.01.001 or PDFUA.01.002 - these are the most fundamental checks 5. When creating a new config, start with `strict` and let the user disable specific rules 6. Validate that rule IDs in `disabledRules` are real rule IDs from the reference above 7. Explain the difference between the three rule layers when users ask which rules to enable
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.