Generate accessibility compliance reports including VPAT and ACR documents
Generates accessibility compliance reports including VPAT and ACR documents from audit results.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerate comprehensive accessibility compliance reports including VPAT (Voluntary Product Accessibility Template) and ACR (Accessibility Conformance Report) documents.
{
"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"]
}
{
"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"
}
}
}
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'
});
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.