#Multi-agent with channel routing.

1 messages ยท Page 1 of 1 (latest)

tepid obsidian
#

I'm trying to configure my openclaw with a basic :

  • 2 agents (main and buzz)
  • 1 telegram channel per agent

I allready check telegram tokens for both bots. They are ok and in .env

It doesn't work :

  • ChiefBot answer but with agent buzz

  • BuzzBot never answers

    "list": [ { "id": "main", "name": "main", "workspace": "~/.openclaw/workspace", "model": "mistral/mistral-small-latest", "subagents": { "allowAgents": [ "*" ] }, "identity": { "name": "Chief", "theme": "Assistant IA with bear energy", "emoji": "๐Ÿป" }, "tools": { "alsoAllow": [ "wiki_apply", "wiki_get", "wiki_lint", "wiki_search", "wiki_status", "ollama_web_search", "ollama_web_fetch" ] } }, { "id": "buzz", "name": "buzz", "workspace": "~/.openclaw/workspace-buzz", "agentDir": "~/.openclaw/agents/buzz/agent", "model": "mistral/mistral-small-latest", "identity": { "name": "Buzz", "theme": "Communication specialist with a spider vibe", "emoji": "๐Ÿ•ท๏ธ" }, "skills": [ "LinkedIn Writer", "obsidian", "self-improvement" ], "tools": { "profile": "coding", "alsoAllow": [ "ollama_web_fetch", "ollama_web_search" ] } } ]

"channels": { "telegram": { "accounts": { "default": { "botToken": "${TELEGRAM_CHIEF_TOKEN}", "dmPolicy": "pairing", "groups": { "*": { "requireMention": true } } }, "buzz": { "botToken": "${TELEGRAM_BUZZ_TOKEN}", "dmPolicy": "pairing", "groups": { "*": { "requireMention": true } } } }, "enabled": true },

bindings": [ { "type": "route", "agentId": "main", "match": { "channel": "telegram", "accountId": "chief" } }, { "type": "route", "agentId": "buzz", "match": { "channel": "telegram", "accountId": "buzz" } } ]

left burrowBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> โœ… Mark Solution