You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rename Quiet to Observe, remove Listen Only toggle
Quiet mode is renamed to Observe with new semantics: the agent learns
from the conversation (context + memory) but never responds, even when
mentioned or replied to. This creates three clearly distinct modes:
- Active: responds to everything
- Mention Only: sees everything, responds only to mentions/replies/commands
- Observe: sees and learns from everything, never responds
Also removes the legacy Listen Only toggle from the Channel Behaviour
config UI — response modes in channel settings fully replace it.
Backwards compat: "quiet" is accepted as a serde alias and in config
parsing, so existing channel_settings rows and TOML configs continue
to work.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/content/docs/(getting-started)/configuring-channels.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Controls when the agent responds to messages.
22
22
| Mode | Behavior |
23
23
|------|----------|
24
24
|**Active** (default) | Responds to all messages normally. |
25
-
|**Quiet**|Observes and learns from the conversation (history + memory persistence), but only responds when @mentioned, replied to, or given a command. |
25
+
|**Observe**|Learns from the conversation passively — never responds, even when mentioned. All messages are ingested into context and memory. Use this for channels the agent should monitor without participating. |
26
26
|**Mention Only**| Messages are still visible to the agent for context, but it only responds when @mentioned, replied to, or given a command. Memory capture continues passively. |
27
27
28
28
#### Mention Only vs. Binding-Level Require Mention
@@ -116,7 +116,7 @@ Some settings can be toggled at runtime via slash commands in chat:
116
116
| Command | Effect |
117
117
|---------|--------|
118
118
|`/active`| Switch to Active response mode |
119
-
|`/quiet`| Switch to Quiet response mode |
119
+
|`/observe`| Switch to Observe response mode |
120
120
|`/mention-only`| Switch to Mention Only response mode |
121
121
122
122
These persist to the channel's settings and survive restarts.
"Observes and learns from the conversation, but only respondswhen @mentioned, replied to, or given a command.",
104
+
observe:
105
+
"Learns from the conversation passively — never responds, even when mentioned. Use this for channels the agent should monitor without participating.",
106
106
mention_only:
107
107
"Messages are still visible to the agent for context, but it only responds when explicitly @mentioned, replied to, or given a command. To block messages entirely, use the binding-level require mention setting instead.",
0 commit comments