accessible-frontend-dev

accessible-frontend-dev is a skill for Claude Code, Codex from vladolaru/claude-code-plugins. It costs 49 tokens per session (4,211 once invoked), scanned A, original, MIT.

A set of rules for building accessible React and HTML interfaces, including forms, menus, overlays, and other interactive components.

In plain words
What is it for?
Use it when creating or changing frontend components to handle keyboard operation, labels, focus, screen-reader announcements, and appropriate ARIA attributes.
Why use it?
It helps prevent interfaces from excluding people who use keyboards, screen readers, or other assistive technology.

Skill for Claude CodeCodex

Part of the pirategoat-tools plugin — 22 skills shipped together

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.

agentmods
npx agentmods add skills/vladolaru/claude-code-plugins/accessible-frontend-dev
Any agent
npx skills add vladolaru/claude-code-plugins --skill accessible-frontend-dev
Clone the repo
git clone --depth 1 https://github.com/vladolaru/claude-code-plugins

Made for: Claude Code, Codex.

Or install pirategoat-tools, the plugin that ships this one along with the rest of its 22 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 accessible-frontend-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/vladolaru/claude-code-plugins/accessible-frontend-dev.svg)](https://agentmods.dev/skills/vladolaru/claude-code-plugins/accessible-frontend-dev)
Your own site
<a href="https://agentmods.dev/skills/vladolaru/claude-code-plugins/accessible-frontend-dev"><img src="https://agentmods.dev/badge/skills/vladolaru/claude-code-plugins/accessible-frontend-dev.svg" alt="Measured on agentmods" 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 4,211 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00049 $0.04211
Opus 5 $0.00024 $0.02106
Sonnet 5 $0.00010 $0.00842
Haiku 4.5 $0.00005 $0.00421

Measured yesterday against content hash 6223e1b3308f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

accessible-frontend-dev 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 yesterday.

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.

plugins/pirategoat-tools/skills/accessible-frontend-dev/SKILL.md · 315 lines

How it starts

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

Skill Directory

Resolve SKILL_DIR to the absolute directory containing this SKILL.md, as shown by the current host, before using any bundled path below. Before a shell command uses $SKILL_DIR, assign it in that command or replace it with the resolved path. It is not a host-exported environment variable.

Accessible Frontend Development

You are an accessibility-expert frontend developer. Your code ensures that every user — including those relying on screen readers, keyboard navigation, or assistive technology — can use the interface.

Write accessible frontend code by default. Every interactive component must be keyboard-operable, screen-reader-announced, and focus-managed.

Scope: Apply these rules when writing or modifying interactive frontend components (React, HTML, CSS). The Gutenberg Infrastructure section applies only in WordPress/Gutenberg contexts — skip it otherwise. This skill does not cover: backend accessibility (API responses), automated testing tooling, or WCAG audit documentation.

Decision Trees (Use BEFORE Writing Code)

Should I use ARIA or semantic HTML?

Native HTML element exists for this semantic?
├── YES → Use it. No ARIA needed.
│   └── Needs additional state? → Add aria-* state attributes only
└── NO → Use ARIA roles + required states
    └── Follow component pattern in $SKILL_DIR/references/component-patterns.md

What focus management strategy?

Overlay (modal, dialog, popover)?
├── YES → Focus trap + focus return + focus on mount
└── NO → Composite widget (tabs, menu, toolbar)?
    ├── YES → Single Tab stop, arrow keys internally
    │   ├── Focus moves physically → Roving tabindex
    │   └── Focus stays on input → aria-activedescendant
    └── NO → Standard tab order

How to announce dynamic content?

Critical/urgent (error, destructive action)?
├── YES → aria-live="assertive" or role="alert"
└── NO → aria-live="polite" or speak(msg, 'polite')
    └── Rapid updates? → Debounce 500ms

Read the full file on GitHub · 315 lines

Files

What ships with it

1 file 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. yesterday First seen · 315 lines · 49 tokens per session scan A 6223e1b3308f

Subscribe to this mod's changes

accessible-frontend-dev is a skill published in the GitHub repository vladolaru/claude-code-plugins (8 stars, last pushed yesterday), licensed MIT. It adds 49 tokens to every session and 4,211 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-09-03.

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

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.

ThinkInAIXYZ/deepchat · 64 tokens

web-design-engineer

Build or redesign polished browser-rendered visual artifacts with HTML/CSS/JavaScript/React: pages, dashboards, prototypes, slide decks, animations, UI mockups, and data visualizations. Use for visual front-end creation, design-system exploration, design critique, or explicit browser acceptance / QA of a web artifact.…

ConardLi/garden-skills · 96 tokens

21st-ui

Find, install, and generate UI with 21st.dev. Use when the user asks for a UI component (pricing table, hero, navbar, dashboard, form, etc.), wants design inspiration, needs a brand logo as an SVG component, or wants to generate new UI from a prompt.

21st-dev/magic-mcp · 63 tokens

aceternity-ui

100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI integration errors.

secondsky/claude-skills · 48 tokens

component-search

Search 21st.dev component registry for production-ready React components. Finds components by natural language description, filters by framework and style system, returns ranked results with install instructions. Use when looking for UI components, finding alternatives to existing components, or sourcing design system…

yonatangross/orchestkit · 57 tokens