accessibility-wcag

accessibility-wcag is a skill for Claude Code from contactandrewchl-wq/turtle-mcp. It costs 58 tokens per session (989 once invoked), scanned A, original, MIT.

Spanish-language guidance for applying WCAG 2.2 AA accessibility practices to web interfaces. WCAG is a set of rules for making websites usable with keyboards, assistive technology, and different visual or cognitive needs.

In plain words
What is it for?
Use it to build or audit semantic HTML, keyboard navigation, visible focus states, color contrast, alternative text, accessible forms, tables, and dialogs.
Why use it?
It helps find barriers that can prevent people from navigating, reading, or completing forms in an interface.

Skill for Claude Code

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

Part of the turtle plugin — 26 skills shipped together

Good fit Use it to build or audit semantic HTML, keyboard navigation, visible focus states, color contrast, alternative text, accessible forms, tables, and dialogs.

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

Made for: Claude Code.

Or install turtle, the plugin that ships this one along with the rest of its 26 skills.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/contactandrewchl-wq/turtle-mcp/accessibility-wcag"><img src="https://agentmods.dev/badge/skills/contactandrewchl-wq/turtle-mcp/accessibility-wcag.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 989 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.00058 $0.00989
Opus 5 $0.00029 $0.00495
Sonnet 5 $0.00012 $0.00198
Haiku 4.5 $0.00006 $0.00099

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

Security

Grade A, and why

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

skills/accessibility-wcag/SKILL.md · 98 lines

How it starts

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

Accesibilidad — WCAG 2.2 AA

Cuándo usar

  • Cualquier UI con la que interactúe una persona.
  • Antes de mergear un PR que toca componentes interactivos.
  • Auditoría de una pantalla existente.

Principios POUR

  1. Perceivable — todo contenido tiene alternativa textual o auditiva.
  2. Operable — todo se puede usar con teclado, sin tiempo límite duro.
  3. Understandable — lenguaje claro, errores con instrucción.
  4. Robust — válido sintácticamente, compatible con asistivas.

Semántica primero

Antes de ARIA, HTML nativo:

Necesitás Usá No uses
Botón clickeable <button> <div onClick>
Link <a href> <button> que navega
Lista <ul>/<ol> <div> con bullets
Encabezado <h1>..<h6> jerárquico <div class="title">
Formulario <form> + <label for> inputs sueltos
Tabla de datos <table> con <th> y scope grid de <div>
Diálogo modal <dialog> <div> flotante

ARIA solo cuando el HTML nativo no alcanza. No ARIA es mejor que ARIA mal.

Teclado

  • Tab recorre todo lo interactivo en orden lógico (DOM = visual).
  • Esc cierra modales, dropdowns, popovers.
  • Enter/Space activan botones; flechas para menús, tabs, sliders.
  • Foco visible siempre. Outline ≥2 px, contraste ≥3:1 con el fondo.
  • Sin trampas de foco salvo dentro de un modal abierto (y restaurar al cerrar).

Contraste

  • Texto normal: 4.5:1 mínimo.
  • Texto grande (≥18 pt o ≥14 pt bold): 3:1.
  • Componentes UI y bordes de foco: 3:1 contra fondo adyacente.
  • Verificá con axe DevTools o WebAIM Contrast Checker.

Imágenes y media

  • alt descriptivo si la imagen aporta info; alt="" si es decorativa.
  • Video: subtítulos sincronizados. Audio: transcripción.
  • No autoplay con sonido. Pausa accesible en cualquier animación >5 s.

Formularios

  • <label for> en cada input. No "placeholder como label".
  • Errores en texto + ícono + color (no solo color). aria-invalid + aria-describedby al mensaje.
  • Agrupá relacionados con <fieldset> + <legend>.
  • Autocompletar: autocomplete="email", autocomplete="given-name", etc.

Read the full file on GitHub · 98 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 · 98 lines · 58 tokens per session scan A 8c8aa3fafc98

Subscribe to this mod's changes

accessibility-wcag is a skill published in the GitHub repository contactandrewchl-wq/turtle-mcp (2 stars, last pushed 2mo ago), licensed MIT. It adds 58 tokens to every session and 989 once invoked, about $0.0003 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

theme-builder

Create or customize a site theme interactively. Walks through site purpose, audience, visual direction, and design specifics before generating a complete base.html template with all SEO, accessibility, search, pagination, and i18n requirements.

seite-sh/seite · 49 tokens

ui-polish

Four quality gate checklists for frontend: baseline visual, accessibility, metadata/SEO, and motion performance. Post-implementation quality gates. Trigger: When reviewing UI changes, before merging frontend PRs, during sdd-verify.

JNZader/repoforge · 50 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI).…

PM-Shawn/Abu-Cowork · 77 tokens

frontend-design

Production-grade UI/UX guidance — not generic AI slop. Triggers on design, UI, frontend, component, styling, layout, make it look good.

AyushParkara/syntra · 36 tokens

frontend-design

Ayırt edici, üretim kalitesinde frontend arayüzler üretme disiplini — jenerik "AI estetiğinden" kaçınır. Web bileşeni, sayfa veya uygulama arayüzü tasarlanırken/kodlanırken kullan. (Kaynak; Anthropic frontend-design plugin).

fthsrbst/mnema · 71 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI).…

ronmkr/PromptBook · 77 tokens