kojott/claude-replan

7 stars · Last commit 2026-03-20

Claude Code plugin for validating implementation plans with parallel review subagents — checks codebase alignment, best practices, feasibility, and blind spots before execution

README preview

# claude-replan

A Claude Code plugin for plan validation and post-implementation review. `/replan` validates plans before execution, `/recheck` verifies the implementation matches the plan afterward. Both use parallel review subagents checking from multiple angles.

## The problem

You write a plan. It looks solid. You start executing. Three tasks in, you realize the plan assumed a function that doesn't exist, missed a critical edge case, or ignored your project's conventions entirely. Now you're rewriting the plan mid-flight.

## The solution

`/replan` throws your plan at a squad of parallel review agents before you write a single line of code. Each agent has a different job — one checks if the code references are real, another stress-tests feasibility, another reads the plan cold and asks "what did everyone miss?"

The result: a plan that's been pressure-tested from every angle, with all findings incorporated automatically.

## How it works

```
You: /replan

Claude: Reviewing the plan with parallel subagents...

View full repository on GitHub →