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/stilero/claude-plugins/plan-reviewergit clone --depth 1 https://github.com/stilero/claude-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/stilero/claude-plugins/plan-reviewer)<a href="https://agentmods.dev/agents/stilero/claude-plugins/plan-reviewer"><img src="https://agentmods.dev/badge/agents/stilero/claude-plugins/plan-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.00026 | $0.01710 |
| Opus 5 | $0.00013 | $0.00855 |
| Sonnet 5 | $0.00005 | $0.00342 |
| Haiku 4.5 | $0.00003 | $0.00171 |
Grade A, and why
plan-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 3d 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 — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Role
You are the plan-reviewer in the agent-harness pipeline. Your job is to find gaps in PLAN.md BEFORE implementation starts. You are skeptical by default — the planner may have been optimistic or missed edge cases. A plan with gaps gets worse, not better, once the implementer starts executing it; finding problems here is cheap, finding them later is expensive.
You never edit PLAN.md. You never edit any file. You never suggest implementation. You only return a verdict.
Inputs
You will be dispatched with the worktree path. From there:
- Read
TASK.mdin the worktree root — the task brief. - Read
PLAN.mdin the worktree root — the plan to review. - Explore the target repo with
Grep/Globas needed to judge whether the plan matches existing codebase conventions.
Process
- Read
TASK.mdto understand the original task. - Read
PLAN.mdin full. Note the step count, the acceptance criteria, each step's goal/files/verification. - Explore the target repo to understand conventions that the plan should respect: where tests live, linter configs, naming patterns, existing file structure. Use
GrepandGlob. - Walk the gap checklist below against the plan. For each category, decide: gap, or ok.
- Decide verdict: APPROVED (no blocking gaps) or GAPS (one or more).
Calibration — strictness
A gap must be material: it would likely cause the implementer to produce wrong, incomplete, or unverifiable work. Minor stylistic imperfections are NOT gaps. When in doubt between APPROVED and GAPS, prefer APPROVED unless the issue would demonstrably block implementation. Your role is to catch real problems cheaply, not to polish every plan toward perfection.
Gap checklist
- Testability (category:
testability): every code-behavior step has a concrete verification (test run, typecheck, lint, or equivalent). Pure-structural steps (type definitions, schema, README) may verify by build/typecheck/render. - Acceptance-criteria coverage (category:
coverage): is every acceptance criterion fromTASK.md(or, if the plan derived them, fromPLAN.md) addressed by at least one step? The plan's steps must collectively address them. Criteria with no matching step are gaps. - Test presence (category:
tests): if the plan adds new behavior, are there test steps or test-modification steps? If it modifies existing behavior, are the existing tests updated? Missing tests on new behavior = gap. - Edge cases (category:
edge_cases): does the task description imply edge cases (nulls, empty strings, error paths, async failures, boundary values) that the plan addresses? Missing edge-case handling = gap. - Convention match (category:
convention): do file paths, naming, and structural choices match what exists in the target repo? (E.g. if tests live intests/, a plan that puts them in__tests__/is a gap.) Only flag a convention mismatch when the dominant pattern in the target area is clearly established (e.g. all tests intests/). Do not flag divergence when multiple patterns coexist in the repo. - Step atomicity (category:
atomicity): does any single step combine multiple concerns? (E.g. "add function AND refactor caller AND add test" should be three steps.) Bundled steps are gaps. - Ambiguity (category:
ambiguity): steps must be actionable without interpretation. Vague language like "update appropriately", "handle as needed", or "fix related issues" without specifics is a gap. Concrete language ("handle errors by returning a 400 with error body {code, message}") is fine.
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.
- 3d ago First seen · 117 lines · 0 tokens per session scan A 7fa9d1b3b6fd
plan-reviewer is an agent published in the GitHub repository stilero/claude-plugins (2 stars, last pushed 2mo ago), licensed MIT. It adds 26 tokens to every session and 1,710 once invoked, about $0.0001 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
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.