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.
npx agentmods add agents/makigjuro/cloudstack-ai-plugins/frontend-reviewergit clone --depth 1 https://github.com/makigjuro/cloudstack-ai-pluginsWrote 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.
[](https://agentmods.dev/agents/makigjuro/cloudstack-ai-plugins/frontend-reviewer)<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>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.
| Model | Per session | Once 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 |
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.
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
- Get the diff:
git diff origin/main...HEAD -- <frontend-path>/ - Get changed files:
git diff origin/main...HEAD --name-only -- <frontend-path>/ - If
cloudstack.jsonexists, readfrontend.pathto determine the frontend directory - Review each changed file against the checklists below
Accessibility Checklist
Interactive Elements
- All
<button>elements have accessible text (visible label oraria-label) - All
<a>links have descriptive text (not "click here") - All
<img>tags havealtattributes (emptyalt=""is OK for decorative images) - Form inputs have associated
<label>elements oraria-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 properrole="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: nonewithout 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/useMemoused 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
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.
- 4d ago First seen · 167 lines · 37 tokens per session scan A dca9d6b91dd8
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.
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.
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.
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.
ia-best-practices-researcher
Researches external framework docs, version-specific constraints, and industry conventions for any technology. Use when you need authoritative external documentation.
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.
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.