accessibility-check

accessibility-check is a command for Claude Code from nyldn/claude-dolphin. It costs 10 tokens per session (1,625 once invoked), scanned A, original, MIT.

A focused check of a web component or file against WCAG 2.2 AA, a widely used accessibility standard. It reviews alternatives for images, semantic structure, reading order, link and error indicators, and text contrast.

In plain words
What is it for?
Use it to review image alt text, icon buttons, headings, lists, tables, form labels, DOM order, non-color indicators, and minimum text contrast.
Why use it?
It helps identify barriers that can prevent people with disabilities from using a website. The checklist turns accessibility requirements into specific code checks.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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 commands/nyldn/claude-dolphin/accessibility-check
Clone the repo
git clone --depth 1 https://github.com/nyldn/claude-dolphin

Made for: Claude Code.

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-check

README.md
[![agentmods](https://agentmods.dev/badge/commands/nyldn/claude-dolphin/accessibility-check.svg)](https://agentmods.dev/commands/nyldn/claude-dolphin/accessibility-check)
Your own site
<a href="https://agentmods.dev/commands/nyldn/claude-dolphin/accessibility-check"><img src="https://agentmods.dev/badge/commands/nyldn/claude-dolphin/accessibility-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 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,625 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.1 $0.00010 $0.01625
Opus 5 $0.00005 $0.00813
Sonnet 5 $0.00002 $0.00325
Haiku 4.5 $0.00001 $0.00162

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

Security

Grade A, and why

accessibility-check 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 6d 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.

commands/accessibility-check.md · 204 lines

How it starts

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

Accessibility Check Command

Perform focused WCAG 2.2 AA compliance audit on the specified component or file.

WCAG 2.2 AA Checklist

Read the target file and evaluate against each criterion below.

1. Perceivable

1.1 Text Alternatives
  • 1.1.1 Non-text Content - All images have alt text
    • Check: <img> elements have alt attribute
    • Check: Icon buttons have aria-label or visible text
    • Check: Decorative images have alt=""
1.3 Adaptable
  • 1.3.1 Info and Relationships - Semantic structure

    • Check: Headings use h1-h6 appropriately
    • Check: Lists use ul/ol/dl
    • Check: Tables have th headers
    • Check: Forms have proper label associations
  • 1.3.2 Meaningful Sequence - Reading order logical

    • Check: DOM order matches visual order
1.4 Distinguishable
  • 1.4.1 Use of Color - Color not sole indicator

    • Check: Links have underline or other indicator
    • Check: Errors not indicated by color alone
    • Check: Required fields not indicated by color alone
  • 1.4.3 Contrast (Minimum) - Text contrast ratios

    • Check: Body text >= 4.5:1 against background
    • Check: Large text (18px+) >= 3:1
    • Check: Bold text (14px+) >= 3:1
  • 1.4.11 Non-text Contrast - UI element contrast

    • Check: Form inputs borders >= 3:1
    • Check: Icons >= 3:1
    • Check: Focus indicators >= 3:1
  • 1.4.12 Text Spacing - Adjustable spacing

    • Check: Content readable with 1.5x line height
    • Check: No overflow with 2x paragraph spacing

2. Operable

2.1 Keyboard Accessible
  • 2.1.1 Keyboard - All functionality via keyboard

    • Check: Interactive elements have tabIndex or are native
    • Check: onClick handlers have onKeyDown equivalents
    • Check: Custom widgets support expected keys
  • 2.1.2 No Keyboard Trap - Can navigate away

    • Check: Focus can leave all components
    • Check: Modals have escape key handler
2.4 Navigable
  • 2.4.3 Focus Order - Logical focus sequence
    • Check: tabIndex values are 0 or -1 (not positive)
    • Check: Focus order matches visual layout

Read the full file on GitHub · 204 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. 6d ago First seen · 204 lines · 10 tokens per session scan A abdb88990818

Subscribe to this mod's changes

accessibility-check is a command published in the GitHub repository nyldn/claude-dolphin (9 stars, last pushed 13d ago), licensed MIT. It adds 10 tokens to every session and 1,625 once invoked, about $0.0001 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 commands, from other repositories

replan-remaining-work

Command "replan-remaining-work" from udecode/plate, covering command: re-plan remaining work, when to run, hard rule, invocation and refresh afterward.

udecode/plate · 0 tokens

database-setup

Use when a project needs to store data and has no database yet. Setting up Supabase, creating tables, writing queries, and connecting them to the frontend. Written for designers.

imsaif/design-with-claude · 36 tokens

interaction-designer

Use when deciding how something should behave rather than how it looks. Click and tap targets, gestures, keyboard paths, loading and empty and error states, and the feedback each action gives.

imsaif/design-with-claude · 37 tokens

form-designer

Use when a form is losing people. Too many fields, validation that interrupts typing, unclear required fields, a multi-step flow with no sense of progress, or inputs with no labels.

imsaif/design-with-claude · 37 tokens

responsive-design-specialist

Use when a layout breaks between sizes. Arbitrary breakpoints, type that does not scale, images that blow out the grid, or a desktop design retrofitted onto mobile.

imsaif/design-with-claude · 36 tokens

git-workflow

Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern git best practices including Conventional Commits, automated testing, and structured PR creation.

HermeticOrmus/LibreUIUX-Claude-Code · 0 tokens