Channels & routing
Clawdbot routes replies back to the channel where a message came from. The model does not choose a channel; routing is deterministic and controlled by the host configuration.Key terms
- Channel:
whatsapp,telegram,discord,slack,signal,imessage,webchat. - AccountId: per‑channel account instance (when supported).
- AgentId: an isolated workspace + session store (“brain”).
- SessionKey: the bucket key used to store context and control concurrency.
Session key shapes (examples)
Direct messages collapse to the agent’s main session:agent:<agentId>:<mainKey>(default:agent:main:main)
- Groups:
agent:<agentId>:<channel>:group:<id> - Channels/rooms:
agent:<agentId>:<channel>:channel:<id>
- Slack/Discord threads append
:thread:<threadId>to the base key. - Telegram forum topics embed
:topic:<topicId>in the group key.
agent:main:telegram:group:-1001234567890:topic:42agent:main:discord:channel:123456:thread:987654
Routing rules (how an agent is chosen)
Routing picks one agent for each inbound message:- Exact peer match (
bindingswithpeer.kind+peer.id). - Guild match (Discord) via
guildId. - Team match (Slack) via
teamId. - Account match (
accountIdon the channel). - Channel match (any account on that channel).
- Default agent (
agents.list[].default, else first list entry, fallback tomain).
Broadcast groups (run multiple agents)
Broadcast groups let you run multiple agents for the same peer when Clawdbot would normally reply (for example: in WhatsApp groups, after mention/activation gating). Config:Config overview
agents.list: named agent definitions (workspace, model, etc.).bindings: map inbound channels/accounts/peers to agents.
Session storage
Session stores live under the state directory (default~/.clawdbot):
~/.clawdbot/agents/<agentId>/sessions/sessions.json- JSONL transcripts live alongside the store
session.store and {agentId} templating.
WebChat behavior
WebChat attaches to the selected agent and defaults to the agent’s main session. Because of this, WebChat lets you see cross‑channel context for that agent in one place.Reply context
Inbound replies include:ReplyToId,ReplyToBody, andReplyToSenderwhen available.- Quoted context is appended to
Bodyas a[Replying to ...]block.