buildcrew vs gstack
| buildcrew | gstack | |
|---|---|---|
| Install | npx buildcrew (interactive setup) | git clone + Bun + ./setup |
| Orchestration | Auto (orchestrator routes to agents) | Manual (/qa, /review, ...) |
| Harness | init + add + custom .md | Manual CLAUDE.md |
| Dependencies | None | Bun, Playwright binary (~58MB) |
| Browser testing | Playwright MCP (required) | Custom Playwright daemon |
| Pipeline docs | Auto-generated chain (01-07) | Per-skill output |
| Agents | 18 (9 opus, 9 sonnet) + 7 Agent Skills | 34 skills |
| Model strategy | Mixed (opus for thinking, sonnet for doing) | Same model for all |
| Second opinion | Built-in (Codex or Claude subagent) | Built-in (Codex) |
| Product thinking | thinker agent (6 forcing questions) | /office-hours skill |
| Architecture review | architect agent (before code) | /plan-eng-review skill |
| Design review | design-reviewer agent (8-dim scoring) | /plan-design-review skill |
| Customization | Edit .md directly, version auto-update | May overwrite on update |
| Multi-agent support | Claude Code (subagents) + Agent Skills tools (Codex, Cursor, Copilot, Gemini CLI) | Claude, Codex, Gemini CLI, Cursor |
buildcrew strengths
- Auto-orchestration β describe what you need, orchestrator routes to the right agents
- Full lifecycle β think, plan, design, build, test, review, ship, monitor
- Harness engineering β project context baked into every agent
- Pipeline documentation β every decision traceable
- Second opinion β independent review after every mode
- Zero deps β just Markdown files
- Interactive setup β one command, everything configured
gstack strengths
- More skills β 34 vs 7 (buildcrew's 7 skills wrap 13 modes)
- Multi-host β works with Codex, Gemini CLI, Cursor
- Chrome cookie import β login as real user for QA
- Community β 60K+ stars, active development
- Design generation β AI-generated visual mockups (GPT Image API)
- Performance benchmarks β Core Web Vitals regression detection
When to use which
- buildcrew β you want one tool that handles everything automatically. Just talk to
@buildcrew. - gstack β you want granular control with explicit
/commands, or you use multiple AI tools beyond Claude Code. - Both β gstack for planning/review decisions, buildcrew for automated execution. They complement each other.