Documentation Index
Fetch the complete documentation index at: https://gump.build/docs/llms.txt
Use this file to discover all available pages before exploring further.
Human-in-the-Loop
Sometimes you want to review an agent’s output before the workflow continues. Gump supports pausing a run for human intervention with two positions.hitl: before_gate (default)
Pause after the RUN, before the GATE. You inspect the worktree and decide to continue (the gate runs) or abort.hitl: true is an alias for hitl: before_gate.
hitl: after_gate
Pause after the GATE, before retry. You see the gate results and decide to continue, abort, or modify the worktree manually.—pause-after
Pause after a specific step without modifying the YAML:hitl: before_gate, but from the command line. Useful for debugging or one-off reviews.
Manual intervention
While paused, you have full access to the worktree. You can edit files, modify the plan, run your own tests, or delete generated code. When you resume withgump run --resume, Gump picks up from the current worktree state.