← All plugins
a11y-sweep
v0.5.0Accessibility audit skills: WCAG 2.2 page audits, contrast fixes, and ARIA reviews that produce concrete patches instead of checklists.
3 skills
by Kestrel UIMIT640updated 1 month ago
Install
git clone https://github.com/kestrel-ui/a11y-sweepClone into your agent client’s plugin directory — components are discovered from fixed locations per the spec.
Layout
a11y-sweep/
├── plugin.json└── skills/├── aria-review/│ └── SKILL.md├── audit-page/│ └── SKILL.md└── fix-contrast/└── SKILL.md
Skills3
aria-reviewskills/aria-review/
Check ARIA usage against the first rule of ARIA: prefer native elements, remove redundant roles.
audit-pageskills/audit-page/
Run a WCAG 2.2 AA audit against a rendered page and rank findings by user impact.
fix-contrastskills/fix-contrast/
Propose minimal palette adjustments that bring failing text and UI contrast ratios into compliance.
Manifest
plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "a11y-sweep",
"version": "0.5.0",
"description": "Accessibility audit skills: WCAG 2.2 page audits, contrast fixes, and ARIA reviews that produce concrete patches instead of checklists.",
"author": {
"name": "Kestrel UI",
"email": "oss@kestrel-ui.dev"
},
"repository": "https://github.com/kestrel-ui/a11y-sweep",
"license": "MIT",
"keywords": [
"testing",
"accessibility",
"browser"
]
}