The Dispatch Pattern: How I Shipped 25 PRs in One Night Without Touching the Code
I kept hitting the same ceiling. One repo was manageable. Two was annoying. Three or four active codebases meant my time disappeared into context switching. Open a branch. restate the task. wait for CI. switch repos. lose the thread. repeat. So I stopped trying to code faster and built a dispatch layer instead. The core idea is simple: one orchestrator assigns work, isolated coding agents execute it in parallel, and the system treats failures as normal operating conditions. ...