for Claude Code

Autonomous plan execution
that never leaves your session.

planasaurus runs your implementation plan end-to-end โ€” implement, review, fix, repeat โ€” with a deterministic state machine steering and subagents doing the judgment. No external runner. No per-call billing.

Drop a plan in, walk away
/planasaurus:run docs/plans/your-plan.md
How it works

A compiled brain. Subagent hands.

The control flow โ€” loops, counters, convergence, when to stop โ€” lives in a tiny deterministic binary. Claude only does what it's good at: writing code, reviewing it, fixing it. Tokens are never spent deciding what to do next.

01
Branch
Isolate the work on a feature branch.
โ†’
02
Task loop
One task per iteration, tests & commit.
โ†’
03
Review
5 parallel lenses, verify & fix.
โ†’
04
External
Codex or adversarial second opinion.
โ†’
05
Finalize
Re-review, archive the plan.
Why it's different

Determinism where it matters.

๐Ÿง 

Zero tokens on control flow

A compiled state machine decides every step. The model obeys one instruction at a time โ€” it can't lose count across 15 review rounds.

๐Ÿ’ธ

One session, flat rate

No claude -p fan-out, no spawned processes. Everything runs as in-session subagents under your existing plan.

โ™ป๏ธ

Crash-resumable

All state lives on disk in .planasaurus/. Crash, compaction, closed laptop โ€” re-run the command and it picks up exactly where it stopped.

๐Ÿ”

Never zero external review

Uses the codex plugin if present, otherwise an adversarial Claude on a different model tier. There is always a second opinion.

Install

Two commands in Claude Code.

Add the marketplace, then install the plugin.

# add the Rayforce marketplace
/plugin marketplace add RayforceDB/planasaurus

# install the plugin
/plugin install planasaurus@rayforce
Write a plan

Use Claude Code's brainstorming + plan-writing flow to produce a plan file with [ ] task checkboxes.

Run it

/planasaurus:run docs/plans/your-plan.md โ€” optionally --skip-codex or --max-iterations=N.

Walk away

It implements each task, runs multi-agent review, takes an external second opinion, fixes what's real, and archives the plan when done.

Requires a git repository. The codex external-review step is optional โ€” without the codex plugin it falls back to an adversarial Claude reviewer.