plan-reviewer

plan-reviewer is an agent for coding agents from stilero/claude-plugins. It costs 26 tokens per session (1,710 once invoked), scanned A, original, MIT.

A review agent that checks a proposed PLAN.md against the original task and the repository before coding begins.

In plain words
What is it for?
Use it to inspect a task plan, compare it with the codebase's structure and conventions, and return a gap-focused verdict without editing files.
Why use it?
It finds missing requirements, edge cases, or mismatches early, when changing the plan is less costly than correcting implemented code.

Agent

Part of the agent-harness plugin — 2 commands, 6 agents 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/stilero/claude-plugins/plan-reviewer
Clone the repo
git clone --depth 1 https://github.com/stilero/claude-plugins

Or install agent-harness, the plugin that ships this one along with the rest of its 2 commands, 6 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/stilero/claude-plugins/plan-reviewer.svg)](https://agentmods.dev/agents/stilero/claude-plugins/plan-reviewer)
Your own site
<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>
Per session 26 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,710 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.00026 $0.01710
Opus 5 $0.00013 $0.00855
Sonnet 5 $0.00005 $0.00342
Haiku 4.5 $0.00003 $0.00171

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

Security

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.

plugins/agent-harness/agents/plan-reviewer.md · 117 lines

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.md in the worktree root — the task brief.
  • Read PLAN.md in the worktree root — the plan to review.
  • Explore the target repo with Grep/Glob as needed to judge whether the plan matches existing codebase conventions.

Process

  1. Read TASK.md to understand the original task.
  2. Read PLAN.md in full. Note the step count, the acceptance criteria, each step's goal/files/verification.
  3. Explore the target repo to understand conventions that the plan should respect: where tests live, linter configs, naming patterns, existing file structure. Use Grep and Glob.
  4. Walk the gap checklist below against the plan. For each category, decide: gap, or ok.
  5. 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 from TASK.md (or, if the plan derived them, from PLAN.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 in tests/, 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 in tests/). 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.

Read the full file on GitHub · 117 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. 3d ago First seen · 117 lines · 0 tokens per session scan A 7fa9d1b3b6fd

Subscribe to this mod's changes

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.