docs(slack): set always online to true in example app manifest

This commit is contained in:
@zimeg 2026-04-03 13:15:31 -07:00
parent f59c52bc16
commit 8d557c19d5
No known key found for this signature in database
3 changed files with 3 additions and 2 deletions

View File

@ -85,6 +85,7 @@ Docs: https://docs.openclaw.ai
- Discord/voice: make READY auto-join fire-and-forget while keeping the shorter initial voice-connect timeout separate from the longer playback-start wait. (#60345) Thanks @geekhuashan.
- Agents/skills: add inherited `agents.defaults.skills` allowlists, make per-agent `agents.list[].skills` replace defaults instead of merging, and scope embedded, session, sandbox, and cron skill snapshots through the effective runtime agent. (#59992) Thanks @gumadeiras.
- Matrix/Telegram exec approvals: recover stored same-channel account bindings even when session reply state drifted to another channel, so foreign-channel approvals route to the bound account instead of fanning out or being rejected as ambiguous. (#60417) thanks @gumadeiras.
- Slack/app manifest: set `bot_user.always_online` to `true` in the onboarding and example Slack app manifest so the Slack app appears ready to respond.
## 2026.4.2

View File

@ -403,7 +403,7 @@ Notes:
"features": {
"bot_user": {
"display_name": "OpenClaw",
"always_online": false
"always_online": true
},
"app_home": {
"messages_tab_enabled": true,

View File

@ -34,7 +34,7 @@ function buildSlackManifest(botName: string) {
features: {
bot_user: {
display_name: safeName,
always_online: false,
always_online: true,
},
app_home: {
messages_tab_enabled: true,