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

推荐订阅源

Martin Fowler
Martin Fowler
Jina AI
Jina AI
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
I
InfoQ
L
LangChain Blog
The Cloudflare Blog
IT之家
IT之家
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
博客园 - 聂微东
美团技术团队
博客园_首页

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(agents): centralize media delivery evidence · opencla...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,5 +1,6 @@

11

import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

22

import type { OpenClawConfig } from "../../config/config.js";

3+

import { hasCommittedMessagingToolDeliveryEvidence } from "./delivery-evidence.js";

34

import { makeAttemptResult } from "./run.overflow-compaction.fixture.js";

45

import {

56

loadRunOverflowCompactionHarness,

@@ -18,7 +19,6 @@ import {

1819

DEFAULT_REASONING_ONLY_RETRY_LIMIT,

1920

EMPTY_RESPONSE_RETRY_INSTRUCTION,

2021

extractPlanningOnlyPlanDetails,

21-

hasCommittedUserVisibleToolDelivery,

2222

isLikelyExecutionAckPrompt,

2323

PLANNING_ONLY_RETRY_INSTRUCTION,

2424

REASONING_ONLY_RETRY_INSTRUCTION,

@@ -1345,24 +1345,34 @@ describe("runEmbeddedPiAgent incomplete-turn safety", () => {

13451345

expect(incompleteTurnText).toContain("verify before retrying");

13461346

});

134713471348-

it("does not treat empty committed messaging arrays as user-visible delivery", () => {

1348+

it("does not treat empty committed messaging arrays as delivery", () => {

13491349

expect(

1350-

hasCommittedUserVisibleToolDelivery({

1350+

hasCommittedMessagingToolDeliveryEvidence({

13511351

messagingToolSentTexts: [" "],

13521352

messagingToolSentMediaUrls: [],

13531353

}),

13541354

).toBe(false);

13551355

});

135613561357-

it("treats committed messaging media as user-visible delivery", () => {

1357+

it("treats committed messaging media as delivery", () => {

13581358

expect(

1359-

hasCommittedUserVisibleToolDelivery({

1359+

hasCommittedMessagingToolDeliveryEvidence({

13601360

messagingToolSentTexts: [],

13611361

messagingToolSentMediaUrls: ["file:///tmp/render.png"],

13621362

}),

13631363

).toBe(true);

13641364

});

136513651366+

it("treats committed messaging targets as delivery", () => {

1367+

expect(

1368+

hasCommittedMessagingToolDeliveryEvidence({

1369+

messagingToolSentTexts: [],

1370+

messagingToolSentMediaUrls: [],

1371+

messagingToolSentTargets: [{ tool: "message", provider: "slack", to: "channel-1" }],

1372+

}),

1373+

).toBe(true);

1374+

});

1375+13661376

it("treats committed messaging text as replay-invalid side effect metadata", () => {

13671377

expect(

13681378

buildAttemptReplayMetadata({

@@ -1385,6 +1395,18 @@ describe("runEmbeddedPiAgent incomplete-turn safety", () => {

13851395

).toEqual({ hadPotentialSideEffects: true, replaySafe: false });

13861396

});

138713971398+

it("treats committed messaging targets as replay-invalid side effect metadata", () => {

1399+

expect(

1400+

buildAttemptReplayMetadata({

1401+

toolMetas: [],

1402+

didSendViaMessagingTool: false,

1403+

messagingToolSentTexts: [],

1404+

messagingToolSentMediaUrls: [],

1405+

messagingToolSentTargets: [{ tool: "message", provider: "slack", to: "channel-1" }],

1406+

}),

1407+

).toEqual({ hadPotentialSideEffects: true, replaySafe: false });

1408+

});

1409+13881410

it("leaves committed delivery plus tool errors to the tool-error payload path", () => {

13891411

const incompleteTurnText = resolveIncompleteTurnPayloadText({

13901412

payloadCount: 0,