What problem does it solve?
Executing approved plans reliably prevents wishful thinking by enforcing ordered step execution, verification gates, human checkpoints, and safe rollback when failures occur.
Core Features & Use Cases
- Batch, step-by-step execution: Runs plan steps in order and tracks overall progress through the entire workflow.
- Verification-first safety: Executes each step, then runs a verification command to confirm success before continuing.
- Human checkpoints and controlled pause: Pauses at configurable checkpoints (e.g., after N steps or before destructive operations) for human confirmation.
- Rollback capability: Captures pre-change state before each step and reverts to the last known-good checkpoint or presents options to the human on failure.
- Use case example: Roll out a multi-file refactor where each change is verified, and if any step fails verification the system can automatically revert and let you retry or modify the failing step.
Quick Start
Use executing-plans to run an approved multi-file change plan while pausing for human review after every few steps and automatically rolling back if verification fails.