accessibility-engineer

accessibility-engineer is a skill for Claude Code from mae616/design-skills. It costs 38 tokens per session (956 once invoked), scanned A, original, MIT.

A guide for building interfaces with meaningful HTML and limited ARIA, a set of attributes that helps assistive technology understand web controls. It focuses on screen readers, keyboard use, focus, and accessible names.

In plain words
What is it for?
Use it when implementing any interface, especially forms, buttons, links, interactive components, keyboard navigation, or focus management.
Why use it?
It helps prevent interfaces that look correct but cannot be understood or operated by keyboard users and people using assistive technology.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it when implementing any interface, especially forms, buttons, links, interactive components…

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

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/mae616/design-skills/accessibility-engineer.svg)](https://agentmods.dev/skills/mae616/design-skills/accessibility-engineer)
Your own site
<a href="https://agentmods.dev/skills/mae616/design-skills/accessibility-engineer"><img src="https://agentmods.dev/badge/skills/mae616/design-skills/accessibility-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 956 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.00038 $0.00956
Opus 5 $0.00019 $0.00478
Sonnet 5 $0.00008 $0.00191
Haiku 4.5 $0.00004 $0.00096

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

Security

Grade A, and why

accessibility-engineer 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 6d 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-engineer/SKILL.md · 87 lines

How it starts

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

Accessibility Engineer Skill

When to Apply

Apply this skill when the request involves:

  • Accessibility, a11y, WAI-ARIA, screen reader support, semantic HTML, keyboard navigation, focus management
  • アクセシビリティ対応、WAI-ARIA、スクリーンリーダー対応、セマンティックHTML、キーボード操作、フォーカス管理
  • Any UI implementation (should be applied alongside other skills)

Core Principles (Most Important)

  • Native elements first. Solve with proper HTML elements (button, a, label, input, etc.) before reaching for ARIA.
  • ARIA is minimal. Don't add role/aria-* to make things "seem" accessible. Only add when there's a real requirement.
  • Operable = Communicable. Not just visually—assistive tech must receive state, name, and purpose. This is the Definition of Done.
  • Keyboard is the baseline. Mouse-only UI is incomplete. Design focus movement and operations first.

Implementation Rules

1) Semantic Structure

  • Maintain heading order (h1h2 → ...). Don't skip levels for styling.
  • Create landmarks for main regions (header, nav, main, footer, aside if needed).
  • Use ul/ol/li for lists, dl/dt/dd for definitions—not div substitutes.

2) Accessible Names

  • Buttons, links, inputs need "names" (labels read by screen readers).
    • Priority: Visible text
    • Fallback: aria-label (when visible text isn't possible)
    • Composition: aria-labelledby (referencing existing elements)
  • Icon-only buttons/links MUST have names (e.g., "Search", "Close").

3) Forms (Required)

  • Associate label with input (for/id). Never use placeholder as the only label.
  • Communicate required/optional, errors, hints machine-readably (e.g., aria-describedby for helper text).
  • Errors must explain: what's wrong, why, and how to fix.

4) States and Announcements (Dynamic UI)

  • Use native disabled attribute first (button disabled, etc.).
  • For toggles, use aria-pressed / aria-expanded only when native elements aren't sufficient.
  • Use aria-live for async completion/failure announcements—but don't overuse.

Read the full file on GitHub · 87 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. 6d ago First seen · 87 lines · 38 tokens per session scan A 3ab7144acb19

Subscribe to this mod's changes

accessibility-engineer is a skill published in the GitHub repository mae616/design-skills (10 stars, last pushed 7mo ago), licensed MIT. It adds 38 tokens to every session and 956 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.

Related

Other skills, from other repositories

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

frontend-visual-qa

Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…

daymade/claude-code-skills · 145 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens

animation-principles

Apply animation principles — easing, staging, follow-through — to one specific UI motion. Use when tuning how an animation feels. For product-wide duration and easing tokens use motion-system (design-systems); for a full interaction spec use micro-interaction-spec.

Owl-Listener/designer-skills · 59 tokens

refactoring-ui

Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions "my UI looks off" (or amateur/unprofessional), "fix the design", "Tailwind styling", "color palette", "visual hierarchy", "design system", "spacing scale", or "component styling". Also trigger when building consistent…

wondelai/skills · 132 tokens

moai-ref-ui-polish

UI polish and interface-completion reference: the small visual details — concentric border radius, optical alignment, shadow-vs-border, motion easing, typography smoothing, tabular numbers, icon stroke weight, hit areas — that separate polished interfaces from generic ones. Agent-extending skill that amplifies…

modu-ai/moai-adk · 98 tokens