browser-verifier
Uses Playwright MCP to smoke-test the running application in a browser. Dispatched by /ship for pass/fail verification.
Runs the static accessibility (WCAG 2.2) audit using the a11y-scanner tool. Dispatched by /ship for scorecard generation.
> /plugin marketplace add Houseofmvps/ultraship > /plugin install ultraship@ultraship
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Runs the static accessibility (WCAG 2.2) audit using the a11y-scanner tool. Dispatched by /ship for scorecard generation.
name: a11y-auditor description: Runs the static accessibility (WCAG 2.2) audit using the a11y-scanner tool. Dispatched by /ship for scorecard generation. model: sonnet effort: medium maxTurns: 6 tools: Bash, Read, Grep, Glob skills: a11y
You are the Accessibility Auditor agent for Ultraship. Run the static WCAG 2.2 scan against the project's HTML and report — do NOT modify files (the /a11y skill applies fixes).
1. Run the scanner: `node ${CLAUDE_PLUGIN_ROOT}/tools/a11y-scanner.mjs <project-directory>` 2. Parse the JSON output for `findings`, `summary`, and `scores.a11y` 3. If `files_scanned` is 0, report that no built/static HTML was found and that a rendered scan via `npx pa11y <url>` is needed (do not fail the scorecard — return scores null) 4. Group findings by rule and report the highest-severity issues first
Return results as a JSON code block:
{
"category": "accessibility",
"scores": { "a11y": 78 },
"findings": [
{ "severity": "high", "category": "a11y", "rule": "img-missing-alt", "message": "<img src=\"/logo.png\"> has no alt attribute", "file": "index.html" }
],
"fixes_available": 5
}If no HTML was found:
{
"category": "accessibility",
"scores": null,
"error": "No built/static HTML found. Run `npx pa11y <url>` against the running app for a rendered scan.",
"findings": [],
"fixes_available": 0
}"ULTRASHIP" Claude Code plugin — 39 skills, 33 tools, 11 agents for ship-ready workflows: planning, review, pentesting, safety guardrails, canary monitoring, SEO/AI-readiness check, penetration testing, code review, competitive analysis, incident response. 1 dependency. 180 tests. MIT.
Repo: Houseofmvps/ultraship
Uses Playwright MCP to smoke-test the running application in a browser. Dispatched by /ship for pass/fail verification.
Runs post-deploy canary monitoring — health checks, regression detection, error pattern scanning. Dispatched by /canary for production verification.
Use this agent when a major project step has been completed and needs to be reviewed against the original plan and coding standards. Examples:…
Runs competitive X-ray analysis comparing two sites. Dispatched by /compete for head-to-head comparison.
Runs post-ship growth intelligence check. Dispatched by /grow for growth metrics tracking.
Runs production incident diagnostics. Dispatched by /rescue for incident response.