Log in to leave a comment
No posts yet
The era of asking a simple chatbot for code and waiting for an answer is over. While Claude Code or GitHub Copilot are excellent assistants, they are too slow and linear for modifying enterprise systems where hundreds of files are intertwined. Relying on a single AI that loses context and wanders during long sessions is now nothing more than a productivity bottleneck.
Now is the era of Agent Orchestration. Gastown, an open-source project proposed by Steve Yegge, aims for a "coding factory" system that runs more than 30 AI agents simultaneously to decompose features and build them in parallel. You must now stop being a coder and become an orchestrator commanding an AI legion.
Gastown is not just a simple AI wrapper. It adopts distributed computing principles to solve the instability of individual agents through system structure. The key is to clearly separate roles and break down tasks into atomic units.
The core of this structure is escaping from Vibe Coding (coding by gut feeling). Gastown physically prevents agents from committing directly to the main branch through a PreToolUse hook system. All code is written in separate feature branches and must pass the Refinery's rigorous test validation before being integrated.
Deploying dozens of agents for every task is a waste of API costs. You must distribute firepower appropriately according to the complexity of the task.
| Project Scale | Agent Configuration | Core Strategy |
|---|---|---|
| Small (Bug Fixes) | 1 Mayor + 1-2 Polecats | Focus on giving instructions and reviewing outputs rather than direct coding |
| Medium (New API) | 1 Mayor + 5-10 Polecats | Process frontend and backend tasks in parallel |
| Large (Arch Change) | 1 Mayor + 20-30 Polecats | Deploy Witness agents to resolve bottlenecks in real-time |
When running 30 agents during a large-scale migration, a task that would take 6 hours of manual work is shortened to around 20 minutes. However, this assumes optimization of model allocation. Maximize cost efficiency by assigning high-performance models like Claude 3.5 Sonnet to the Mayor in charge of design, and cost-effective models like Gemini to the Polecats performing simple implementation or testing.
Suppose you are adding JWT authentication to a Go-based application. Here is how you move the legion with a single line of command:
gt mayor attach command.gt convoy list.gt status.If things aren't running smoothly, check your environment first. It is essential to ensure that your Dolt version is 1.82.4 or higher. Older versions cause Git database synchronization errors, leading to task conflicts between agents. Also, if there are issues running the daemon, verify that tmux -V is version 3.0 or higher, then run gt doctor --fix to initialize the environment.
Operating 30 AI agents simultaneously means you are no longer typing. Now, an engineer's true skill lies in how sophisticatedly they record architectural decisions in instruction documents like CLAUDE.md.
Agents are great assistants, but without proper management, they are like super-intelligent chimpanzees that can paralyze a system. Always run them in a separate experimental Rig and set API cost limits. To reduce the fatigue of reviewing dozens of PRs individually, deploy additional "Sheriff" agents to act as PR gatekeepers, filtering out syntax errors and failed tests in the first pass. Your software factory is now ready for operation.