TuBrief
구독 채널
비디오
커뮤니티

How to Command 30 AI Agents: Scaling Coding Productivity 10x with Gastown

TuBrief 편집팀
2026년 2월 25일
0
Computing/Software

원본 영상을 바탕으로 AI의 도움을 받아 작성했습니다. 원본 영상이 기준입니다.

English한국어中文العربيةEspañolहिन्दीDeutschFrançaisPortuguêsРусскийBahasa Indonesia日本語

관련 영상

I Let 30 AI Agents Loose in My Repo (Gas Town)7:28

I Let 30 AI Agents Loose in My Repo (Gas Town)

Better Stack

커뮤니티의 다른 글

사내 시스템에 llm api 붙일 때 마주하는 현실적인 한계와 대응법

2026년 9월 13일

레거시 백엔드에 GPT-6 Astra 붙일 때 예산 승인과 보안 통과를 먼저 끝내는 법이 있습니다

2026년 9월 13일

에이전트끼리 대화하다 6천만 원 청구서가 나오는 이유

2026년 9월 13일

사내 RAG 벡터 검색에 Okta 권한 필터를 직접 거는 방법

2026년 9월 13일

브라우저 에이전트에게 내 구글 계정을 통째로 넘기면 안 되는 이유

2026년 9월 12일

Apple Won the AI Race

2026년 9월 12일

댓글 (0)

Log in to leave a comment

아직 작성된 글이 없습니다

© 2026 . All rights reserved.

TuBrief
구독 채널
비디오
커뮤니티
로그인

How to Command 30 AI Agents: Scaling Coding Productivity 10x with Gastown

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 Architecture: Perfect Results from Unreliable Workers

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.

  • Mayor: The central coordinator of the entire system. It analyzes the developer's goals and decomposes them into small units of work called Beads.
  • Bead: Persistent issue data backed by Git. This is the core mechanism that preserves work history even if an agent session crashes.
  • Polecat: One-time workers that actually modify code in independent Git worktrees. They vanish immediately after the task is completed to prevent code conflicts.

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.

Agent Deployment Strategy by Project Scale

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.

Practical Application: Guide to Building a JWT Auth System

Suppose you are adding JWT authentication to a Go-based application. Here is how you move the legion with a single line of command:

  1. Access the Mayor: Start the session with the gt mayor attach command.
  2. Set the Goal: "Build a JWT system for the Go project. Include DB schema changes, login API, middleware, and integration tests."
  3. Orchestration: "Do not write it yourself; decompose the tasks and delegate them to Polecats. Perform reviews with the Refinery."
  4. Monitoring: Check the progress of each agent in real-time with gt convoy list.
  5. Review: Approve the final result merged by the Refinery after checking it with 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.

The New Role of the Senior Engineer: System Architect

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.