accessibility

accessibility is a skill for Claude Code, Codex from orlando-japan/claude-code-setting. It costs 30 tokens per session (1,344 once invoked), scanned A, original, MIT.

A set of rules for building interfaces that people with disabilities can use, including keyboard users and people using screen readers. It covers structure, controls, content, and compatibility with assistive technology.

In plain words
What is it for?
Use it when creating any user-facing website or application interface.
Why use it?
It helps prevent interfaces that some users cannot operate or understand, and guides development toward WCAG 2.1 AA accessibility standards.

Skill for Claude CodeCodex

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 skills/orlando-japan/claude-code-setting/accessibility
Any agent
npx skills add orlando-japan/claude-code-setting --skill accessibility
Clone the repo
git clone --depth 1 https://github.com/orlando-japan/claude-code-setting

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/orlando-japan/claude-code-setting/accessibility.svg)](https://agentmods.dev/skills/orlando-japan/claude-code-setting/accessibility)
Your own site
<a href="https://agentmods.dev/skills/orlando-japan/claude-code-setting/accessibility"><img src="https://agentmods.dev/badge/skills/orlando-japan/claude-code-setting/accessibility.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,344 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.00030 $0.01344
Opus 5 $0.00015 $0.00672
Sonnet 5 $0.00006 $0.00269
Haiku 4.5 $0.00003 $0.00134

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

Security

Grade A, and why

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

templates/extra/skills/accessibility/SKILL.md · 114 lines

How it starts

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

Accessibility

Accessibility is not a feature to add later. The cost of retrofitting is 10–100x the cost of doing it right the first time. It's also a legal requirement in many jurisdictions.

The four WCAG principles

  1. Perceivable — users must be able to perceive the content (vision, hearing, touch).
  2. Operable — users must be able to operate the interface (keyboard, pointer, voice).
  3. Understandable — content and behavior must be understandable.
  4. Robust — must work with assistive technologies.

Target WCAG 2.1 AA unless you have a reason to go higher.

Practical rules, by category

Semantic HTML

Use the right element for the job. The browser and screen readers already know what <button> is; <div onClick> makes you reimplement all of it badly.

  • <button> for actions.
  • <a href> for navigation.
  • <input> + <label> for form fields (label associated by for + id or wrapping).
  • <nav>, <main>, <article>, <aside>, <header>, <footer> for page structure.
  • Heading hierarchy: h1h2h3, no skipping. One h1 per page.

If you use a div instead of a button, you owe: role="button", tabindex="0", keyboard handling (Enter and Space), focus styles, and any other native button behavior. It's not worth it.

Keyboard

Every interactive element must be reachable and operable via keyboard alone.

  • Tab moves between interactive elements.
  • Shift+Tab goes back.
  • Enter and Space activate buttons.
  • Escape closes modals.
  • Arrow keys navigate within composite widgets (menus, tabs, grids).

Test: unplug your mouse. Can you use the whole page?

Focus

  • Visible focus outline on every interactive element. Don't outline: none unless you're replacing it with something equally visible. Obvious focus indicators are a WCAG requirement.
  • Focus order matches visual order. Don't skip around because of positional CSS.
  • Focus management on dynamic UI. When a modal opens, focus goes into the modal. When it closes, focus returns to the trigger. aria-modal + focus trap.

Read the full file on GitHub · 114 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 · 114 lines · 30 tokens per session scan A 64ec1b33dfeb

Subscribe to this mod's changes

accessibility is a skill published in the GitHub repository orlando-japan/claude-code-setting (2 stars, last pushed 3mo ago), licensed MIT. It adds 30 tokens to every session and 1,344 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.