accessibility-auditor

accessibility-auditor is a skill for Claude Code, Codex from OneWave-AI/ClaudeCodeUnleashed. It costs 33 tokens per session (1,941 once invoked), scanned A, original, MIT.

A website accessibility checker that looks for barriers affecting people who use keyboards, screen readers, or other assistive tools, using WCAG, the main accessibility guidelines for websites.

In plain words
What is it for?
Use it to run automated checks with tools such as Lighthouse, axe, or Pa11y, perform keyboard and screen-reader checks, and test web pages or components in React and Playwright.
Why use it?
It helps find accessibility problems that automated checks or visual inspection alone may miss, so they can be fixed before users encounter them.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to run automated checks with tools such as Lighthouse, axe…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/onewave-ai/claudecodeunleashed/accessibility-auditor
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.

Any agent
npx skills add OneWave-AI/ClaudeCodeUnleashed --skill accessibility-auditor
Clone the repo
git clone --depth 1 https://github.com/OneWave-AI/ClaudeCodeUnleashed

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/onewave-ai/claudecodeunleashed/accessibility-auditor.svg)](https://agentmods.dev/skills/onewave-ai/claudecodeunleashed/accessibility-auditor)
Your own site
<a href="https://agentmods.dev/skills/onewave-ai/claudecodeunleashed/accessibility-auditor"><img src="https://agentmods.dev/badge/skills/onewave-ai/claudecodeunleashed/accessibility-auditor.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,941 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.00033 $0.01941
Opus 5 $0.00016 $0.00971
Sonnet 5 $0.00007 $0.00388
Haiku 4.5 $0.00003 $0.00194

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

Security

Grade A, and why

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

assets/starter-skills/accessibility-auditor/SKILL.md · 300 lines

How it starts

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

Accessibility Auditor

Instructions

When auditing accessibility:

  1. Run automated checks (axe, Lighthouse)
  2. Manual keyboard testing
  3. Screen reader testing
  4. Check WCAG criteria
  5. Provide fixes

Automated Testing

# Lighthouse accessibility audit
npx lighthouse https://yoursite.com --only-categories=accessibility --view

# axe-core CLI
npx @axe-core/cli https://yoursite.com

# Pa11y
npx pa11y https://yoursite.com

React Testing Library + jest-axe

import { render } from '@testing-library/react';
import { axe, toHaveNoViolations } from 'jest-axe';

expect.extend(toHaveNoViolations);

test('Button has no accessibility violations', async () => {
  const { container } = render(<Button>Click me</Button>);
  const results = await axe(container);
  expect(results).toHaveNoViolations();
});

Playwright Accessibility Testing

import { test, expect } from '@playwright/test';
import AxeBuilder from '@axe-core/playwright';

test('page has no accessibility violations', async ({ page }) => {
  await page.goto('/');

  const results = await new AxeBuilder({ page }).analyze();
  expect(results.violations).toEqual([]);
});

WCAG Checklist

Level A (Minimum)

Perceivable
  • 1.1.1 Non-text content has alt text
  • 1.3.1 Info and relationships are programmatically determined
  • 1.3.2 Meaningful reading sequence
  • 1.4.1 Color is not the only way to convey info
Operable
  • 2.1.1 All functionality available via keyboard
  • 2.1.2 No keyboard traps
  • 2.4.1 Skip navigation link provided
  • 2.4.2 Pages have descriptive titles
  • 2.4.3 Focus order is logical
  • 2.4.4 Link purpose is clear
Understandable
  • 3.1.1 Page language is specified
  • 3.2.1 Focus doesn't cause unexpected changes
  • 3.3.1 Errors are identified and described
  • 3.3.2 Labels or instructions provided
Robust
  • 4.1.1 Valid HTML (no duplicate IDs, proper nesting)
  • 4.1.2 Name, role, value for all UI components

Read the full file on GitHub · 300 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 · 300 lines · 33 tokens per session scan A 1f1af377479e

Subscribe to this mod's changes

accessibility-auditor is a skill published in the GitHub repository OneWave-AI/ClaudeCodeUnleashed (5 stars, last pushed 6mo ago), licensed MIT. It adds 33 tokens to every session and 1,941 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 skills, from other repositories

compiler-review

Review Rust port code for port fidelity, convention compliance, and error handling. Compares against the original TypeScript source.

react/react · 27 tokens

add-session-recording

Add privacy-aware session recording and replay to React applications using the Temps SDK. Captures user interactions for playback while respecting privacy through input masking, element blocking, and GDPR-compliant consent flows. Use when the user wants to: (1) Add session recording to their app, (2) Implement session…

gotempsh/temps · 148 tokens

wcag

Expert WCAG (Web Content Accessibility Guidelines) advisor covering WCAG 2.0, 2.1, and 2.2 — the W3C international accessibility standards. Use this skill whenever a user asks about WCAG success criteria, conformance levels (A/AA/AAA), accessibility audits, POUR principles, accessibility statements, ARIA patterns…

Sushegaad/Claude-Skills-Governance-Risk-and-Compliance · 162 tokens

accessibility-auditor

Audit web pages and components for WCAG 2.2 accessibility compliance. Use when a user asks to check accessibility, find a11y issues, audit for WCAG compliance, fix screen reader problems, check color contrast, ensure keyboard navigation works, or prepare for accessibility regulations like the European Accessibility…

TerminalSkills/skills · 69 tokens

wicked-garden-product-accessibility

Use when auditing code for WCAG 2.1 AA compliance — keyboard navigation, ARIA patterns, color contrast, and semantic HTML. Produces prioritized remediation with code-level fixes. NOT for running automated a11y tools (use product:a11y command) or visual design review (use product/visual-review).

mikeparcewski/wicked-garden · 72 tokens

accessibility-audit

Audit web pages and apps for WCAG 2.1 AA accessibility compliance. Use when fixing lighthouse issues, contrast ratios, ARIA labels, or keyboard navigation.

pstuart/pstuart · 38 tokens