Explore the Playbook
Before writing your own workflows, explore what’s already available. Gump ships with 8 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: Everyday tasks — Start withcheap2sota. It’s the cheapest and works for most things. If you want a review step, use full-cycle.
Quality-sensitive work — Use tdd for test-driven development, or adversarial-review for critical changes that need multi-agent review.
Large specs — Use parallel-tasks if items are independent with disjoint file scopes. Otherwise, cheap2sota or tdd process items 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:--workflow 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