/human-execute
Loads an implementation plan and executes it step by step, then runs a review checkpoint.
Usage
/human-execute <ticket-key>
How it works
- Loads the plan from
.human/plans/<key>.md(falls back to.human/bugs/<key>.mdfor bug fix plans) - Fetches the ticket via
human <tracker> issue get <key>for original context - Parses the plan’s changes section into ordered tasks
- Executes each task sequentially:
- Reads the target file before modifying it
- Makes the change described in the plan
- Verifies the change compiles/parses correctly
- Runs a review checkpoint by invoking the /human-review agent
- Runs a done checkpoint internally to verify completion
- Reports: files created, files modified, review outcome, done verdict
Prerequisites
A plan must exist at .human/plans/<key>.md or .human/bugs/<key>.md. If neither exists, run /human-plan or /human-bug-plan first.
What comes next
The executor automatically invokes review and done checkpoints. If the done verdict is NOT DONE, address the remaining items and re-run /human-execute.