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

推荐订阅源

雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
V
V2EX
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
美团技术团队
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks

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: canonicalize embedded reply payloads · openclaw/open...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -88,6 +88,81 @@ describe("buildEmbeddedRunPayloads tool-error warnings", () => {

8888

expectSinglePayloadText(payloads, "Fixed.");

8989

});

909091+

it("delivers only the final assistant answer when accumulated text includes pre-tool progress", () => {

92+

const payloads = buildPayloads({

93+

assistantTexts: ["I'll inspect that first.", "Done."],

94+

lastAssistant: {

95+

role: "assistant",

96+

stopReason: "stop",

97+

content: [

98+

{

99+

type: "text",

100+

text: "Done.",

101+

textSignature: JSON.stringify({

102+

v: 1,

103+

id: "item_final",

104+

phase: "final_answer",

105+

}),

106+

},

107+

],

108+

} as AssistantMessage,

109+

});

110+111+

expectSinglePayloadText(payloads, "Done.");

112+

});

113+114+

it("does not replay raw-looking accumulated tool output when final answer text is available", () => {

115+

const payloads = buildPayloads({

116+

assistantTexts: [

117+

"/root/openclaw/src/gateway/protocol/schema/protocol-schemas.ts:181: PluginControlUiDescriptorSchema,",

118+

"The schema export is fixed.",

119+

],

120+

lastAssistant: {

121+

role: "assistant",

122+

stopReason: "stop",

123+

content: [

124+

{

125+

type: "text",

126+

text: "The schema export is fixed.",

127+

textSignature: JSON.stringify({

128+

v: 1,

129+

id: "item_final",

130+

phase: "final_answer",

131+

}),

132+

},

133+

],

134+

} as AssistantMessage,

135+

});

136+137+

expectSinglePayloadText(payloads, "The schema export is fixed.");

138+

});

139+140+

it("ignores accumulated internal/status text after the final answer", () => {

141+

const payloads = buildPayloads({

142+

assistantTexts: [

143+

"Done.",

144+

"Background task done: Context engine turn maintenance. Rewrote 0 transcript entries and freed 0 bytes.",

145+

],

146+

lastAssistant: {

147+

role: "assistant",

148+

stopReason: "stop",

149+

content: [

150+

{

151+

type: "text",

152+

text: "Done.",

153+

textSignature: JSON.stringify({

154+

v: 1,

155+

id: "item_final",

156+

phase: "final_answer",

157+

}),

158+

},

159+

],

160+

} as AssistantMessage,

161+

});

162+163+

expectSinglePayloadText(payloads, "Done.");

164+

});

165+91166

it("surfaces concise exec tool errors when verbose mode is off", () => {

92167

const payloads = buildPayloads({

93168

lastToolError: { toolName: "exec", error: "command failed" },

@@ -283,6 +358,32 @@ describe("buildEmbeddedRunPayloads tool-error warnings", () => {

283358

expect(payloads[0]?.mediaUrls).toEqual(["/tmp/reply-image.png"]);

284359

});

285360361+

it("keeps media directives when collapsing accumulated pre-tool text to the final answer", () => {

362+

const payloads = buildPayloads({

363+

assistantTexts: ["Preparing the image...", "Attached image"],

364+

lastAssistant: {

365+

role: "assistant",

366+

stopReason: "stop",

367+

content: [

368+

{

369+

type: "text",

370+

text: "MEDIA:/tmp/reply-image.png\nAttached image",

371+

textSignature: JSON.stringify({

372+

v: 1,

373+

id: "item_final",

374+

phase: "final_answer",

375+

}),

376+

},

377+

],

378+

} as AssistantMessage,

379+

});

380+381+

expect(payloads).toHaveLength(1);

382+

expect(payloads[0]?.text).toBe("Attached image");

383+

expect(payloads[0]?.mediaUrl).toBe("/tmp/reply-image.png");

384+

expect(payloads[0]?.mediaUrls).toEqual(["/tmp/reply-image.png"]);

385+

});

386+286387

it("uses raw final assistant text when visible-text extraction removed a media-only directive line", () => {

287388

const payloads = buildPayloads({

288389

lastAssistant: {