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

推荐订阅源

爱范儿
爱范儿
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
S
SegmentFault 最新的问题
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
雷峰网
雷峰网
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
云风的 BLOG
云风的 BLOG
T
Tailwind CSS 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
fix(slack): wake interactive reply sessions (#79836) · op...
velvet-shark · 2026-05-10 · via Recent Commits to openclaw:main

@@ -7,10 +7,12 @@ import type {

77

} from "openclaw/plugin-sdk/config-types";

88

import type { SessionScope } from "openclaw/plugin-sdk/config-types";

99

import type { DmPolicy, GroupPolicy } from "openclaw/plugin-sdk/config-types";

10+

import { resolveRuntimeConversationBindingRoute } from "openclaw/plugin-sdk/conversation-runtime";

1011

import { createDedupeCache } from "openclaw/plugin-sdk/dedupe-runtime";

1112

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

1213

import type { HistoryEntry } from "openclaw/plugin-sdk/reply-history";

1314

import { resolveAgentRoute } from "openclaw/plugin-sdk/routing";

15+

import { resolveThreadSessionKeys } from "openclaw/plugin-sdk/routing";

1416

import { logVerbose } from "openclaw/plugin-sdk/runtime-env";

1517

import { getChildLogger } from "openclaw/plugin-sdk/runtime-env";

1618

import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime-env";

@@ -78,6 +80,7 @@ export type SlackMonitorContext = {

7880

channelId?: string | null;

7981

channelType?: string | null;

8082

senderId?: string | null;

83+

threadTs?: string | null;

8184

}) => string;

8285

isChannelAllowed: (params: {

8386

channelId?: string;

@@ -178,6 +181,7 @@ export function createSlackMonitorContext(params: {

178181

channelId?: string | null;

179182

channelType?: string | null;

180183

senderId?: string | null;

184+

threadTs?: string | null;

181185

}) => {

182186

const channelId = normalizeOptionalString(p.channelId) ?? "";

183187

if (!channelId) {

@@ -207,18 +211,58 @@ export function createSlackMonitorContext(params: {

207211

teamId: params.teamId,

208212

peer: { kind: peerKind, id: peerId },

209213

});

210-

return route.sessionKey;

214+

const threadTs = normalizeOptionalString(p.threadTs);

215+

const baseConversationId = isDirectMessage ? `user:${senderId}` : channelId;

216+

const threadBindingRoute = threadTs

217+

? resolveRuntimeConversationBindingRoute({

218+

route,

219+

conversation: {

220+

channel: "slack",

221+

accountId: params.accountId,

222+

conversationId: threadTs,

223+

parentConversationId: baseConversationId,

224+

},

225+

})

226+

: null;

227+

const runtimeRoute =

228+

threadBindingRoute?.boundSessionKey || threadBindingRoute?.bindingRecord

229+

? threadBindingRoute

230+

: resolveRuntimeConversationBindingRoute({

231+

route,

232+

conversation: {

233+

channel: "slack",

234+

accountId: params.accountId,

235+

conversationId: baseConversationId,

236+

},

237+

});

238+

if (runtimeRoute.boundSessionKey) {

239+

return runtimeRoute.route.sessionKey;

240+

}

241+

return resolveThreadSessionKeys({

242+

baseSessionKey: runtimeRoute.route.sessionKey,

243+

threadId: threadTs,

244+

parentSessionKey:

245+

threadTs && params.threadInheritParent ? runtimeRoute.route.sessionKey : undefined,

246+

}).sessionKey;

211247

}

212248

} catch {

213249

// Fall through to legacy key derivation.

214250

}

215251216-

return resolveSessionKey(

252+

const legacySessionKey = resolveSessionKey(

217253

params.sessionScope,

218254

{ From: from, ChatType: chatType, Provider: "slack" },

219255

params.mainKey,

220256

resolveDefaultAgentId(params.cfg),

221257

);

258+

return resolveThreadSessionKeys({

259+

baseSessionKey: legacySessionKey,

260+

threadId: normalizeOptionalString(p.threadTs),

261+

parentSessionKey:

262+

normalizeOptionalString(p.threadTs) && params.threadInheritParent

263+

? legacySessionKey

264+

: undefined,

265+

}).sessionKey;

222266

};

223267224268

const resolveChannelName = async (channelId: string) => {