web-accessibility

web-accessibility is a skill for Claude Code, Codex from chadixearth/graphyloop. It costs 83 tokens per session (1,514 once invoked), scanned A, original, MIT.

A guide for making web interfaces usable with keyboards and screen readers while meeting WCAG 2.2 AA accessibility requirements.

In plain words
What is it for?
Use it when building or reviewing forms, menus, dialogs, tabs, tables, notifications, custom controls, dark mode, or motion effects.
Why use it?
It prevents common problems such as unlabeled inputs, broken keyboard controls, lost focus in dialogs, poor contrast, and errors that are not announced.

Skill for Claude CodeCodex

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

Good fit Use it when building or reviewing forms, menus, dialogs, tabs, tables, notifications, custom controls, dark mode, or motion effects.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/chadixearth/graphyloop/web-accessibility/github.svg)](https://agentmods.dev/skills/chadixearth/graphyloop/web-accessibility)
Your own site
<a href="https://agentmods.dev/skills/chadixearth/graphyloop/web-accessibility"><img src="https://agentmods.dev/badge/skills/chadixearth/graphyloop/web-accessibility/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 web-accessibility

Your own site · 80×15
<a href="https://agentmods.dev/skills/chadixearth/graphyloop/web-accessibility"><img src="https://agentmods.dev/badge/skills/chadixearth/graphyloop/web-accessibility.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,514 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.00083 $0.01514
Opus 5 $0.00042 $0.00757
Sonnet 5 $0.00017 $0.00303
Haiku 4.5 $0.00008 $0.00151

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

Security

Grade A, and why

web-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 5d 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/web-accessibility/SKILL.md · 110 lines

How it starts

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

Web accessibility (WCAG 2.2 AA, implementation-level)

Accessibility fails in a small number of predictable places: a div wired with onClick, a modal that leaves focus behind it, an input whose label is only a placeholder, an error announced in red and nowhere else, and an icon button with no name. Fix those five and most of an audit disappears.

When to activate

  • Building or changing forms, dialogs, dropdowns, menus, tabs, accordions, carousels, data tables, toasts, or any custom control.
  • Anything described as "compliance", "WCAG", "508", "screen reader", "keyboard".
  • A UI review pass, or a design handoff with hover-only affordances or thin grey text.

Rule 0: semantics before ARIA

Use the element that already has the behavior. <button>, <a href>, <input>, <select>, <dialog>, <details>, <table>, <nav>, <main>, <label>, <fieldset>. Each brings focusability, keyboard handling, and a role for free.

  • <div onClick> is not a button: no focus, no Enter/Space, no role. If you must, it needs role="button" tabindex="0" and an Enter+Space handler — three ways to reintroduce a bug the native element never had.
  • Wrong ARIA is worse than no ARIA. role="button" on a link, aria-hidden on a focusable node, or an aria-label that contradicts visible text actively misleads.
  • One <h1> per page; heading levels never skip. Landmarks (header, nav, main, footer) present once each, main exactly once.

Keyboard and focus

  • Everything interactive is reachable with Tab in visual order and operable with Enter (buttons/links), Space (buttons/checkboxes), arrows (radios, tabs, menus, listbox), Escape (dismiss).
  • Never outline: none without a replacement. Visible focus needs ≥ 3:1 contrast against the adjacent color; :focus-visible is the right hook.
  • Dialogs and drawers: move focus in on open (first focusable or the heading), trap it while open, restore it to the trigger on close, close on Escape, and mark the rest of the page inert (inert attribute or aria-hidden on the background).
  • tabindex is 0 or -1. Positive values reorder the whole page and are a bug.
  • Skip link to #main as the first focusable element, visible on focus.
  • Never trap focus in a loop the user cannot leave, and never move focus on keystroke while typing (that includes "helpful" autofocus on search-as-you-type).

Read the full file on GitHub · 110 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. 5d ago First seen · 110 lines · 83 tokens per session scan A f606ccf993cb

Subscribe to this mod's changes

web-accessibility is a skill published in the GitHub repository chadixearth/graphyloop (2 stars, last pushed 23d ago), licensed MIT. It adds 83 tokens to every session and 1,514 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories

hipson-visual-experience-director

Use for visual direction, premium UI/UX art direction, motion interaction design, Codex-ready implementation briefs, and visual QA for web experiences.

Hipson47/Hipson · 38 tokens

hipson-premium-ui-ux

Use for premium UI/UX review and implementation planning in Hipson frontend projects, especially screenshot-backed landing pages, forms, visual polish, accessibility, responsive behavior, and design-agent packets.

Hipson47/Hipson · 45 tokens

hipson-creative-frontend-motion-architect

Use for premium creative frontend, motion UI, scroll-driven animation, scrollytelling, cinematic landing pages, microinteractions, and implementation-ready prompts for React/Next.js frontend agents.

Hipson47/Hipson · 48 tokens

impeccable

Create distinctive, production-grade frontend interfaces with high design quality. Generates creative, polished code that avoids generic AI aesthetics. Use when the user asks to build web components, pages, artifacts, posters, or applications, or when any design skill requires project context. Call with 'craft' for…

GobbyAI/gobby · 90 tokens

figma-implement-design

Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions "implement design", "generate code", "implement component", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via…

Hipson47/Hipson · 81 tokens

web-artifacts-builder

Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.

Hipson47/Hipson · 64 tokens