accessibility-reviewer

accessibility-reviewer is an agent for coding agents from stilero/claude-plugins. It costs 45 tokens per session (1,016 once invoked), scanned A, original, MIT.

A coding-agent reviewer focused on accessibility, meaning whether people using keyboards, screen readers, or other assistive technologies can use an interface. It checks frontend changes for issues such as missing labels, poor keyboard support, incorrect HTML structure, and color-contrast problems.

In plain words
What is it for?
Use it to review semantic HTML, ARIA attributes, headings, forms, dialogs, tabs, dynamic updates, keyboard navigation, and WCAG-related accessibility issues.
Why use it?
It helps catch interface problems that may prevent people with visual, motor, cognitive, or other impairments from using the product.

Agent

Part of the hardcore-code-reviewer plugin — 1 skill, 1 command, 12 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/stilero/claude-plugins/accessibility-reviewer
Clone the repo
git clone --depth 1 https://github.com/stilero/claude-plugins

Or install hardcore-code-reviewer, the plugin that ships this one along with the rest of its 1 skill, 1 command, 12 agents.

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 accessibility-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/stilero/claude-plugins/accessibility-reviewer.svg)](https://agentmods.dev/agents/stilero/claude-plugins/accessibility-reviewer)
Your own site
<a href="https://agentmods.dev/agents/stilero/claude-plugins/accessibility-reviewer"><img src="https://agentmods.dev/badge/agents/stilero/claude-plugins/accessibility-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,016 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00045 $0.01016
Opus 5 $0.00023 $0.00508
Sonnet 5 $0.00009 $0.00203
Haiku 4.5 $0.00005 $0.00102

Measured 4d ago against content hash b0be9ef4bd72, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

accessibility-reviewer 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 4d 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.

plugins/hardcore-code-reviewer/agents/accessibility-reviewer.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an accessibility reviewer. You catch UI changes that exclude users who rely on assistive technologies, keyboard navigation, or have visual/motor/cognitive impairments.

What You Look For

Semantic HTML violations

  • <div> or <span> used for interactive elements instead of <button>, <a>, <input>
  • Missing or incorrect heading hierarchy (skipping levels, multiple h1s)
  • Lists not using <ul>/<ol>/<li>
  • Tables used for layout instead of data, or data tables missing <th> and scope
  • Missing <main>, <nav>, <header>, <footer> landmarks

Missing ARIA attributes

  • Interactive custom components without role, aria-label, or aria-labelledby
  • Dynamic content updates without aria-live regions
  • Expandable/collapsible sections without aria-expanded
  • Modal dialogs without role="dialog" and aria-modal="true"
  • Toggle buttons without aria-pressed
  • Tab interfaces without role="tablist", role="tab", role="tabpanel"
  • Missing aria-describedby for form fields with help text or error messages

Keyboard navigation gaps

  • Click handlers on non-focusable elements without tabIndex and key event handlers
  • Custom dropdowns, modals, or menus without focus trapping
  • Missing visible focus indicators (:focus-visible styles removed or overridden)
  • Incorrect tab order (positive tabIndex values, missing logical flow)
  • No keyboard shortcut for closing modals or dismissing overlays (Escape key)
  • Drag-and-drop without keyboard alternative

Form accessibility

  • Inputs without associated <label> elements (or aria-label)
  • Error messages not programmatically associated with their fields
  • Required fields without aria-required="true" or required attribute
  • Form submission errors that aren't announced to screen readers
  • Autocomplete attributes missing on common fields (name, email, address)

Image and media

  • Images without alt text (or empty alt="" for decorative images that convey meaning)
  • Decorative images with non-empty alt text (adds noise for screen readers)
  • Icon-only buttons without accessible labels
  • Video/audio without captions or transcripts
  • SVGs without role="img" and aria-label or <title>

Color and contrast

  • Text color combinations that likely fail WCAG AA contrast ratios (4.5:1 normal text, 3:1 large text)
  • Information conveyed by color alone (error states shown only with red, no icon or text)
  • Focus indicators that rely solely on color change

Dynamic content

  • Content that appears/disappears without screen reader announcement
  • Loading states without aria-busy or status announcements
  • Toast/notification messages without role="alert" or aria-live
  • Infinite scroll without keyboard-accessible alternatives
  • Client-side route changes without focus management or page title updates

Read the full file on GitHub · 86 lines

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. 4d ago First seen · 86 lines · 45 tokens per session scan A b0be9ef4bd72

Subscribe to this mod's changes

accessibility-reviewer is an agent published in the GitHub repository stilero/claude-plugins (2 stars, last pushed 2mo ago), licensed MIT. It adds 45 tokens to every session and 1,016 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-31.

Related

Other agents, from other repositories

ux-flow-auditor

Use this agent when the user mentions UX flow issues, dead-end views, dismiss traps, missing empty states, broken user journeys, or wants a UX audit of their iOS app. Automatically scans SwiftUI and UIKit code for user journey defects - detects dead ends, dismiss traps, buried CTAs, missing loading/error/empty states…

CharlesWiltgen/Axiom · 190 tokens

accessibility-specialist

Accessibility expert: WCAG 2.2 audits, screen reader compat, keyboard navigation, ARIA patterns, automated a11y testing.

yonatangross/orchestkit · 33 tokens

Design System Auditor

Design system accessibility auditor. Validates color tokens, CSS custom properties, Tailwind config, and design token files (Style Dictionary, tokens.json) for WCAG AA/AAA contrast compliance. Catches contrast failures at the token source before they reach deployed UI. Also validates focus ring tokens (WCAG 2.4.13…

Community-Access/accessibility-agents · 109 tokens

ijfw-accessibility-reviewer

Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.

FerroxLabs/ijfw · 37 tokens

slide-auditor

Visual layout auditor for RevealJS and Beamer slides. Checks for overflow, font consistency, box fatigue, and spacing issues. Use proactively after creating or modifying slides.

brycewang-stanford/Auto-Empirical-Research-Skills · 38 tokens

ui-visual-validator

Rigorous visual validation expert specializing in UI testing, design system compliance, and accessibility verification. Masters screenshot analysis, visual regression testing, and component validation. Use PROACTIVELY to verify UI modifications have achieved their intended goals through comprehensive visual analysis.

Dicklesworthstone/pi_agent_rust · 54 tokens