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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain 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(reply): group direct block delivery evidence · opencl...
vincentkoc · 2026-06-11 · via Recent Commits to openclaw:main

@@ -33,8 +33,7 @@ describe("createBlockReplyDeliveryHandler", () => {

3333

blockStreamingEnabled: false,

3434

blockReplyPipeline: null,

3535

directlySentBlockKeys,

36-

directlySentBlockTextFragments: [],

37-

directlySentBlockMediaUrls: [],

36+

directlySentBlockPayloads: [],

3837

});

39384039

await handler({

@@ -72,8 +71,7 @@ describe("createBlockReplyDeliveryHandler", () => {

7271

blockStreamingEnabled: false,

7372

blockReplyPipeline: null,

7473

directlySentBlockKeys,

75-

directlySentBlockTextFragments: [],

76-

directlySentBlockMediaUrls: [],

74+

directlySentBlockPayloads: [],

7775

});

78767977

await handler({

@@ -110,8 +108,7 @@ describe("createBlockReplyDeliveryHandler", () => {

110108

blockStreamingEnabled: false,

111109

blockReplyPipeline: null,

112110

directlySentBlockKeys,

113-

directlySentBlockTextFragments: [],

114-

directlySentBlockMediaUrls: [],

111+

directlySentBlockPayloads: [],

115112

});

116113117114

await handler({

@@ -155,8 +152,7 @@ describe("createBlockReplyDeliveryHandler", () => {

155152

blockStreamingEnabled: false,

156153

blockReplyPipeline: null,

157154

directlySentBlockKeys,

158-

directlySentBlockTextFragments: [],

159-

directlySentBlockMediaUrls: [],

155+

directlySentBlockPayloads: [],

160156

});

161157162158

await handler({ presentation });

@@ -188,8 +184,7 @@ describe("createBlockReplyDeliveryHandler", () => {

188184

blockStreamingEnabled: false,

189185

blockReplyPipeline: null,

190186

directlySentBlockKeys: new Set(),

191-

directlySentBlockTextFragments: [],

192-

directlySentBlockMediaUrls: [],

187+

directlySentBlockPayloads: [],

193188

});

194189195190

await handler({ text: "text only" });

@@ -212,8 +207,7 @@ describe("createBlockReplyDeliveryHandler", () => {

212207

blockStreamingEnabled: true,

213208

blockReplyPipeline,

214209

directlySentBlockKeys: new Set(),

215-

directlySentBlockTextFragments: [],

216-

directlySentBlockMediaUrls: [],

210+

directlySentBlockPayloads: [],

217211

});

218212219213

await handler({ text: "\n\n Hello from stream" });

@@ -246,8 +240,7 @@ describe("createBlockReplyDeliveryHandler", () => {

246240

blockStreamingEnabled: true,

247241

blockReplyPipeline,

248242

directlySentBlockKeys: new Set(),

249-

directlySentBlockTextFragments: [],

250-

directlySentBlockMediaUrls: [],

243+

directlySentBlockPayloads: [],

251244

});

252245253246

await handler({ text: "reset intro" });

@@ -331,8 +324,7 @@ describe("createBlockReplyDeliveryHandler", () => {

331324

blockStreamingEnabled: true,

332325

blockReplyPipeline,

333326

directlySentBlockKeys: new Set(),

334-

directlySentBlockTextFragments: [],

335-

directlySentBlockMediaUrls: [],

327+

directlySentBlockPayloads: [],

336328

});

337329338330

await handler({ text: "Result", mediaUrl: "./image.png" });

@@ -370,8 +362,7 @@ describe("createBlockReplyDeliveryHandler", () => {

370362

blockStreamingEnabled: true,

371363

blockReplyPipeline,

372364

directlySentBlockKeys: new Set(),

373-

directlySentBlockTextFragments: [],

374-

directlySentBlockMediaUrls: [],

365+

directlySentBlockPayloads: [],

375366

});

376367377368

await handler({ text: "NO_REPLY", mediaUrls: ["./missing.png", "./survived.png"] });

@@ -403,8 +394,7 @@ describe("createBlockReplyDeliveryHandler", () => {

403394

blockStreamingEnabled: true,

404395

blockReplyPipeline,

405396

directlySentBlockKeys: new Set(),

406-

directlySentBlockTextFragments: [],

407-

directlySentBlockMediaUrls: [],

397+

directlySentBlockPayloads: [],

408398

});

409399410400

const payload = setReplyPayloadMetadata({ text: "Alpha" }, { assistantMessageIndex: 7 });