wcag-auditor

wcag-auditor is a skill for Claude Code from ncklrs/claude-chrome-user-testing. It costs 0 tokens per session (2,519 once invoked), scanned A, original, MIT.

An accessibility checker for web pages based on WCAG 2.1, guidelines for making websites usable by people with disabilities. It checks the Level A and AA requirements, from basic to commonly expected conformance.

In plain words
What is it for?
Use it to audit pages against WCAG’s four areas: perceivable, operable, understandable, and robust. It can inspect page structure and elements such as images for accessibility problems.
Why use it?
It finds barriers that can prevent people from perceiving, navigating, understanding, or operating a site. It also provides guidance for fixing the reported issues.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the user-testing-agent plugin — 14 skills, 10 commands shipped together

Good fit Use it to audit pages against WCAG’s four areas: perceivable, operable, understandable, and robust. It can inspect page structure and elements such as images for accessibility problems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ncklrs/claude-chrome-user-testing/wcag-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 ncklrs/claude-chrome-user-testing --skill wcag-auditor
Clone the repo
git clone --depth 1 https://github.com/ncklrs/claude-chrome-user-testing

Made for: Claude Code.

Or install user-testing-agent, the plugin that ships this one along with the rest of its 14 skills, 10 commands.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ncklrs/claude-chrome-user-testing/wcag-auditor/github.svg)](https://agentmods.dev/skills/ncklrs/claude-chrome-user-testing/wcag-auditor)
Your own site
<a href="https://agentmods.dev/skills/ncklrs/claude-chrome-user-testing/wcag-auditor"><img src="https://agentmods.dev/badge/skills/ncklrs/claude-chrome-user-testing/wcag-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 wcag-auditor

Your own site · 80×15
<a href="https://agentmods.dev/skills/ncklrs/claude-chrome-user-testing/wcag-auditor"><img src="https://agentmods.dev/badge/skills/ncklrs/claude-chrome-user-testing/wcag-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,519 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.00000 $0.02519
Opus 5 $0.00000 $0.01260
Sonnet 5 $0.00000 $0.00504
Haiku 4.5 $0.00000 $0.00252

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

Security

Grade A, and why

wcag-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 10d 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.

skills/wcag-auditor/SKILL.md · 403 lines

How it starts

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

WCAG Auditor Skill

This skill provides WCAG 2.1 accessibility audit capabilities, including criteria definitions, check implementations, and scoring logic.

Purpose

Systematically evaluate web pages against WCAG 2.1 Level A and AA success criteria to identify accessibility barriers and provide remediation guidance.

WCAG 2.1 Overview

WCAG is organized around four principles (POUR):

  • Perceivable: Information must be presentable to users
  • Operable: Interface must be usable
  • Understandable: Information and operation must be understandable
  • Robust: Content must be interpretable by assistive technologies

Conformance Levels

Level Description Requirements
A Minimum Essential accessibility
AA Standard Most common requirement
AAA Enhanced Highest accessibility

This skill implements Level A and AA checks.

Check Implementation Guide

Using browser_evaluate for DOM Checks

Most WCAG checks can be performed via JavaScript evaluation:

// Example: Check for images without alt text
(function() {
  const images = document.querySelectorAll('img');
  const violations = [];

  images.forEach(function(img) {
    if (!img.hasAttribute('alt')) {
      violations.push({
        element: img.outerHTML.substring(0, 100),
        selector: getSelector(img)
      });
    }
  });

  return { passed: violations.length === 0, violations: violations };
})();

Using browser_snapshot for Accessibility Tree

The accessibility snapshot provides:

  • ARIA roles and properties
  • Accessible names
  • Focusable elements
  • Heading structure

Parse the snapshot to verify semantic structure.

Using browser_press_key for Keyboard Tests

Tab through the page to verify:

  • All interactive elements are reachable
  • Focus order is logical
  • No focus traps exist

Criteria Reference

Level A Criteria

1.1.1 Non-text Content

Requirement: All non-text content has a text alternative.

Read the full file on GitHub · 403 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 403 lines · 0 tokens per session scan A 13a9d97ee774

Subscribe to this mod's changes

wcag-auditor is a skill published in the GitHub repository ncklrs/claude-chrome-user-testing (20 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,519 tokens. 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 skills, from other repositories

scroll-craft

Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…

nateherkai/scroll-craft · 177 tokens

accessibility

Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

addyosmani/web-quality-skills · 51 tokens

accessibility

Use when making a web UI conform to WCAG 2.2 Level AA — axe-core or Lighthouse a11y violations, keyboard operability, focus management, ARIA roles/names/live regions, contrast, tap-target size. NOT palette or visual intent (that is design), NOT test-runner setup (that is testing-web), NOT LCP/page-speed (that is…

ericrisco/rsc-harness · 86 tokens

data-display-and-selection

Complex data deserves multiple view modes — grid, list, table — chosen by the user based on their task. Row and item selection should use large hit areas (the whole row or card, not just a checkbox). Selected state is communicated through a subtle background colour shift. Mass actions appear when items are selected.…

dembrandt/dembrandt-skills · 85 tokens

information-architecture

In large applications, information architecture determines whether users can find, understand, and act on data. Naming matters. The UI should mirror the data model and signal how data can be transformed. Dangerous or irreversible changes always require a confirm dialog. Use when designing navigation, naming entities…

dembrandt/dembrandt-skills · 71 tokens

generate-ui-from-brand

Pipeline skill — turns a URL or DESIGN.md into a concrete UI structure with decisions already made. Extracts live design tokens, normalizes them into a semantic system, applies UX principles, and outputs an actionable UI spec. Use when building UI for an existing brand from scratch, auditing a design system, or…

dembrandt/dembrandt-skills · 72 tokens