Bot Team Setup Workflow

Streamline the setup of multiple Telegram Bots into a cohesive team workflow.

設定多 Bot 協作團隊的標準流程。

目標

將多個 Telegram Bots 設定為獨立 Agents,各自負責不同工作,由中央協調者管理。

步驟

1. 新增 Bot 帳號

# 在 openclaw.json 加入新帳號
openclaw channels login --channel telegram --account <name>

2. 建立 Agent

openclaw agents add <agent-id> --workspace ~/.openclaw/workspace-<agent-id>

3. 設定 Binding

在 openclaw.json 加入:

"bindings": [
  {
    "agentId": "<agent-id>",
    "match": {
      "channel": "telegram",
      "accountId": "<account-id>"
    }
  }
]

4. 設定模型

在 agent 設定中加入:

"model": "<provider/model>"

5. 設定 SOUL.md

為每個 Agent 定義:

  • 角色 Identity
  • 工作職責
  • 溝通風格

6. 設定 Subagents 權限

在 main agent 加入:

"subagents": {
  "allowAgents": ["<agent-1>", "<agent-2>", ...]
}

團隊配置範例

BotAgent模型角色
KiramainMiniMax協調者
Cynthiacynthiaqwen2.5:7b快速回覆
史萊姆slimellama3學習/記憶
Teamteammistral團隊協調
Evolutionevolutiondeepseek-coder優化/進化

更新:2026-02-27