review-plan

review-plan is a command for Claude Code from sefaertunc/Worclaude. It costs 20 tokens per session (663 once invoked), scanned A, original, MIT.

A command that finds an implementation plan in the project's .claude/plans/ folder and sends it to a plan-reviewing agent. An implementation plan is a written outline of the code changes needed for a feature or fix.

In plain words
What is it for?
Use it to review one available plan, or choose among several plans, with the project's conventions and specification included as context.
Why use it?
It catches vague steps, missing checks, unrealistic scope, edge cases, and mismatches with the project's specification before coding begins.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md; names the AskUserQuestion tool.

Good fit Use it to review one available plan, or choose among several plans, with the project's conventions and specification included as context.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/sefaertunc/worclaude/review-plan
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.

Clone the repo
git clone --depth 1 https://github.com/sefaertunc/Worclaude

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/sefaertunc/worclaude/review-plan.svg)](https://agentmods.dev/commands/sefaertunc/worclaude/review-plan)
Your own site
<a href="https://agentmods.dev/commands/sefaertunc/worclaude/review-plan"><img src="https://agentmods.dev/badge/commands/sefaertunc/worclaude/review-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 663 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.00020 $0.00663
Opus 5 $0.00010 $0.00331
Sonnet 5 $0.00004 $0.00133
Haiku 4.5 $0.00002 $0.00066

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

Security

Grade A, and why

review-plan 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 8d 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.

.claude/commands/review-plan.md · 93 lines

How it starts

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

Send an implementation plan to the plan-reviewer agent for staff-level review. The plan-reviewer acts as a staff engineer and critically reviews the plan for ambiguity, missing verification steps, unrealistic scope, edge cases, and SPEC.md alignment.

1. Auto-detect the plan

Read .claude/plans/ and list every file inside (excluding .gitkeep and README.md). Behavior depends on what's present:

  • Zero plan files: Refuse to dispatch. Report: "No plan files found in .claude/plans/. Drop your plan there (any filename) and re-run /review-plan." Do not invoke the agent.

  • Exactly one plan file: Use it directly without asking.

  • Multiple plan files: Use AskUserQuestion (2-4 options) to let the user pick which one to review. For >4 candidates, present a numbered list and ask for a number reply.

Do NOT match filename patterns. The folder convention is the discovery mechanism — anything in .claude/plans/ is a candidate.

2. Auto-load project context

Before dispatching, read these files and pass their contents to the agent so it can check SPEC alignment without a second turn:

  • CLAUDE.md — project conventions and critical rules
  • docs/spec/SPEC.md — the source of truth for what should ship

Include both in the agent's prompt under clearly-labeled sections.

3. Dispatch to plan-reviewer

Agent({
  subagent_type: "plan-reviewer",
  description: "Staff-level review of <plan-file>",
  prompt: "Review the implementation plan below as a senior staff engineer.

PLAN (from .claude/plans/<filename>):
<plan content>

PROJECT CONVENTIONS (from CLAUDE.md):
<CLAUDE.md content>

SPECIFICATION (from docs/spec/SPEC.md):
<SPEC.md content>

Check for: ambiguity, missing verification steps, unrealistic scope,
edge cases, SPEC alignment. Report findings in priority order with
specific file/line references where possible."
})

4. Persist the review output

When the agent returns, write its findings to .claude/scratch/last-plan-review.md with SHA frontmatter so the next session can surface the review via /start:

Read the full file on GitHub · 93 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. 8d ago First seen · 93 lines · 20 tokens per session scan A dae954426e62

Subscribe to this mod's changes

review-plan is a command published in the GitHub repository sefaertunc/Worclaude (4 stars, last pushed 29d ago), licensed MIT. It adds 20 tokens to every session and 663 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.