Skip to main content

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.

Adapt to your project

bash: "make smoke-test" is specific to Gump. Replace with your own integration test.
Remove hitl: before_gate on decompose for CI/CD pipelines.
The max_budget: 3.00 on impl is calibrated for Gump. Adjust for your task sizes.
Replace validators/correctness-review with your own domain-specific reviewer.