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.
Explore the Playbook
Before writing your own workflows, explore what’s already available. Gump ships with 7 built-in workflows covering the most common engineering patterns.List available workflows
Inspect a workflow
Which workflow to pick
The choice depends on what you’re doing: Quick experiments — Start withfreeform. Single agent, no plan, no decomposition.
Everyday tasks — Use cheap2sota. Cheapest first, escalates only on failure.
Quality-sensitive work — Use tdd for test-driven development, or implement-spec for adversarial review with convergence.
Large specs — Use parallel-tasks if tasks have disjoint file scopes. Otherwise, cheap2sota or tdd process tasks sequentially.
Bugs — Use bugfix. It enforces the “reproduce first, fix second” discipline.
Refactoring — Use refactor. It validates that existing tests stay green after every change.
Each workflow is documented in detail in the Playbook section, with the full YAML, an explanation of how it works, and customization hints.
Override a built-in
If you want to customize a built-in workflow, copy it to your project:cheap2sota, Gump will use your version.
Workflows are looked up in this order:
- Project:
.gump/workflows/<name>.yaml - User:
~/.gump/workflows/<name>.yaml - Built-in: shipped with Gump