frontend-code-reviewer

frontend-code-reviewer is a skill for Claude Code from pranav8494/team-of-agents. It costs 61 tokens per session (2,210 once invoked), scanned A, original, MIT.

A code-review guide for examining existing frontend changes. It checks accessibility, React behaviour, TypeScript usage, performance, and test quality.

In plain words
What is it for?
Reviewing pull requests, diffs, code snippets, or individual components, with findings grouped by review area and severity.
Why use it?
It helps catch broken interactions, accessibility problems, unnecessary re-renders, type-safety issues, and weak tests before frontend code is merged.

Skill for Claude Code

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

Part of the team-of-agents plugin — 18 skills, 17 agents, 1 hook shipped together

Good fit Reviewing pull requests, diffs, code snippets, or individual components, with findings grouped by review area and severity.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pranav8494/team-of-agents/frontend-code-reviewer
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 pranav8494/team-of-agents --skill frontend-code-reviewer
Clone the repo
git clone --depth 1 https://github.com/pranav8494/team-of-agents

Made for: Claude Code.

Or install team-of-agents, the plugin that ships this one along with the rest of its 18 skills, 17 agents, 1 hook.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/pranav8494/team-of-agents/frontend-code-reviewer/github.svg)](https://agentmods.dev/skills/pranav8494/team-of-agents/frontend-code-reviewer)
Your own site
<a href="https://agentmods.dev/skills/pranav8494/team-of-agents/frontend-code-reviewer"><img src="https://agentmods.dev/badge/skills/pranav8494/team-of-agents/frontend-code-reviewer/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 frontend-code-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/pranav8494/team-of-agents/frontend-code-reviewer"><img src="https://agentmods.dev/badge/skills/pranav8494/team-of-agents/frontend-code-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,210 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.00061 $0.02210
Opus 5 $0.00030 $0.01105
Sonnet 5 $0.00012 $0.00442
Haiku 4.5 $0.00006 $0.00221

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

Security

Grade A, and why

frontend-code-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 12d 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/frontend-code-reviewer/SKILL.md · 192 lines

How it starts

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

Frontend Code Reviewer

Iron Law

Accessibility violations and broken interactions block merging, they are never 'minor'.
Distinguish principle from preference: "this re-renders on every parent update" is a review comment;
"I would have written this differently" is not.

Before Taking Any Action

  1. Announce that you are beginning a code review and note the scope (file names, PR description if provided)
  2. Ask for context if not provided: what is the feature, is there a design reference, are there known constraints?
  3. Present findings as a structured review, run all phases before commenting
  4. Note explicitly any areas you could not fully assess (e.g. runtime behaviour, device-specific rendering)

Task Approach

Use this table to determine what to produce for each task type:

User asks for What to produce
PR / diff review Structured five-phase review (Accessibility → React correctness → TypeScript → Performance → Tests); all findings grouped by phase with severity labels; overall verdict at the end
Review of a single component Same five phases applied to that component; call out what the component does well alongside issues
Accessibility audit of a snippet Phase 1 findings only, with WCAG 2.1 AA criterion cited for each violation and a concrete corrected code example
React pattern check Phase 2 findings only; anti-pattern identified, consequence explained, and replacement code shown
TypeScript strictness review Phase 3 findings only; each unsafe pattern flagged with the specific risk and a type-safe replacement
Performance review Phase 4 findings only; bundle impact and render cost issues each with a measurable description and fix
Test quality review Phase 5 findings only; identify untested paths, query selector quality, and async handling issues
Overall verdict only One-paragraph summary: what the PR does well, what must change before merge, and the verdict label (Approve / Approve with minor comments / Request Changes / Block)

Read the full file on GitHub · 192 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. 12d ago First seen · 192 lines · 61 tokens per session scan A 9308b90bf336

Subscribe to this mod's changes

frontend-code-reviewer is a skill published in the GitHub repository pranav8494/team-of-agents (7 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 2,210 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-08-31.

Related

Other skills, from other repositories

react-effects-audit

Use when auditing React or Next.js components for unnecessary or unsafe useEffect usage -- detects 9 anti-patterns from "You Might Not Need an Effect".

fusengine/agents · 36 tokens

frontend-development

Use when building or structuring a React/Next.js + TypeScript + Tailwind frontend, choosing libraries, or wiring design tokens. Provides the opinionated blessed-library stack and the React-vs-Next decision, all on-token to DESIGN.md and accessible to WCAG AA.

martian56/claude-engineer · 59 tokens

impeccable

Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states.…

gaia-research/gaia-skill-heaven · 189 tokens

ia-frontend-design

Visual design and aesthetic direction for frontend interfaces. Use when building web pages, landing pages, dashboards, Next.js server components, or applications where visual identity matters. For React patterns and testing, use react-frontend.

iliaal/whetstone · 48 tokens

moai-design-tools

Design tool integration specialist covering Figma MCP, Pencil renderer, and Pencil-to-code export. Use when fetching design context from Figma, rendering Pencil designs, or exporting to React/Tailwind code.

modu-ai/moai-adk · 45 tokens

recipe-front-review

Reviews completed frontend implementation for governing-source compliance, scope economy, repository quality, and security, then applies user-approved React corrections.

shinpr/claude-code-workflows · 29 tokens