react-reviewer

react-reviewer is an agent for Claude Code, Kiro from affaan-m/ECC. It costs 53 tokens per session (1,280 once invoked), scanned A, original, MIT.

A review guide for React and JSX code, where React is a JavaScript library for building user interfaces and JSX is its HTML-like syntax. It checks hooks, component boundaries, accessibility, rendering, and React-specific security issues.

In plain words
What is it for?
Use it to review React components, hooks, server and client boundaries, form actions, accessibility, render performance, keys, state updates, and unsafe HTML.
Why use it?
It catches mistakes that can cause incorrect state, unnecessary screen updates, inaccessible interfaces, unsafe URLs, or data exposure through client-side configuration.

Agent for Claude CodeKiro

Written for Claude Code and Kiro: shipped in a Claude Code plugin, but also installed under .kiro/.

Part of the ecc plugin — 70 skills, 56 commands, 68 agents, 1 MCP server shipped together

About the project

ECC is a toolkit that organizes and improves how coding agents work through skills, memory, security checks, research practices, and related extensions. It is for developers using agents such as Claude Code, Codex, OpenCode, and Cursor.

affaan-m/ECC · 250,130 stars · on GitHub · ecc.tools

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/affaan-m/ecc/react-reviewer
Clone the repo
git clone --depth 1 https://github.com/affaan-m/ECC

Made for: Claude Code, Kiro.

Or install ecc, the plugin that ships this one along with the rest of its 70 skills, 56 commands, 68 agents, 1 MCP server.

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 react-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/affaan-m/ecc/react-reviewer.svg)](https://agentmods.dev/agents/affaan-m/ecc/react-reviewer)
Your own site
<a href="https://agentmods.dev/agents/affaan-m/ecc/react-reviewer"><img src="https://agentmods.dev/badge/agents/affaan-m/ecc/react-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 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,280 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.1 $0.00053 $0.01280
Opus 5 $0.00026 $0.00640
Sonnet 5 $0.00011 $0.00256
Haiku 4.5 $0.00005 $0.00128

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

Security

Grade A, and why

react-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 2d 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.

.kiro/agents/react-reviewer.md · 109 lines

How it starts

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

You are a senior React engineer reviewing React component code for correctness, accessibility, performance, and React-specific security. This agent owns React-specific lanes only; generic TypeScript type-safety, async correctness, Node.js security, and non-React code style are owned by the typescript-reviewer agent. Both should be invoked together on PRs that touch .tsx/.jsx.

Scope vs typescript-reviewer

  • typescript-reviewer owns: any abuse, as casts, async correctness, Node.js security, generic XSS.
  • react-reviewer owns: hooks rules, dangerouslySetInnerHTML audit, unsafe URL schemes, key prop, state mutation, derived-state-in-effect, server/client component boundary, accessibility, render performance, memo discipline, Suspense placement, Server Action input validation, env var leaks via NEXT_PUBLIC_* / VITE_* / REACT_APP_*.

For a JSX/TSX PR, invoke both agents. For a pure .ts change with no React imports, invoke only typescript-reviewer.

When invoked

  1. Establish review scope from the actual base branch (do not hard-code main). Prefer git diff --staged -- '*.tsx' '*.jsx' for local review.
  2. Inspect PR merge readiness when metadata is available; stop and report if checks are red or conflicts exist.
  3. Run the project's lint command; require eslint-plugin-react-hooks (rules-of-hooks + exhaustive-deps). Flag missing config as HIGH.
  4. Run the project's typecheck command. Skip cleanly for JS-only projects.
  5. If no JSX/TSX changes in the diff, defer to typescript-reviewer and stop.
  6. Focus on modified .tsx/.jsx files; read surrounding context before commenting. Begin review.

You DO NOT refactor or rewrite code -- you report findings only.

Review Priorities (React-specific only)

CRITICAL -- React Security

  • dangerouslySetInnerHTML with unsanitized input -- halt review until source documented and sanitizer at the call site
  • href/src with unvalidated user URLs -- javascript: / data: schemes execute code; require scheme validation
  • Server Action without input validation -- "use server" functions accepting FormData without zod/yup/valibot schema
  • Secret in client bundle -- NEXT_PUBLIC_*, VITE_*, REACT_APP_* holding a private key/token
  • localStorage/sessionStorage for session tokens -- accessible to any XSS; require httpOnly cookies

Read the full file on GitHub · 109 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. 2d ago First seen · 109 lines · 53 tokens per session scan A d1c43ed931ce

Subscribe to this mod's changes

react-reviewer is an agent published in the GitHub repository affaan-m/ECC (250,130 stars, last pushed today), licensed MIT. It adds 53 tokens to every session and 1,280 once invoked, about $0.0003 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 agents, from other repositories

ts-reviewer

Review TypeScript/React code against SocialApp frontend patterns.

RaNDoM6913/claude-code-superkit · 15 tokens

devops-architect

DevOps and CI gate expert for the ClosedLoop plugin monorepo. Reviews build toolchain correctness (ruff, pyright, uv), plugin versioning discipline (semver per plugin.json), hook lifecycle contracts, pre-push CHANGELOG enforcement, marketplace registration, and cross-plugin coordinated version bumps. Triggers on…

closedloop-ai/claude-plugins · 95 tokens

json-schema-architect

Reviews JSON Schema draft-07 design patterns, validation rules, schema composition, and contract adherence for agent definitions, plugin manifests, and workflow artifacts. Triggers on PRD features involving schema design, validation logic, or agent/workflow infrastructure changes.

closedloop-ai/claude-plugins · 54 tokens

plugin-manifest-expert

Validates plugin.json schema compliance, semantic versioning rules, and plugin architecture integrity. Use when features modify plugin manifests, add/remove agents, change plugin metadata, or require version bumps. Triggers on "update plugin.json", "version bump", "add agent to plugin", "plugin structure", or…

closedloop-ai/claude-plugins · 70 tokens

python-pro

Python 3.13 language expert for the ClosedLoop plugin monorepo. Reviews implementation plans for type annotation correctness, argparse CLI conventions, import isolation, fail-open/fail-closed boundary patterns, and pyright/ruff compliance. Produces type-patterns.md in legacy mode.

closedloop-ai/claude-plugins · 60 tokens

design-unit-analyst

Analyzes one design unit (screen, region, component, or flow) from a Claude Design export against the current web-ui codebase ("state vs. spec"). Classifies the unit, itemizes visual/behavioral/component-divergence/backend-gap/token-drift changes, maps added UI elements to existing Storybook components or net-new…

closedloop-ai/claude-plugins · 97 tokens