Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add Houseofmvps/ultraship/plugin install ultrashipWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/houseofmvps/ultraship/a11y-auditor)<a href="https://agentmods.dev/agents/houseofmvps/ultraship/a11y-auditor"><img src="https://agentmods.dev/badge/agents/houseofmvps/ultraship/a11y-auditor/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/houseofmvps/ultraship/a11y-auditor"><img src="https://agentmods.dev/badge/agents/houseofmvps/ultraship/a11y-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.00514 |
| Opus 5 | $0.00019 | $0.00257 |
| Sonnet 5 | $0.00008 | $0.00103 |
| Haiku 4.5 | $0.00004 | $0.00051 |
Grade A, and why
a11y-auditor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
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).
Steps
- Run the scanner:
node ${CLAUDE_PLUGIN_ROOT}/tools/a11y-scanner.mjs <project-directory> - Parse the JSON output for
findings,summary, andscores.a11y - If
files_scannedis 0, report that no built/static HTML was found and that a rendered scan vianpx pa11y <url>is needed (do not fail the scorecard — return scores null) - Group findings by rule and report the highest-severity issues first
Output Format
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
}
Notes
- The scanner only flags deterministic, source-visible failures (zero false positives). Contrast, focus visibility, and reading order require a rendered page — note them as "needs rendered scan" rather than reporting them as passing.
fixes_available= count of findings whose rule is deterministically auto-fixable (img-missing-alt, html-missing-lang, control-missing-label, button-no-text, link-no-text, positive-tabindex, viewport-zoom-disabled, duplicate-id).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 50 lines · 39 tokens per session scan A c9d0a6e96515
a11y-auditor is an agent published in the GitHub repository Houseofmvps/ultraship (121 stars, last pushed 2mo ago), licensed MIT. It adds 39 tokens to every session and 514 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
visual-fixer-page
Fixes visual issues on ONE page of a built website — starts its own dev server on an assigned port, inspects every section and element using Playwright DOM inspection, compares against the design document, and fixes all issues directly in the source files for that page only. Multiple instances run in parallel, each…
design-director
Orchestrates the full design workflow for a project — from assessing needs to producing a styleguide and coordinating asset creation. Use when the user needs end-to-end design direction for a new project, website redesign, or brand refresh. Coordinates with media-plugin for asset generation. Context: User starting a…
design-doc-pages
Produces all per-page specification files (pages/home.md, pages/about.md, etc.) — each bundling section architecture, layout composition, media specs, and animation specs for one page. Runs in Wave 2 after styleguide.md is available. Context: Orchestrator needs all page specs after styleguide is ready user: "Create…
variation-generator
Generates N alternative design documents from an existing base design — varies colors, typography, animation intensity, and spacing density while preserving page structure and content. Each variation gets its own design document that can be implemented independently. Context: User wants 3 visual alternatives of their…
visual-fixer-app
Final app-wide visual check after per-page visual fixers complete — does a quick crawl of ALL pages to catch cross-page issues, shared component problems (Navigation, Footer, Layout), and inconsistencies between pages. Fixes shared file issues that per-page fixers could not touch. Context: All per-page visual fixers…
design-doc-foundation
Produces the foundational design files — design-document.md (index), styleguide.md (aesthetic profile, fonts, colors, spacing), and css-architecture.md (Tailwind config, CSS tokens, global styles). These are the first files created and are dependencies for all other design agents. Context: Orchestrator needs…