惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
J
Java Code Geeks
有赞技术团队
有赞技术团队
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
G
Google Developers Blog
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
腾讯CDC
V
Visual Studio Blog
博客园 - 【当耐特】
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
L
LangChain Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: add ambient room events guide · openclaw/openclaw@a...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -0,0 +1,214 @@

1+

---

2+

summary: "Let supported group rooms provide quiet context unless the agent sends with the message tool"

3+

read_when:

4+

- Configuring always-on group or channel rooms

5+

- You want the agent to watch room chatter without posting final text automatically

6+

- Debugging typing and token usage with no visible room message

7+

title: "Ambient room events"

8+

sidebarTitle: "Ambient room events"

9+

---

10+11+

Ambient room events let OpenClaw process unmentioned group or channel chatter as quiet context. The agent can update memory and session state, but the room stays silent unless the agent explicitly calls the `message` tool.

12+13+

Use this for always-on rooms where the agent should listen, decide when a reply is useful, and avoid the old prompt pattern of answering `NO_REPLY`.

14+15+

Supported today: Discord guild channels, Slack channels and private channels, Slack multi-person DMs, and Telegram groups or supergroups. Other group channels keep their existing group behavior unless their channel page says they support ambient room events.

16+17+

## Quick setup

18+19+

Set the global group-chat behavior:

20+21+

```json5

22+

{

23+

messages: {

24+

groupChat: {

25+

unmentionedInbound: "room_event",

26+

visibleReplies: "message_tool",

27+

historyLimit: 50,

28+

},

29+

},

30+

}

31+

```

32+33+

Then configure the room itself as always-on by disabling mention gating for that room. The channel must still be allowed by its normal `groupPolicy`, room allowlist, and sender allowlist.

34+35+

After saving the config, the Gateway hot-reloads `messages` settings. Restart only when file watching or config reload is disabled.

36+37+

## What changes

38+39+

With `messages.groupChat.unmentionedInbound: "room_event"`:

40+41+

- unmentioned allowed group or channel messages become quiet room events

42+

- mentioned messages stay user requests

43+

- text commands and native commands stay user requests

44+

- abort or stop requests stay user requests

45+

- direct messages stay user requests

46+47+

Room events use strict visible delivery. Final assistant text is private. The agent must call `message(action=send)` to post in the room.

48+49+

## Discord example

50+51+

```json5

52+

{

53+

messages: {

54+

groupChat: {

55+

unmentionedInbound: "room_event",

56+

visibleReplies: "message_tool",

57+

historyLimit: 50,

58+

},

59+

},

60+

channels: {

61+

discord: {

62+

groupPolicy: "allowlist",

63+

guilds: {

64+

"<DISCORD_SERVER_ID>": {

65+

requireMention: false,

66+

users: ["<YOUR_DISCORD_USER_ID>"],

67+

},

68+

},

69+

},

70+

},

71+

}

72+

```

73+74+

Use per-channel Discord config when only one channel should be ambient:

75+76+

```json5

77+

{

78+

channels: {

79+

discord: {

80+

guilds: {

81+

"<DISCORD_SERVER_ID>": {

82+

channels: {

83+

"<DISCORD_CHANNEL_ID_OR_NAME>": {

84+

allow: true,

85+

requireMention: false,

86+

},

87+

},

88+

},

89+

},

90+

},

91+

},

92+

}

93+

```

94+95+

## Slack example

96+97+

Slack channel allowlists are ID-first. Use channel IDs such as `C12345678`, not `#channel-name`.

98+99+

```json5

100+

{

101+

messages: {

102+

groupChat: {

103+

unmentionedInbound: "room_event",

104+

visibleReplies: "message_tool",

105+

historyLimit: 50,

106+

},

107+

},

108+

channels: {

109+

slack: {

110+

groupPolicy: "allowlist",

111+

channels: {

112+

"<SLACK_CHANNEL_ID>": {

113+

allow: true,

114+

requireMention: false,

115+

},

116+

},

117+

},

118+

},

119+

}

120+

```

