frontend-reviewer

frontend-reviewer is an agent for coding agents from makigjuro/cloudstack-ai-plugins. It costs 37 tokens per session (1,345 once invoked), scanned A, original, MIT.

A code-review agent for React and TypeScript frontend files. It checks accessibility, speed, security, and common React mistakes.

In plain words
What is it for?
Use it to review changed frontend files for missing labels or image descriptions, slow or unsafe code, and React patterns that may cause bugs.
Why use it?
It catches problems in the part of a web application that users see and interact with, without reviewing unrelated backend or infrastructure code.

Agent

Part of the react-developer plugin — 4 skills, 1 agent 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 agents/makigjuro/cloudstack-ai-plugins/frontend-reviewer
Clone the repo
git clone --depth 1 https://github.com/makigjuro/cloudstack-ai-plugins

Or install react-developer, the plugin that ships this one along with the rest of its 4 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 frontend-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/makigjuro/cloudstack-ai-plugins/frontend-reviewer.svg)](https://agentmods.dev/agents/makigjuro/cloudstack-ai-plugins/frontend-reviewer)
Your own site
<a href="https://agentmods.dev/agents/makigjuro/cloudstack-ai-plugins/frontend-reviewer"><img src="https://agentmods.dev/badge/agents/makigjuro/cloudstack-ai-plugins/frontend-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 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,345 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.00037 $0.01345
Opus 5 $0.00018 $0.00673
Sonnet 5 $0.00007 $0.00269
Haiku 4.5 $0.00004 $0.00135

Measured 4d ago against content hash dca9d6b91dd8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

frontend-reviewer 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 4d 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/react-developer/agents/frontend-reviewer.md · 167 lines

How it starts

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

Frontend Reviewer Agent

Review React + TypeScript frontend code for accessibility, performance, security, and anti-patterns.

When to Use

Launched by /dev-workflow:complete-task when HAS_FRONTEND is true. Runs in parallel with the general reviewer agent using worktree isolation.

Scope

Only review files under the frontend directory (typically web/src/). Ignore backend, infrastructure, and test files — other agents handle those.

Review Process

  1. Get the diff: git diff origin/main...HEAD -- <frontend-path>/
  2. Get changed files: git diff origin/main...HEAD --name-only -- <frontend-path>/
  3. If cloudstack.json exists, read frontend.path to determine the frontend directory
  4. Review each changed file against the checklists below

Accessibility Checklist

Interactive Elements

  • All <button> elements have accessible text (visible label or aria-label)
  • All <a> links have descriptive text (not "click here")
  • All <img> tags have alt attributes (empty alt="" is OK for decorative images)
  • Form inputs have associated <label> elements or aria-label
  • Custom interactive components have role, tabIndex, and keyboard handlers

Semantic HTML

  • Page has a single <h1>; headings don't skip levels
  • Lists use <ul>/<ol>/<li>, not styled <div> elements
  • Navigation uses <nav>, main content uses <main>
  • Modals/dialogs use <dialog> or proper role="dialog" with focus trap

Color & Contrast

  • Text is not conveyed by color alone (icons/labels accompany status colors)
  • Interactive states (hover, focus, active) are visually distinct
  • Focus indicators are visible (no outline: none without replacement)

Performance Checklist

React Anti-Patterns

  • No unnecessary re-renders: components receiving stable props
  • No inline object/array creation in JSX props (causes re-render on every cycle)
  • useCallback/useMemo used for expensive computations, not everywhere
  • No state stored in parent when only child needs it (lift state down)
  • No derived state stored in useState — compute during render instead

Read the full file on GitHub · 167 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. 4d ago First seen · 167 lines · 37 tokens per session scan A dca9d6b91dd8

Subscribe to this mod's changes

frontend-reviewer is an agent published in the GitHub repository makigjuro/cloudstack-ai-plugins (1 stars, last pushed 1mo ago), licensed MIT. It adds 37 tokens to every session and 1,345 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 agents, from other repositories

context-analyzer

Analyzes context usage patterns, identifies waste, and provides optimization recommendations. Use when the user asks about token usage, context efficiency, or wants to optimize their Claude Code workflow.

egorfedorov/claude-context-optimizer · 39 tokens

ia-database-guardian

Reviews database schema, constraints, and migration code for safety. Use when PRs touch migrations, data models, ID mappings, enum conversions, backfills, or persistent data.

iliaal/whetstone · 41 tokens

frontend-reviewer

Frontend code reviewer who validates React/TypeScript implementations against project rules and patterns. Reviews code, validates with tools, and works interactively with the engineer. Never modifies code.

platformplatform/PlatformPlatform · 39 tokens

ia-best-practices-researcher

Researches external framework docs, version-specific constraints, and industry conventions for any technology. Use when you need authoritative external documentation.

iliaal/whetstone · 34 tokens

reviewer-opus

Deeply reviews code for bugs, logic errors, and security vulnerabilities using comprehensive reasoning to catch subtle, high-impact issues that require careful analysis.

Joncik91/ucai · 32 tokens

fintech-frontend-engineer

Fintech frontend specialist. Invoke for React/Tailwind in fintech context, payment flows, financial data display, currency formatting, SEO-sensitive pages, Core Web Vitals, and Next.js App Router. Returns code that handles financial display correctness and trust-critical UI patterns.

pranav8494/team-of-agents · 60 tokens