claude-code-plan-critique
Health Pass
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 11 GitHub stars
Code Pass
- Code scan — Scanned 3 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
A Claude Code plugin for iterative plan review and execution. Plan->Critique (N times)->Execute
claude-code-plan-critique
Plan -> Critique (N times) -> Execute -> Archive
Claude Code commands for iterative plan review and execution.
Enables you to work with multiple user written plans while keeping control of the feedback-loop from the LLM.
See ghita.org/blog/claude-code-plan-critique for a better explanation of this project.
How is this different from plan mode?
Claude Code has a built-in plan mode where Claude writes the plan and you approve or reject it.
This plugin inverts that: you write the plan, Claude critiques it, and you decide which feedback
to accept. The critique loop can run as many times as you want.
It is slower by design. You read each critique, cherry-pick changes, and iterate until the plan
is yours — not Claude's interpretation of what you asked for. This is micro-management on purpose.
Plan mode is great when you trust Claude to drive. This plugin is for when you want to drive and
use Claude as a reviewer. The plans are persistent files you own, they can be archived for future
reference, and you can work on multiple plans in parallel across terminals.
Install
Marketplace installation (recommended)
Add the marketplace and install the plugin from within Claude Code:
/plugin marketplace add serbanghita/claude-code-plan-critique
/plugin install plan-critique@serbanghita
Manual installation via git clone
Clone the repository and copy the commands to your project:
git clone https://github.com/serbanghita/claude-code-plan-critique.git && \
mkdir -p .claude/commands && \
cp -r claude-code-plan-critique/.claude/commands/* .claude/commands/ && \
rm -rf claude-code-plan-critique
If Claude Code is already running, restart it to load the new commands.
How it works
/plan-create ──► edit 'plan.md' ──► /plan-critique ──► read 'critique.md', update 'plan.md'
▲ │
└──────── iterate until satisfied ────┘
│
▼
/plan-execute ──► /plan-archive
Usage
Pre-requisites
- Claude Code CLI installed
- A
CLAUDE.mdfile in your project root with your project standards
Commands
/plan-create- Create a new plan in.planning/[plan name]/plan.md. Asks for the plan name./plan-critique- Claude Code reviews your plan. Generates acritique.mdwith issues and suggestions.- User decides which parts of critique are good for the plan and updates
plan.md. Go back to 2. /plan-execute- Execute your plan. Parses the plan into steps, asks for confirmation, and runs each step. Supports resume on failure./plan-archive- Archive a completed plan. Moves it to.planning/archived/and deletes the original.
Parallel Plans
You can work on multiple plans simultaneously in separate terminals. Each Claude Code session tracks its own
current plan via session files in .planning/.sessions/.
Example workflow with two terminals:
Terminal 1 Terminal 2
────────────────────────────────── ──────────────────────────────────
/plan-create "Add Authentication" /plan-create "Fix Database Bug"
edit plan.md edit plan.md
/plan-critique /plan-critique
... ...
Each terminal remembers which plan it's working on. When you run /plan-critique or /plan-execute, your
session's plan is marked as "(current session)" in the selection list.
Add .planning/.sessions/ to your .gitignore - these are local session files that should not be committed.
Credits
Created by Serban Ghita under MIT License
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found