121+122+

## Telegram example

123+124+

For Telegram groups, the bot must be able to see normal group messages. If `requireMention: false`, disable BotFather privacy mode or use another Telegram setup that delivers full group traffic to the bot.

125+126+

```json5

127+

{

128+

messages: {

129+

groupChat: {

130+

unmentionedInbound: "room_event",

131+

visibleReplies: "message_tool",

132+

historyLimit: 50,

133+

},

134+

},

135+

channels: {

136+

telegram: {

137+

groups: {

138+

"<TELEGRAM_GROUP_CHAT_ID>": {

139+

groupPolicy: "open",

140+

requireMention: false,

141+

},

142+

},

143+

},

144+

},

145+

}

146+

```

147+148+

Telegram group IDs are usually negative numbers such as `-1001234567890`. Read `chat.id` from `openclaw logs --follow`, forward a group message to an ID helper bot, or inspect Bot API `getUpdates`.

149+150+

## Agent specific policy

151+152+

Use an agent override when several agents share the same room but only one should treat unmentioned chatter as ambient context:

153+154+

```json5

155+

{

156+

messages: {

157+

groupChat: {

158+

visibleReplies: "message_tool",

159+

},

160+

},

161+

agents: {

162+

list: [

163+

{

164+

id: "main",

165+

groupChat: {

166+

unmentionedInbound: "room_event",

167+

mentionPatterns: ["@openclaw", "openclaw"],

168+

},

169+

},

170+

],

171+

},

172+

}

173+

```

174+175+

The agent-specific `agents.list[].groupChat.unmentionedInbound` value overrides `messages.groupChat.unmentionedInbound` for that agent.

176+177+

## Visible reply modes

178+179+

`messages.groupChat.visibleReplies: "message_tool"` is the recommended group and channel default. It lets the agent decide when to speak by calling the message tool. If the model returns final text without calling the tool, OpenClaw keeps that final text private and logs suppressed delivery metadata.

180+181+

Use `messages.groupChat.visibleReplies: "automatic"` only when you want legacy behavior where normal group requests post final assistant text automatically.

182+183+

Room events stay strict even when other group requests use automatic replies. Unmentioned ambient room events still require `message(action=send)` for visible output.

184+185+

## History

186+187+

`messages.groupChat.historyLimit` controls the global group history default. Channels can override it with `channels.<channel>.historyLimit`, and some channels also support per-account history limits.

188+189+

Set `historyLimit: 0` to disable group history context.

190+191+

Supported room-event channels keep recent ambient room messages as context. Discord keeps room-event history until a visible Discord send succeeds, so quiet context is not lost before message-tool delivery.

192+193+

## Troubleshooting

194+195+

If the room shows typing or token usage but no visible message:

196+197+

1. Confirm the room is allowed by the channel allowlist and sender allowlist.

198+

2. Confirm `requireMention: false` is set at the room level you expect.

199+

3. Check whether `messages.groupChat.unmentionedInbound` or the agent override is `"room_event"`.

200+

4. Inspect logs for suppressed final payload metadata or `didSendViaMessagingTool: false`.

201+

5. Use a model/runtime that reliably calls tools, or set `messages.groupChat.visibleReplies: "automatic"` for legacy final replies on normal group requests.

202+203+

If Telegram ambient rooms do not trigger at all, check BotFather privacy mode and verify the Gateway is receiving normal group messages.

204+205+

If Slack ambient rooms do not trigger, verify the channel key is the Slack channel ID and the app has the required `channels:history` or `groups:history` scope for that room type.

206+207+

## Related

208+209+

- [Groups](/channels/groups)

210+

- [Discord](/channels/discord)

211+

- [Slack](/channels/slack)

212+

- [Telegram](/channels/telegram)

213+

- [Channel troubleshooting](/channels/troubleshooting)

214+

- [Channel configuration reference](/gateway/config-channels)