-
Notifications
You must be signed in to change notification settings - Fork 8
Home
rocklambros edited this page Feb 5, 2026
·
5 revisions
Zero-Effort Rapid Growth — A parallel Claude Code execution system that coordinates multiple Claude Code instances to build software features simultaneously. ZERG auto-detects your tech stack, fetches security rules, generates dev containers, breaks features into atomic tasks with exclusive file ownership, and launches a swarm of zerglings to execute them in parallel across dependency levels.
# Install ZERG
git clone https://github.com/rocklambros/zerg.git && cd zerg
pip install -e ".[dev]"
zerg install # Install slash commands
# Inside Claude Code session:
/zerg:init # Initialize project
/zerg:plan user-auth # Plan a feature
/zerg:design # Generate architecture
/zerg:rush --workers=5 # Launch the swarm
/zerg:status # Monitor progress- Python 3.12+
- Claude Code CLI
- Git
- Docker (optional, for container mode)
git clone https://github.com/rocklambros/zerg.git
cd zerg
pip install -e ".[dev]"
pre-commit install
zerg install| Page | Description |
|---|---|
| Home | Project overview and quick start (this page) |
| Command-Reference | All 26 commands with flags, examples, and usage |
| Configuration |
.zerg/config.yaml, environment variables, tuning |
| Architecture | System design, module reference, execution model |
| Tutorial | Minerals-store walkthrough demonstrating all ZERG features |
| Plugins | Quality gates, lifecycle hooks, custom launchers |
| Security | Security rules integration, vulnerability reporting |
| Context-Engineering | Token optimization, command splitting, task context |
| Troubleshooting | Common issues, diagnostics, recovery procedures |
| FAQ | Frequently asked questions |
| Contributing | Development setup, code style, PR process |
-
Plan (
/zerg:plan) — Capture requirements through interactive questioning -
Design (
/zerg:design) — Generate architecture and task graph with file ownership -
Rush (
/zerg:rush) — Launch parallel zerglings to execute tasks by level -
Merge (
/zerg:merge) — Quality gates and branch merging after each level
| Concept | Description |
|---|---|
| Spec as Memory | Zerglings read spec files, not conversation history. Stateless and restartable. |
| Exclusive File Ownership | Each task owns specific files. No merge conflicts within a level. |
| Levels | Tasks grouped by dependencies. Level N completes before Level N+1 begins. |
| Verification Commands | Every task has an automated verification. Pass or fail, no subjectivity. |
| Context Engineering | Per-task context scoping minimizes token usage by 30-50%. |
| Category | Commands |
|---|---|
| Core Workflow |
/zerg:init, /zerg:brainstorm, /zerg:plan, /zerg:design, /zerg:rush
|
| Monitoring & Control |
/zerg:status, /zerg:logs, /zerg:stop, /zerg:retry, /zerg:merge, /zerg:cleanup
|
| Quality & Analysis |
/zerg:build, /zerg:test, /zerg:analyze, /zerg:review, /zerg:security, /zerg:refactor
|
| Utilities |
/zerg:git, /zerg:debug, /zerg:worker, /zerg:plugins, /zerg:create-command
|
| Documentation & AI |
/zerg:document, /zerg:index, /zerg:estimate, /zerg:explain, /zerg:select-tool
|
See Command-Reference for complete documentation.
- GitHub Repository
- README.md — Tutorial-focused getting started guide
- ARCHITECTURE.md — System design details
- Security Rules — Auto-fetched secure coding rules
Home | Getting Started | Command Reference | Configuration | Troubleshooting | FAQ
ZERG -- Parallel Claude Code execution system. GitHub Repository
ZERG Wiki
Getting Started
Reference
Guides
Help