docs: update group chat commands

This commit is contained in:
Peter Steinberger
2025-12-22 20:36:34 +01:00
parent f10c8f2b4c
commit 8cadb5cf18
7 changed files with 29 additions and 18 deletions

View File

@@ -73,13 +73,12 @@ Allowlist of E.164 phone numbers that may trigger auto-replies.
### `inbound.groupChat`
Group messages default to **require mention** (either metadata mention or regex patterns). You can switch to always-on activation.
Group messages default to **require mention** (either metadata mention or regex patterns).
```json5
{
inbound: {
groupChat: {
activation: "mention", // mention | always
mentionPatterns: ["@clawd", "clawdbot", "clawd"],
historyLimit: 50
}
@@ -87,10 +86,6 @@ Group messages default to **require mention** (either metadata mention or regex
}
```
Notes:
- `activation` defaults to `mention`.
- `requireMention` is still supported for backwards compatibility (`false``activation: "always"`).
### `inbound.workspace`
Sets the **single global workspace directory** used by the agent for file operations.
@@ -135,7 +130,7 @@ Controls session scoping, idle expiry, reset triggers, and where the session sto
session: {
scope: "per-sender",
idleMinutes: 60,
resetTriggers: ["/new"],
resetTriggers: ["/new", "/reset"],
store: "~/.clawdis/sessions/sessions.json",
mainKey: "main"
}