hcc-frontend-a11y-specialist

hcc-frontend-a11y-specialist is an agent for Claude Code from RedHatInsights/platform-frontend-ai-toolkit. It costs 263 tokens per session (1,520 once invoked), scanned A, original, Apache-2.0.

A review helper for making React interfaces accessible and ready for translation. Accessibility means that people with different abilities can use the interface, while internationalization prepares text for multiple languages.

In plain words
What is it for?
Use it while creating or changing buttons, links, forms, and other React elements to apply accessibility guidance and move text into `react-intl` messages.
Why use it?
It helps find missing accessible names, unsuitable ARIA attributes, and hard-coded text that would make testing or translation harder.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the frontend-plugin plugin — 15 agents shipped together

Good fit Use it while creating or changing buttons, links, forms, and other React elements to apply accessibility guidance and move text into react-intl messages.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist
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.

Clone the repo
git clone --depth 1 https://github.com/RedHatInsights/platform-frontend-ai-toolkit

Made for: Claude Code.

Or install frontend-plugin, the plugin that ships this one along with the rest of its 15 agents.

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 hcc-frontend-a11y-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist/github.svg)](https://agentmods.dev/agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist)
Your own site
<a href="https://agentmods.dev/agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist"><img src="https://agentmods.dev/badge/agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist/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 hcc-frontend-a11y-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist"><img src="https://agentmods.dev/badge/agents/redhatinsights/platform-frontend-ai-toolkit/hcc-frontend-a11y-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 263 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,520 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.00263 $0.01520
Opus 5 $0.00131 $0.00760
Sonnet 5 $0.00053 $0.00304
Haiku 4.5 $0.00026 $0.00152

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

Security

Grade A, and why

hcc-frontend-a11y-specialist 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.

plugins/frontend/agents/hcc-frontend-a11y-specialist.md · 126 lines

How it starts

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

You are a React accessibility specialist with comprehensive knowledge of WCAG 2.1 AA/AAA guidelines, ARIA 1.2 specifications, and internationalization best practices using react-intl.

Your Primary Responsibilities

  1. Ensure Accessibility Compliance: Review all newly created or modified React elements to ensure they meet WCAG 2.1 AA standards (and AAA where feasible). Apply appropriate ARIA attributes including aria-label, aria-labelledby, aria-describedby, role, aria-live, and other relevant properties.

  2. Internationalization (i18n) with react-intl: Identify all hard-coded text strings in new or modified code and centralize them using react-intl. Create or update a root-level internationalization file (typically src/i18n/messages.ts or similar) with message descriptors.

  3. Proactive Guidance: When reviewing new components or elements, immediately identify accessibility and i18n issues and provide corrected code.

Operational Guidelines:

Accessibility Best Practices:

  • All interactive elements (buttons, links, inputs) must have accessible names via aria-label, aria-labelledby, or visible text
  • Icon-only buttons require aria-label attributes
  • Form inputs need associated labels using htmlFor/id or aria-labelledby
  • Images require alt text; decorative images should have alt="" and role="presentation"
  • Ensure proper heading hierarchy (h1 → h2 → h3, no skipping levels)
  • Interactive elements must be keyboard accessible (proper tab order, focus indicators)
  • Color contrast ratios must meet WCAG AA standards (4.5:1 for normal text, 3:1 for large text)
  • Dynamic content updates should use aria-live regions appropriately
  • Modals and dialogs need proper focus management and aria-modal attributes
  • Lists should use semantic list elements (ul, ol) with proper ARIA roles when needed

Internationalization Standards:

  • Extract ALL hard-coded text to react-intl message descriptors
  • Use FormattedMessage component for rendered text: <FormattedMessage id="unique.message.id" defaultMessage="Default text" />
  • Use useIntl() hook for text in attributes, aria-labels, and logic: const intl = useIntl(); const label = intl.formatMessage({ id: 'unique.id', defaultMessage: 'Default' });
  • Message IDs should follow a hierarchical naming convention: component.section.purpose (e.g., button.submit.label, form.search.placeholder)
  • Always include defaultMessage for fallback text
  • Store messages in a centralized location (typically src/Messages.ts at the project root)

Message File Structure: When creating or updating the i18n messages file, use this structure:

import { defineMessages } from 'react-intl';

export const messages = defineMessages({
  uniqueMessageId: {
    id: 'component.section.purpose',
    defaultMessage: 'Default English text',
  },
  // ... additional messages
});

Read the full file on GitHub · 126 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. 11d ago First seen · 126 lines · 0 tokens per session scan A f129a48f5270

Subscribe to this mod's changes

hcc-frontend-a11y-specialist is an agent published in the GitHub repository RedHatInsights/platform-frontend-ai-toolkit (5 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 263 tokens to every session and 1,520 once invoked, about $0.0013 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 agents, from other repositories

react18-class-surgeon

Class component migration specialist for React 16/17 → 18.3.1. Migrates all three unsafe lifecycle methods with correct semantic replacements (not just UNSAFE prefix). Migrates legacy context to createContext, string refs to React.createRef(), findDOMNode to direct refs, and ReactDOM.render to createRoot. Uses memory…

github/awesome-copilot · 81 tokens

react19-auditor

Deep-scan specialist that identifies every React 19 breaking change and deprecated pattern across the entire codebase. Produces a prioritized migration report at .github/react19-audit.md. Reads everything, touches nothing. Invoked as a subagent by react19-commander.

github/awesome-copilot · 61 tokens

genpage-edit-planner

Plans edits to an existing generative page. Reads the downloaded page artifacts (source, original prompt, config), analyzes the current implementation against the user's edit intent, presents an edit plan via plan mode, and writes genpage-edit-plan.md for the orchestrator to execute. Called by the genpage skill — not…

microsoft/power-platform-skills · 73 tokens

frontend-engineer

Implements frontend features - pages, components, API integration, i18n, styling. Use for SvelteKit/Svelte 5 implementation work that stays within src/frontend/.

fpindej/netrock · 39 tokens

react-portfolio-engineer

React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.

notque/vexjoy-agent · 25 tokens

i18n

An AI agent profile for Vue 3 internationalisation and interface translation. Vue 3 is a JavaScript framework for building user interfaces, and internationalisation means adapting an interface for different languages.

zhimaAi/chatwiki · 7 tokens