From rolepod-uiproof
Run an axe-core accessibility audit on a page against WCAG-A / WCAG-AA / WCAG-AAA and return issues grouped by severity with WCAG references and fix links. v0.2 web only; scope='page' only.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rolepod-uiproof:audit-a11yThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Single-backend skill. Calls **`audit_a11y`** on the rolepod-uiproof
Single-backend skill. Calls audit_a11y on the rolepod-uiproof
MCP server. No fallback (D-024).
target — URL to audit.level — wcag-a | wcag-aa | wcag-aaa. Default wcag-aa.report_format — json | markdown. Default json.run_id — folder under ./.rolepod-uiproof/artifacts/.counts — issue counts by severity.issues[] — each { wcag_ref, severity, ref, description, fix_suggestion, target }.report_path — path to the JSON or markdown report.audit_a11y input from the user's intent:
open: { platform: 'web', url: <target> }level, report_format.Run artifacts are saved under:
.rolepod-uiproof/artifacts/<prefix>_<ts>_<uuid>/rolepod parent (detected via the marker file <git-root>/.rolepod/parent-active written by the parent's SessionStart hook): <git-root>/.rolepod/evidence/<ts>-rolepod-uiproof-<skill>/Either way the run directory contains a manifest.json per Extension Protocol v1, so the parent's check-work skill can aggregate results into the verify phase report. Standalone users can read the manifest themselves — same shape.
Surface plainly:
The
/audit-a11yskill needs the rolepod-uiproof MCP server, which is not currently available. Confirm the plugin is installed and try again.
Do not attempt another backend (D-024).
{
"open": { "platform": "web", "url": "https://example.com" },
"level": "wcag-aa",
"report_format": "json"
}
Returns:
{
"run_id": "audit_…",
"counts": { "critical": 0, "serious": 0, "moderate": 0, "minor": 0 },
"issues": [],
"report_path": ".rolepod-uiproof/artifacts/audit_…/report.json"
}
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub nuttaruj/rolepod-uiproof --plugin rolepod-uiproof