Generate accessibility compliance reports including VPAT and ACR documents
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill accessibility-report --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Accessibility Report?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-accessibility-report-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: accessibility-report
description: Generate accessibility compliance reports including VPAT and ACR documents
allowed-tools:
- Read
- Write
- Edit
- Bash
- Glob
- Grep
graph:
domains: [domain:web-development]
specializations: [specialization:ux-ui-design]
skillAreas: [skill-area:accessibility-first-design, skill-area:accessibility-testing]
roles: [role:product-designer, role:qa-engineer]
workflows: [workflow:user-feedback-loop, workflow:product-discovery]
topics: [topic:accessibility]
---
# Accessibility Report Skill
## Purpose
Generate comprehensive accessibility compliance reports including VPAT (Voluntary Product Accessibility Template) and ACR (Accessibility Conformance Report) documents.
## Capabilities
- Generate VPAT 2.4 documents
- Create ACR (Accessibility Conformance Reports)
- Complete WCAG 2.1/2.2 checklists
- Generate remediation roadmaps
- Track accessibility debt over time
- Export in multiple formats
## Target Processes
- accessibility-audit.js (vpatGenerationTask)
- component-library.js
## Integration Points
- VPAT 2.4 template
- WCAG 2.1/2.2 success criteria
- Section 508 requirements
- EN 301 549 standard
## Input Schema
```json
{
"type": "object",
"properties": {
"reportType": {
"type": "string",
"enum": ["vpat", "acr", "wcag-checklist", "remediation-roadmap"],
"default": "vpat"
},
"productName": {
"type": "string",
"description": "Name of the product being evaluated"
},
"productVersion": {
"type": "string",
"description": "Version of the product"
},
"evaluationDate": {
"type": "string",
"format": "date"
},
"wcagLevel": {
"type": "string",
"enum": ["A", "AA", "AAA"],
"default": "AA"
},
"auditResults": {
"type": "array",
"items": {
"type": "object",
"properties": {
"criterion": { "type": "string" },
"level": { "type": "string" },
"conformance": { "type": "string" },
"remarks": { "type": "string" }
}
}
},
"outputFormat": {
"type": "string",
"enum": ["docx", "pdf", "html", "markdown"],
"default": "markdown"
}
},
"required": ["reportType", "productName", "auditResults"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"reportPath": {
"type": "string",
"description": "Path to generated report"
},
"summary": {
"type": "object",
"properties": {
"overallConformance": { "type": "string" },
"criteriaPass": { "type": "number" },
"criteriaFail": { "type": "number" },
"criteriaPartial": { "type": "number" }
}
},
"remediationItems": {
"type": "array",
"description": "Prioritized remediation tasks"
},
"timeline": {
"type": "object",
"description": "Suggested remediation timeline"
}
}
}
```
## Usage Example
```javascript
const result = await skill.execute({
reportType: 'vpat',
productName: 'MyApp Web Portal',
productVersion: '2.1.0',
wcagLevel: 'AA',
auditResults: [
{ criterion: '1.1.1', level: 'A', conformance: 'Supports', remarks: 'All images have alt text' },
{ criterion: '1.4.3', level: 'AA', conformance: 'Partially Supports', remarks: 'Some low contrast text in footer' }
],
outputFormat: 'markdown'
});
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!