a11y Accessible Name Basics

a11y Accessible Name Basics is a skill for Claude Code from s977043/river-review. It costs 30 tokens per session (736 once invoked), scanned A, original, MIT.

A Japanese-language accessibility check for accessible names on images, buttons, links, and form fields. An accessible name is the label a screen reader uses to identify an interface element.

In plain words
What is it for?
Checking missing image alt text, labels for icon-only controls, and links between form fields and their labels, with evidence and suggested fixes.
Why use it?
It finds unlabeled controls and images that may be unusable or confusing for people using screen readers.

Skill for Claude Code

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

Part of the river-review plugin — 138 skills, 18 commands, 5 agents, 3 hooks shipped together

Good fit Checking missing image alt text, labels for icon-only controls, and links between form fields and their labels, with evidence and suggested fixes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s977043/river-review/a11y-accessible-name
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 s977043/river-review --skill a11y-accessible-name
Clone the repo
git clone --depth 1 https://github.com/s977043/river-review

Made for: Claude Code.

Or install river-review, the plugin that ships this one along with the rest of its 138 skills, 18 commands, 5 agents, 3 hooks.

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 Accessible Name Basics

README.md
[![agentmods](https://agentmods.dev/badge/skills/s977043/river-review/a11y-accessible-name/github.svg)](https://agentmods.dev/skills/s977043/river-review/a11y-accessible-name)
Your own site
<a href="https://agentmods.dev/skills/s977043/river-review/a11y-accessible-name"><img src="https://agentmods.dev/badge/skills/s977043/river-review/a11y-accessible-name/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 Accessible Name Basics

Your own site · 80×15
<a href="https://agentmods.dev/skills/s977043/river-review/a11y-accessible-name"><img src="https://agentmods.dev/badge/skills/s977043/river-review/a11y-accessible-name.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 736 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.00030 $0.00736
Opus 5 $0.00015 $0.00368
Sonnet 5 $0.00006 $0.00147
Haiku 4.5 $0.00003 $0.00074

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

Security

Grade A, and why

a11y Accessible Name Basics 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/midstream/a11y-accessible-name/SKILL.md · 69 lines

What it actually says

Goal / 目的

  • 主要UI要素のラベル欠落による操作不能や誤解を防ぐ。

Non-goals / 扱わないこと

  • コントラスト比やキーボード操作などの包括的なa11y評価。
  • 画面全体の情報設計の良し悪し。
  • 動的UIのARIA設計(別スキルの対象)。

False-positive guards / 抑制条件

  • aria-hidden="true" が明示されている装飾要素は指摘しない。
  • aria-label / aria-labelledby が既に付与されている場合は指摘しない。

Rule / ルール

  • img タグには alt 属性を必須にする(装飾的な画像は alt="" を推奨)。
  • button / a / input には可視テキストまたは ARIA ラベルを持たせる。

Evidence / 根拠の取り方

  • 対象要素のタグと属性の有無を差分から示す。
  • alt / aria-label / aria-labelledby の欠落を根拠として示す。

Heuristics / 判定の手がかり

  • imgalt が存在しない。
  • button / a がアイコンのみで、ラベル属性もない。
  • inputlabel が関連付けられていない(htmlFor / id が不一致)。

Actions / 改善案

  • alt で意味を短く表現する。
  • aria-label を追加し、読み上げ名を明示する。
  • labelinputid / htmlFor で関連付ける。

Output / 出力

  • Finding: / Evidence: / Impact: / Fix: を含む短いメッセージにする。

評価指標(Evaluation)

  • 合格基準: ラベル欠落が差分に紐づき、根拠と改善案が説明されている。
  • 不合格基準: 差分と無関係な指摘、根拠のない断定、抑制条件の無視。

人間に返す条件(Human Handoff)

  • UIの意図が不明で解釈が分かれる場合は質問として返す。
  • 画面設計そのものの議論が必要な場合は人間レビューへ返す。
Files

What ships with it

8 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. 11d ago First seen · 69 lines · 30 tokens per session scan A a9965750df05

Subscribe to this mod's changes

a11y Accessible Name Basics is a skill published in the GitHub repository s977043/river-review (3 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 736 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

web-design-guidelines

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", or "vs best practices".

martineserios/thebrana · 37 tokens

interface-auditor

Detect UX antipatterns (smells) in interface descriptions using the uxuiprinciples smell taxonomy. Returns structured findings with matched symptoms, severity, and step-by-step remediation recipes. API key optional — full remediation recipes require uxuiprinciples.com API Access.

uxuiprinciples/agent-skills · 60 tokens

uxui-evaluator

Evaluate interface descriptions against 195 research-backed UX/UI principles. Returns structured findings with severity, remediation, and business impact. API key optional — enriched output requires uxuiprinciples.com API Access.

uxuiprinciples/agent-skills · 45 tokens

scroll-craft

Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…

nateherkai/scroll-craft · 177 tokens

critique

Design lens critique covering visual hierarchy, clarity, and anti-slop patterns — produces a findings table, no code edits unless asked. Use when the user wants a design review, says "what's wrong with this UI", or needs a second opinion before a handoff or presentation. Invoke when the user asks for critique on their…

educlopez/ui-craft · 84 tokens

review-all

Multi-agent code review for diffs (project-agnostic). Covers standards, bugs, security, DRY, smells, perf, tests, API contracts, a11y/i18n. Verifies each finding to eliminate false positives. Use for /review-all, pre-PR/pre-commit review, or auditing uncommitted/staged changes.

ncoevoet/claude-review-all · 74 tokens