a11y-forms

a11y-forms is a skill for Claude Code from RadOrigin-LLC/RAD-Claude-Skills. It costs 103 tokens per session (3,103 once invoked), scanned A, original, Apache-2.0.

A reference guide for building accessible web forms. Accessibility means making forms usable with assistive technologies such as screen readers.

In plain words
What is it for?
Use it when creating or reviewing labels, validation messages, required fields, grouped inputs, password fields, file uploads, dates, and other form controls.
Why use it?
It explains how to avoid common problems such as missing labels, unclear errors, and required fields that are communicated only by color or visual styling.

Skill for Claude Code

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

Part of the rad-a11y plugin — 6 skills, 1 agent shipped together

Good fit Use it when creating or reviewing labels, validation messages, required fields, grouped inputs, password fields, file uploads, dates, and other form controls.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/radorigin-llc/rad-claude-skills/a11y-forms
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 RadOrigin-LLC/RAD-Claude-Skills --skill a11y-forms
Clone the repo
git clone --depth 1 https://github.com/RadOrigin-LLC/RAD-Claude-Skills

Made for: Claude Code.

Or install rad-a11y, the plugin that ships this one along with the rest of its 6 skills, 1 agent.

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 a11y-forms

README.md
[![agentmods](https://agentmods.dev/badge/skills/radorigin-llc/rad-claude-skills/a11y-forms/github.svg)](https://agentmods.dev/skills/radorigin-llc/rad-claude-skills/a11y-forms)
Your own site
<a href="https://agentmods.dev/skills/radorigin-llc/rad-claude-skills/a11y-forms"><img src="https://agentmods.dev/badge/skills/radorigin-llc/rad-claude-skills/a11y-forms/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 a11y-forms

Your own site · 80×15
<a href="https://agentmods.dev/skills/radorigin-llc/rad-claude-skills/a11y-forms"><img src="https://agentmods.dev/badge/skills/radorigin-llc/rad-claude-skills/a11y-forms.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,103 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.00103 $0.03103
Opus 5 $0.00051 $0.01551
Sonnet 5 $0.00021 $0.00621
Haiku 4.5 $0.00010 $0.00310

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

Security

Grade A, and why

a11y-forms 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 10d 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.

archive/plugins/rad-a11y/skills/a11y-forms/SKILL.md · 447 lines

How it starts

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

Form Accessibility

Skill type: Reference. This is teaching/pattern content — it explains label association, error announcement, fieldset/legend grouping, and validation patterns. It is not a scanner. For static review of existing forms, use /a11y-review. For runtime verification of error announcements and validation behavior, set up real axe via the a11y-testing skill and pair with manual screen reader testing.

Forms are the most interaction-critical UI element — and the most commonly broken for assistive technology users. Missing labels, inaccessible errors, and placeholder-as-label are among the top WCAG failures on the web.


The Non-Negotiable Rules

  1. Every input must have a visible, programmatically associated label. No exceptions.
  2. Never use placeholder as a label. Placeholder disappears on input, fails contrast, and is not reliably announced by screen readers.
  3. Errors must be text, linked to the input, and not rely on color alone.
  4. Required fields must be indicated programmatically (required or aria-required="true").

Label Association

Method 1: Explicit Association (Preferred)

<label for="email">Email Address</label>
<input type="email" id="email" name="email" autocomplete="email">

In React (htmlFor instead of for):

<label htmlFor="email">Email Address</label>
<input type="email" id="email" name="email" autoComplete="email" />

Method 2: Wrapping Label

<label>
  Email Address
  <input type="email" name="email">
</label>

Works well for radio/checkbox where the label and input are adjacent.

Method 3: aria-label (No Visible Label)

Use only when a visible label is genuinely not possible (e.g., search bar with a button):

<form role="search">
  <input type="search" aria-label="Search products" name="q">
  <button type="submit">
    <svg aria-hidden="true">...</svg>
    <span class="sr-only">Search</span>
  </button>
</form>

Method 4: aria-labelledby (From Existing Text)

Read the full file on GitHub · 447 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. 10d ago First seen · 447 lines · 103 tokens per session scan A e85545acfae0

Subscribe to this mod's changes

a11y-forms is a skill published in the GitHub repository RadOrigin-LLC/RAD-Claude-Skills (5 stars, last pushed 24d ago), licensed Apache-2.0. It adds 103 tokens to every session and 3,103 once invoked, about $0.0005 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

svg

Load this skill whenever the project contains SVG graphics — inline SVGs, external SVG files, SVG icons, SVG illustrations, or SVG-based data visualizations. Under no circumstances use SVG without proper accessible titles, descriptions, and ARIA roles where required. Absolutely always add and to meaningful SVGs and…

mgifford/accessibility-skills · 104 tokens

audio-video

Load this skill whenever the project contains audio or video content, media players, podcasts, video embeds, or any / elements. Under no circumstances publish audio or video without captions, transcripts, and audio descriptions where required. Absolutely always apply WCAG 1.2 criteria for time-based media.

mgifford/accessibility-skills · 65 tokens

forms

Load this skill whenever the project contains forms, inputs, selects, checkboxes, radio buttons, text areas, or any validation flow. Under no circumstances create a form without visible labels, error identification, and keyboard accessibility. Absolutely always associate every input with a label and provide clear…

mgifford/accessibility-skills · 62 tokens

keyboard

Load this skill for every project containing interactive UI elements — buttons, links, modals, dropdowns, sliders, tabs, carousels, or any custom widget. Under no circumstances create an interactive component that cannot be fully operated by keyboard alone. Absolutely always ensure visible focus indicators, logical…

mgifford/accessibility-skills · 78 tokens

light-dark-mode

Load this skill whenever the project supports light/dark mode, colour theme switching, high-contrast mode, or responds to prefers-color-scheme. Under no circumstances hard-code colours that break in alternative themes. Absolutely always test colour contrast in both light and dark themes, and respect user OS-level…

mgifford/accessibility-skills · 69 tokens

manual-testing

Load this skill whenever you are planning, executing, or reviewing manual accessibility testing. Manual testing with real assistive technologies is essential — automated tools catch only 30–40 % of WCAG issues. Absolutely always include keyboard-only testing and at least one screen reader test before marking a feature…

mgifford/accessibility-skills · 74 tokens