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

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator 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(googlechat): preserve thread for message tool replies...
franco-viott · 2026-05-31 · via Recent Commits to openclaw:main

File tree

  • extensions/googlechat/src

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,8 @@

11

import { adaptScopedAccountAccessor } from "openclaw/plugin-sdk/channel-config-helpers";

2+

import type {

3+

ChannelThreadingContext,

4+

ChannelThreadingToolContext,

5+

} from "openclaw/plugin-sdk/channel-contract";

26

import {

37

createMessageReceiptFromOutboundResults,

48

defineChannelMessageAdapter,

@@ -127,6 +131,29 @@ export const googlechatThreadingAdapter = {

127131

account.config.replyToMode,

128132

fallback: "off" as const,

129133

},

134+

buildToolContext: ({

135+

cfg,

136+

accountId,

137+

context,

138+

hasRepliedRef,

139+

}: {

140+

cfg: OpenClawConfig;

141+

accountId?: string | null;

142+

context: ChannelThreadingContext;

143+

hasRepliedRef?: { value: boolean };

144+

}): ChannelThreadingToolContext => {

145+

const currentChannelId = normalizeGoogleChatTarget(context.To);

146+

const replyToId =

147+

normalizeOptionalString(context.ReplyToIdFull) ?? normalizeOptionalString(context.ReplyToId);

148+
149+

return {

150+

currentChannelId,

151+

currentMessageId: replyToId,

152+

currentThreadTs: replyToId,

153+

replyToMode: resolveGoogleChatAccount({ cfg, accountId }).config.replyToMode,

154+

hasRepliedRef,

155+

};

156+

},

130157

};

131158
132159

export const googlechatPairingTextAdapter = {

Original file line numberDiff line numberDiff line change

@@ -439,6 +439,62 @@ describe("googlechatPlugin threading", () => {

439439

googlechatThreadingAdapter.scopedAccountReplyToMode.resolveReplyToMode(defaultAccount),

440440

).toBe("all");

441441

});

442+
443+

it("uses the inbound thread resource as the current tool reply target", () => {

444+

const cfg = {

445+

channels: {

446+

googlechat: {

447+

replyToMode: "all",

448+

},

449+

},

450+

} as OpenClawConfig;

451+

const hasRepliedRef = { value: false };

452+
453+

const context = googlechatThreadingAdapter.buildToolContext({

454+

cfg,

455+

accountId: "default",

456+

context: {

457+

To: "googlechat:spaces/AAA",

458+

CurrentMessageId: "spaces/AAA/messages/msg-1",

459+

ReplyToId: "spaces/AAA/threads/thread-1",

460+

},

461+

hasRepliedRef,

462+

});

463+
464+

expect(context).toMatchObject({

465+

currentChannelId: "spaces/AAA",

466+

currentMessageId: "spaces/AAA/threads/thread-1",

467+

currentThreadTs: "spaces/AAA/threads/thread-1",

468+

replyToMode: "all",

469+

hasRepliedRef,

470+

});

471+

});

472+
473+

it("does not use message resources as implicit Google Chat reply targets", () => {

474+

const cfg = {

475+

channels: {

476+

googlechat: {

477+

replyToMode: "all",

478+

},

479+

},

480+

} as OpenClawConfig;

481+
482+

const context = googlechatThreadingAdapter.buildToolContext({

483+

cfg,

484+

accountId: "default",

485+

context: {

486+

To: "googlechat:spaces/AAA",

487+

CurrentMessageId: "spaces/AAA/messages/msg-1",

488+

},

489+

});

490+
491+

expect(context).toMatchObject({

492+

currentChannelId: "spaces/AAA",

493+

replyToMode: "all",

494+

});

495+

expect(context.currentMessageId).toBeUndefined();

496+

expect(context.currentThreadTs).toBeUndefined();

497+

});

442498

});

443499
444500

const resolveTarget = googlechatOutboundAdapter.base.resolveTarget;

Original file line numberDiff line numberDiff line change

@@ -152,17 +152,21 @@ export function buildThreadingToolContext(params: {

152152

ChatType: sessionCtx.ChatType,

153153

CurrentMessageId: currentMessageId,

154154

ReplyToId: sessionCtx.ReplyToId,

155+

ReplyToIdFull: sessionCtx.ReplyToIdFull,

155156

ThreadLabel: sessionCtx.ThreadLabel,

156157

MessageThreadId: sessionCtx.MessageThreadId,

157158

TransportThreadId: sessionCtx.TransportThreadId,

158159

NativeChannelId: sessionCtx.NativeChannelId,

159160

},

160161

hasRepliedRef,

161162

}) ?? {};

163+

const hasAdapterCurrentMessageId = Object.hasOwn(context, "currentMessageId");

162164

return {

163165

...context,

164166

currentChannelProvider: provider!, // guaranteed non-null since threading exists

165-

currentMessageId: context.currentMessageId ?? currentMessageId,

167+

// Some providers expose only thread resources as reply targets; explicit

168+

// `undefined` means the adapter rejected the generic message-id fallback.

169+

currentMessageId: hasAdapterCurrentMessageId ? context.currentMessageId : currentMessageId,

166170

};

167171

}

168172
Original file line numberDiff line numberDiff line change

@@ -193,6 +193,44 @@ describe("buildThreadingToolContext", () => {

193193

expect(result.currentChannelId).toBe("C1");

194194

expect(result.currentThreadTs).toBe("123.456");

195195

});

196+
197+

it("lets plugin threading adapters suppress the generic message-id fallback", () => {

198+

setActivePluginRegistry(

199+

createTestRegistry([

200+

{

201+

pluginId: "googlechat",

202+

plugin: {

203+

...createChannelTestPluginBase({ id: "googlechat", label: "Google Chat" }),

204+

threading: {

205+

buildToolContext: ({ context }) => ({

206+

currentChannelId: context.To?.replace(/^googlechat:/, ""),

207+

currentMessageId: undefined,

208+

currentThreadTs: context.ReplyToIdFull ?? context.ReplyToId,

209+

}),

210+

},

211+

} as ChannelPlugin,

212+

source: "test",

213+

},

214+

]),

215+

);

216+

const sessionCtx = {

217+

Provider: "googlechat",

218+

To: "googlechat:spaces/AAA",

219+

MessageSidFull: "spaces/AAA/messages/msg-1",

220+

ReplyToId: "spaces/AAA/threads/short",

221+

ReplyToIdFull: "spaces/AAA/threads/full",

222+

} as TemplateContext;

223+
224+

const result = buildThreadingToolContext({

225+

sessionCtx,

226+

config: { channels: { googlechat: { replyToMode: "all" } } } as OpenClawConfig,

227+

hasRepliedRef: undefined,

228+

});

229+
230+

expect(result.currentChannelId).toBe("spaces/AAA");

231+

expect(result.currentThreadTs).toBe("spaces/AAA/threads/full");

232+

expect(result.currentMessageId).toBeUndefined();

233+

});

196234

});

197235
198236

describe("applyReplyThreading auto-threading", () => {