Configure and manage group chats with OpenClaw (formerly Clawdbot and Moltbot)
OpenClaw provides powerful group chat features with security controls, mention gating, and flexible activation modes. Each group gets its own isolated session, ensuring context separation and security.
Each group chat runs in its own isolated session:
Control which groups Moltbot can access:
"*" to allow all groups{
"channels": {
"telegram": {
"groups": {
"123456789": {
"requireMention": true
},
"*": {
"requireMention": true,
"activation": "mention"
}
}
}
}
}
Mention gating requires @mentions for the bot to respond:
Configure mention patterns:
{
"messages": {
"groupChat": {
"mentionPatterns": ["@openclaw", "@clawd", "@bot"]
}
}
}
Control when the bot responds in groups:
Group owners can change activation mode:
/activation mention
/activation always
/activation manual
Groups have additional security features:
Enable sandboxing for groups:
{
"agents": {
"defaults": {
"sandbox": {
"mode": "non-main"
}
}
}
}
Moltbot handles group messages with:
Each messaging platform has its own group configuration:
{
"channels": {
"telegram": {
"groups": {
"*": {
"requireMention": true
}
}
}
}
}
{
"channels": {
"discord": {
"guilds": {
"123456789": {
"channels": ["general", "support"]
}
}
}
}
}