Install
openclaw skills install agent-swarm-dev-teamAgent Swarm 一人开发团队 - 编排多个 AI 编码 Agent(Codex + Claude Code)完成开发任务
openclaw skills install agent-swarm-dev-team编排多个 AI 编码 Agent,一人完成开发团队的工作量
node scripts/init-swarm.cjs
# Codex Agent
./scripts/run-agent.sh codex "feat/custom-templates" "gpt-5.3-codex"
# Claude Code Agent
./scripts/run-agent.sh claude "fix/billing-bug" "claude-opus-4.5"
./scripts/check-agents.sh
# 中途纠偏
tmux send-keys -t codex-templates "Stop. Focus on the API layer." Enter
你(决策者)
└── Zoe(OpenClaw 编排器,业务上下文)
├── Codex Agent 1(feat/custom-templates,tmux: codex-templates)
├── Codex Agent 2(fix/billing-bug,tmux: codex-billing)
├── Claude Code Agent(feat/ui-refresh,tmux: cc-ui)
└── Cron 监控脚本(每 10 分钟,check-agents.sh)
├── 检查 tmux 会话是否存活
├── 通过 gh CLI 检查 PR 和 CI 状态
└── 失败 → Zoe 重写 Prompt → 重生 Agent
Agent 必须知道:PR 创建 ≠ 完成
| 模型 | 适用场景 | 特点 |
|---|---|---|
| Codex (gpt-5.3-codex) | 后端逻辑、复杂 Bug、多文件重构 | 慢但深入 |
| Claude Code (claude-opus-4.5) | 前端、Git 操作 | 快速,权限问题更少 |
| Gemini | UI 设计规范 | 生成 HTML/CSS 规范 |
.clawdbot/active-tasks.json{
"id": "feat-custom-templates",
"tmuxSession": "codex-templates",
"agent": "codex",
"description": "Custom email templates for agency customer",
"repo": "medialyst",
"worktree": "feat-custom-templates",
"branch": "feat/custom-templates",
"startedAt": 1740268800000,
"status": "running",
"notifyOnComplete": true
}
| 原方案 | 国内替代 |
|---|---|
| Telegram | 飞书自定义机器人 |
| Telegram | 钉钉自定义机器人 |
| Telegram | 企业微信应用消息 |
| 原方案 | 国内替代 |
|---|---|
| Sentry | 阿里云 ARMS |
| Sentry | 腾讯云前端性能监控 |
🤖 一人完成开发团队的工作量!