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.
Gump Eats Its Own Cooking
How we build Gump, with Gump.What this is
This is the workflow the Gump team uses to develop Gump itself. It’s published for transparency and as a reference for building advanced workflows combining TDD, adversarial review via validators, and custom gates. This is not a workflow you should copy as-is. It’s a reference for building your own.The workflow
How it works
The plan is validated manually (hitl: before_gate). Each task follows: tests (TDD red) → impl (TDD green) → validator review → convergence if needed.
The max_budget: 3.00 guard on impl prevents a single task from consuming the entire run budget. The final smoke gate runs an end-to-end smoke test suite.
Real metrics
From actual Gump development runs. Updated as significant data accumulates.| Metric | Value |
|---|---|
| Average cost per run | 8 |
| Tasks per run | 2–5 |
| First-try success rate (impl) | ~60% |
| Average retries per task | 1.4 |
| Escalations per run | 0–2 |
| Average duration | 3–7 min |
Adapt to your project
Replace the smoke gate
Replace the smoke gate
bash: "make smoke-test" is specific to Gump. Replace with your own integration test.Remove HITL
Remove HITL
Remove
hitl: before_gate on decompose for CI/CD pipelines.Adjust per-step budget
Adjust per-step budget
The
max_budget: 3.00 on impl is calibrated for Gump. Adjust for your task sizes.Swap the validator
Swap the validator
Replace
validators/correctness-review with your own domain-specific reviewer.