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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

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
feat(slack): add assistant thread lifecycle · openclaw/op...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -74,6 +74,17 @@ openclaw plugins install @openclaw/slack

7474

"messages_tab_enabled": true,

7575

"messages_tab_read_only_enabled": false

7676

},

77+

"assistant_view": {

78+

"assistant_description": "OpenClaw connects Slack assistant threads to OpenClaw agents.",

79+

"suggested_prompts": [

80+

{ "title": "What can you do?", "message": "What can you help me with?" },

81+

{

82+

"title": "Summarize this channel",

83+

"message": "Summarize the recent activity in this channel."

84+

},

85+

{ "title": "Draft a reply", "message": "Help me draft a reply." }

86+

]

87+

},

7788

"slash_commands": [

7889

{

7990

"command": "/openclaw",

@@ -117,6 +128,8 @@ openclaw plugins install @openclaw/slack

117128

"bot_events": [

118129

"app_home_opened",

119130

"app_mention",

131+

"assistant_thread_context_changed",

132+

"assistant_thread_started",

120133

"channel_rename",

121134

"member_joined_channel",

122135

"member_left_channel",

@@ -147,6 +160,17 @@ openclaw plugins install @openclaw/slack

147160

"messages_tab_enabled": true,

148161

"messages_tab_read_only_enabled": false

149162

},

163+

"assistant_view": {

164+

"assistant_description": "OpenClaw connects Slack assistant threads to OpenClaw agents.",

165+

"suggested_prompts": [

166+

{ "title": "What can you do?", "message": "What can you help me with?" },

167+

{

168+

"title": "Summarize this channel",

169+

"message": "Summarize the recent activity in this channel."

170+

},

171+

{ "title": "Draft a reply", "message": "Help me draft a reply." }

172+

]

173+

},

150174

"slash_commands": [

151175

{

152176

"command": "/openclaw",

@@ -179,6 +203,8 @@ openclaw plugins install @openclaw/slack

179203

"bot_events": [

180204

"app_home_opened",

181205

"app_mention",

206+

"assistant_thread_context_changed",

207+

"assistant_thread_started",

182208

"message.channels",

183209

"message.groups",

184210

"message.im"

@@ -264,6 +290,17 @@ openclaw gateway

264290

"messages_tab_enabled": true,

265291

"messages_tab_read_only_enabled": false

266292

},

293+

"assistant_view": {

294+

"assistant_description": "OpenClaw connects Slack assistant threads to OpenClaw agents.",

295+

"suggested_prompts": [

296+

{ "title": "What can you do?", "message": "What can you help me with?" },

297+

{

298+

"title": "Summarize this channel",

299+

"message": "Summarize the recent activity in this channel."

300+

},

301+

{ "title": "Draft a reply", "message": "Help me draft a reply." }

302+

]

303+

},

267304

"slash_commands": [

268305

{

269306

"command": "/openclaw",

@@ -308,6 +345,8 @@ openclaw gateway

308345

"bot_events": [

309346

"app_home_opened",

310347

"app_mention",

348+

"assistant_thread_context_changed",

349+

"assistant_thread_started",

311350

"channel_rename",

312351

"member_joined_channel",

313352

"member_left_channel",

@@ -343,6 +382,17 @@ openclaw gateway

343382

"messages_tab_enabled": true,

344383

"messages_tab_read_only_enabled": false

345384

},

385+

"assistant_view": {

386+

"assistant_description": "OpenClaw connects Slack assistant threads to OpenClaw agents.",

387+

"suggested_prompts": [

388+

{ "title": "What can you do?", "message": "What can you help me with?" },

389+

{

390+

"title": "Summarize this channel",

391+

"message": "Summarize the recent activity in this channel."

392+

},

393+

{ "title": "Draft a reply", "message": "Help me draft a reply." }

394+

]

395+

},

346396

"slash_commands": [

347397

{

348398

"command": "/openclaw",

@@ -376,6 +426,8 @@ openclaw gateway

376426

"bot_events": [

377427

"app_home_opened",

378428

"app_mention",

429+

"assistant_thread_context_changed",

430+

"assistant_thread_started",

379431

"message.channels",

380432

"message.groups",

381433

"message.im"

@@ -498,6 +550,17 @@ Base manifest (Socket Mode default):

498550

"messages_tab_enabled": true,

499551

"messages_tab_read_only_enabled": false

500552

},

553+

"assistant_view": {

554+

"assistant_description": "OpenClaw connects Slack assistant threads to OpenClaw agents.",

555+

"suggested_prompts": [

556+

{ "title": "What can you do?", "message": "What can you help me with?" },

557+

{

558+

"title": "Summarize this channel",

559+

"message": "Summarize the recent activity in this channel."

560+

},

561+

{ "title": "Draft a reply", "message": "Help me draft a reply." }

562+

]

563+

},

501564

"slash_commands": [

502565

{

503566

"command": "/openclaw",

@@ -541,6 +604,8 @@ Base manifest (Socket Mode default):

541604

"bot_events": [

542605

"app_home_opened",

543606

"app_mention",

607+

"assistant_thread_context_changed",

608+

"assistant_thread_started",

544609

"channel_rename",

545610

"member_joined_channel",

546611

"member_left_channel",

@@ -578,6 +643,8 @@ For **HTTP Request URLs mode**, replace `settings` with the HTTP variant and add

578643

"bot_events": [

579644

"app_home_opened",

580645

"app_mention",

646+

"assistant_thread_context_changed",

647+

"assistant_thread_started",

581648

"channel_rename",

582649

"member_joined_channel",

583650

"member_left_channel",

@@ -604,7 +671,7 @@ For **HTTP Request URLs mode**, replace `settings` with the HTTP variant and add

604671605672

Surface different features that extend the above defaults.

606673607-

The default manifest enables the Slack App Home **Home** tab and subscribes to `app_home_opened`. When a workspace member opens the Home tab, OpenClaw publishes a safe default Home view with `views.publish`; no conversation payload or private configuration is included. The **Messages** tab remains enabled for Slack DMs.

674+

The default manifest enables the Slack App Home **Home** tab and subscribes to `app_home_opened`. When a workspace member opens the Home tab, OpenClaw publishes a safe default Home view with `views.publish`; no conversation payload or private configuration is included. The **Messages** tab remains enabled for Slack DMs. The manifest also enables Slack assistant threads with `features.assistant_view`, `assistant:write`, `assistant_thread_started`, and `assistant_thread_context_changed`; assistant threads route to their own OpenClaw thread sessions and keep Slack-provided thread context available to the agent.

608675609676

<AccordionGroup>

610677

<Accordion title="Optional native slash commands">