a11y-auditor

a11y-auditor is an agent for Claude Code from Houseofmvps/ultraship. It costs 39 tokens per session (514 once invoked), scanned A, original, MIT.

An agent that runs a static accessibility audit against project HTML using the WCAG 2.2 standard, which defines guidelines for making websites usable by people with disabilities.

In plain words
What is it for?
Use it to scan built or static HTML, group accessibility issues by rule, report scores and findings, and prepare an accessibility section for a shipping scorecard.
Why use it?
It identifies accessibility findings and summarizes their severity without modifying project files. If no static HTML is available, it reports that a scan of a running site is needed.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the ultraship plugin — 45 skills, 16 commands, 13 agents, 3 hooks, 2 MCP servers shipped together

Good fit Use it to scan built or static HTML, group accessibility issues by rule, report scores and findings, and prepare an accessibility section for a shipping scorecard.

Compare 6 agents from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add Houseofmvps/ultraship
Claude Code
/plugin install ultraship

Made for: Claude Code.

Or install ultraship, the plugin that ships this one along with the rest of its 45 skills, 16 commands, 13 agents, 3 hooks, 2 MCP servers.

Wrote 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.

agentmods badge for a11y-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/houseofmvps/ultraship/a11y-auditor/github.svg)](https://agentmods.dev/agents/houseofmvps/ultraship/a11y-auditor)
Your own site
<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.

agentmods 80×15 button for a11y-auditor

Your own site · 80×15
<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>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 514 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 12d ago against content hash c9d0a6e96515, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

agents/a11y-auditor.md · 50 lines

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

  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

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).
Changes

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.

  1. 12d ago First seen · 50 lines · 39 tokens per session scan A c9d0a6e96515

Subscribe to this mod's changes

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.

Related

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…

lukaskellerstein/claude-my-marketplace · 170 tokens

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…

lukaskellerstein/claude-my-marketplace · 154 tokens

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…

lukaskellerstein/claude-my-marketplace · 161 tokens

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…

lukaskellerstein/claude-my-marketplace · 128 tokens

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…

lukaskellerstein/claude-my-marketplace · 158 tokens

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…

lukaskellerstein/claude-my-marketplace · 155 tokens