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.
Parallel Tasks
Decompose. Build all tasks at once.When to use
When the spec decomposes naturally into independent tasks with strictly disjoint blast radii. Parallel execution divides run duration by the number of tasks.The workflow
How it works
parallel: true on the split step means each task gets its own worktree. Agents work simultaneously. Merge is sequential in declaration order. File conflict = fatal.
Duration is that of the slowest task, not the sum.
Customize
Use cheaper agents
Use cheaper agents
Replace
claude-sonnet with qwen.Protect shared files
Protect shared files
Test sequentially first
Test sequentially first
Remove
parallel: true to test the workflow sequentially before enabling parallelism.