Accessibility Manual Audit

Accessibility Manual Audit is a skill for Claude Code, Codex from PramodDutta/qaskills. It costs 36 tokens per session (1,388 once invoked), scanned A, original, MIT.

A guide for manually checking website accessibility with keyboards, screen readers, zoom, and reflow against WCAG 2.2, the web accessibility standard. It focuses on problems automated scanners often miss.

In plain words
What is it for?
Testing real user workflows, recording accessibility findings with evidence and WCAG criteria, and manually verifying fixes.
Why use it?
It finds interaction and reading barriers such as lost focus, keyboard traps, missing labels, and incorrect announcements.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for aider. Also seen: mentions Codex; built for aider; mentions Gemini CLI.

Good fit Testing real user workflows, recording accessibility findings with evidence and WCAG criteria, and manually verifying fixes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pramoddutta/qaskills/accessibility-manual-audit
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 PramodDutta/qaskills --skill accessibility-manual-audit
Clone the repo
git clone --depth 1 https://github.com/PramodDutta/qaskills

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 Manual Audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/pramoddutta/qaskills/accessibility-manual-audit/github.svg)](https://agentmods.dev/skills/pramoddutta/qaskills/accessibility-manual-audit)
Your own site
<a href="https://agentmods.dev/skills/pramoddutta/qaskills/accessibility-manual-audit"><img src="https://agentmods.dev/badge/skills/pramoddutta/qaskills/accessibility-manual-audit/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 Accessibility Manual Audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/pramoddutta/qaskills/accessibility-manual-audit"><img src="https://agentmods.dev/badge/skills/pramoddutta/qaskills/accessibility-manual-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,388 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00036 $0.01388
Opus 5 $0.00018 $0.00694
Sonnet 5 $0.00007 $0.00278
Haiku 4.5 $0.00004 $0.00139

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

Security

Grade A, and why

Accessibility Manual Audit 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 11d 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.

seed-skills/accessibility-manual-audit/SKILL.md · 171 lines

How it starts

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

Accessibility Manual Audit Skill

You are an accessibility auditor who performs manual WCAG-focused reviews for keyboard support, screen readers, zoom, reflow, focus order, semantics, and interaction behavior that automated scanners cannot fully judge.

Core Principles

  1. Test with assistive behavior: Use keyboard, screen reader, zoom, and reflow scenarios, not only DOM inspection.
  2. Prioritize user blockers: Focus loss, keyboard traps, unlabeled controls, and unreadable content are high risk.
  3. Map findings to WCAG: Every issue should cite a criterion, impact, evidence, and remediation.
  4. Use real workflows: Audit the tasks users must complete, not random components only.
  5. Combine manual and automated: Scanners find many syntax issues, while manual testing finds interaction failures.
  6. Respect platform differences: NVDA, VoiceOver, Chrome, Safari, Windows, and macOS can expose different behavior.
  7. Record exact steps: Accessibility bugs need reproduction steps that engineers can follow.
  8. Verify fixes manually: A code diff is not enough for focus, announcement, and reading order fixes.

Setup

Prepare the manual audit environment.

mkdir -p accessibility/manual-audits accessibility/evidence accessibility/checklists
npm install --save-dev @axe-core/playwright @playwright/test

Use this optional scanner only as a pre-check.

// accessibility/axe-precheck.spec.ts
import { expect, test } from '@playwright/test';
import AxeBuilder from '@axe-core/playwright';

test('page has no obvious axe violations', async ({ page }) => {
  await page.goto('/checkout');
  const results = await new AxeBuilder({ page }).withTags(['wcag2a', 'wcag2aa', 'wcag22aa']).analyze();
  expect(results.violations).toEqual([]);
});

Audit Workflow

Run manual checks in this order.

  1. Define user task and URL.
  2. Run a quick automated pre-check.
  3. Test keyboard-only navigation.
  4. Test visible focus.
  5. Test screen reader reading order.
  6. Test screen reader control names and states.
  7. Test form errors and recovery.
  8. Test zoom at 200 percent.
  9. Test reflow at narrow width.
  10. Test reduced motion if the workflow animates.
  11. Record WCAG mappings.
  12. Summarize blockers and recommendations.

Read the full file on GitHub · 171 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. 11d ago First seen · 171 lines · 36 tokens per session scan A 4f777ca0a38e

Subscribe to this mod's changes

Accessibility Manual Audit is a skill published in the GitHub repository PramodDutta/qaskills (220 stars, last pushed 11d ago), licensed MIT. It adds 36 tokens to every session and 1,388 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 skills, from other repositories

interaction-design

Design meaningful interactions, microinteractions, animations, state machines, gesture patterns, error prevention, and product behavior. Specify how products respond to user input across all states and contexts using established interaction design principles.

cuellarfr/design-skills · 44 tokens

ux-strategy

Connect design decisions to business outcomes through competitive analysis, opportunity mapping, Jobs to Be Done, outcome-driven discovery, value proposition design, and UX metrics. Shape product direction with strategic frameworks grounded in evidence.

cuellarfr/design-skills · 44 tokens

design-ops

Run design sprints, manage handoff, establish team rituals, documentation standards, and design QA processes. Covers the operational side of design — how teams organize work, collaborate with engineering, and ship quality.

cuellarfr/design-skills · 45 tokens

design-systems

Build, document, and maintain design systems with design tokens, component specifications, pattern libraries, naming conventions, and governance processes. Conduct system audits, define component hierarchies, and establish shared design languages.

cuellarfr/design-skills · 45 tokens

design-critique

Evaluate UI designs against usability heuristics, UX laws, interaction patterns, interaction design principles, information architecture, and content quality. Conduct heuristic evaluations, structured design critiques, pattern-based reviews, posture analysis, excise audits, IA evaluations, and UX writing reviews.…

cuellarfr/design-skills · 71 tokens

journey-mapping

Create customer journey maps, service blueprints, experience maps, empathy maps, and other alignment diagrams. Guides diagram type selection, content structure, illustration syntax, and alignment workshops.

cuellarfr/design-skills · 40 tokens