library/specializations/ux-ui-design/skills/accessibility-report/SKILL.md
Generate accessibility compliance reports including VPAT and ACR documents
npx skillsauth add a5c-ai/babysitter accessibility-reportInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate 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'
});
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.