form-accessibility

form-accessibility is a skill for Claude Code, Codex from Bbeierle12/Skill-MCP-Claude. It costs 49 tokens per session (3,496 once invoked), scanned A, original, MIT.

A set of patterns for making web forms usable with keyboards, screen readers, and people with cognitive or motor disabilities, following WCAG 2.2 AA.

In plain words
What is it for?
Use it to implement labeled fields, hints, required states, error messages, focus management, keyboard operation, and screen-reader announcements.
Why use it?
It helps prevent missing labels, unclear errors, broken focus behavior, and other form barriers that can stop people from completing a form.

Skill for Claude CodeCodex

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

Good fit Use it to implement labeled fields, hints, required states, error messages, focus management, keyboard operation, and screen-reader announcements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bbeierle12/skill-mcp-claude/form-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 Bbeierle12/Skill-MCP-Claude --skill form-accessibility
Clone the repo
git clone --depth 1 https://github.com/Bbeierle12/Skill-MCP-Claude

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/bbeierle12/skill-mcp-claude/form-accessibility"><img src="https://agentmods.dev/badge/skills/bbeierle12/skill-mcp-claude/form-accessibility.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,496 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00049 $0.03496
Opus 5 $0.00024 $0.01748
Sonnet 5 $0.00010 $0.00699
Haiku 4.5 $0.00005 $0.00350

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

Security

Grade A, and why

form-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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/focus-manager.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/form-accessibility/SKILL.md · 587 lines

How it starts

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

Form Accessibility

WCAG 2.2 AA compliance patterns for forms. Ensures forms work for keyboard users, screen reader users, and users with cognitive or motor disabilities.

Quick Start

// Accessible form field pattern
<div className="form-field">
  {/* 1. Visible label (never placeholder-only) */}
  <label htmlFor="email">
    Email
    <span className="required" aria-hidden="true">*</span>
  </label>
  
  {/* 2. Hint text (separate from label) */}
  <span id="email-hint" className="hint">
    We'll send your confirmation here
  </span>
  
  {/* 3. Input with full ARIA binding */}
  <input
    id="email"
    type="email"
    autoComplete="email"
    aria-required="true"
    aria-invalid={hasError}
    aria-describedby={hasError ? "email-error email-hint" : "email-hint"}
  />
  
  {/* 4. Error message (announced by screen readers) */}
  {hasError && (
    <span id="email-error" className="error" role="alert">
      Please enter a valid email address
    </span>
  )}
</div>

WCAG 2.2 Form Requirements

Critical Criteria

Criterion Level Requirement Implementation
1.3.1 Info & Relationships A Structure conveyed programmatically <label>, <fieldset>, aria-describedby
1.3.5 Identify Input Purpose AA Input purpose identifiable autocomplete attributes
2.1.1 Keyboard A All functionality via keyboard Tab order, focus management
2.4.6 Headings & Labels AA Labels describe purpose Descriptive, visible labels
2.4.11 Focus Not Obscured AA Focus not hidden by other content Scroll behavior, sticky elements
2.5.8 Target Size AA 24×24px minimum touch target Button/input sizing
3.3.1 Error Identification A Errors identified and described aria-invalid, error messages
3.3.2 Labels or Instructions A Labels provided Visible labels, not just placeholders
3.3.3 Error Suggestion AA Suggestions for fixing errors Actionable error messages
3.3.7 Redundant Entry A Don't re-ask for info already provided Form state management
3.3.8 Accessible Authentication AA No cognitive function tests No CAPTCHAs requiring text recognition

Read the full file on GitHub · 587 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 587 lines · 49 tokens per session scan A d9bac03bbe2e

Subscribe to this mod's changes

form-accessibility is a skill published in the GitHub repository Bbeierle12/Skill-MCP-Claude (8 stars, last pushed yesterday), licensed MIT. It adds 49 tokens to every session and 3,496 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

accessibility-compliance-accessibility-audit

You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.

sickn33/agentic-awesome-skills · 40 tokens

cocoindex-diagrams

This skill should be used when creating, editing, or reviewing inline SVG diagrams for the CocoIndex docs site (anything under docs/src/content/docs/). It encodes the component-based primitive system under docs/src/components/diagrams/, the palette + shape semantics, the preview-and-verify loop using headless Chrome…

cocoindex-io/cocoindex · 124 tokens

dashboard-design

Use this skill first when the user wants to design or plan a dashboard, especially Vizro dashboards. Enforces a 3-step workflow (requirements, layout, visualization) before implementation. Activate when the user asks to create, design, or plan a dashboard. For implementation, use the dashboard-build skill after…

mckinsey/vizro · 71 tokens

dstack-prototyping

Use with the dstack skill for model-serving work when the image, serving command, resources, backend/fleet choice, or service behavior is not proven. Guides task-first prototyping on real hardware, choosing fleets/backends that can reuse idle instances and caches, checking vLLM/SGLang sources, and verifying the final…

dstackai/dstack · 80 tokens

ui-mobile

Mobile UI patterns - React Native, iOS/Android, touch targets.

alinaqi/maggy · 17 tokens

user-journeys

User experience flows - journey mapping, UX validation, error recovery.

alinaqi/maggy · 17 tokens