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

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point 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: track message attachment aliases · openclaw/openclaw...
steipete · 2026-05-15 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -320,6 +320,45 @@ describe("createCodexDynamicToolBridge", () => {

320320

]);

321321

});

322322
323+

it("records message tool media attachment aliases as delivery evidence", async () => {

324+

const toolResult = {

325+

content: [{ type: "text", text: "Sent." }],

326+

details: { messageId: "message-1" },

327+

} satisfies AgentToolResult<unknown>;

328+

const tool = createTool({

329+

name: "message",

330+

execute: vi.fn(async () => toolResult),

331+

});

332+

const bridge = createCodexDynamicToolBridge({

333+

tools: [tool],

334+

signal: new AbortController().signal,

335+

});

336+
337+

const result = await handleMessageToolCall(bridge, {

338+

action: "send",

339+

text: "song attached",

340+

media: "/tmp/generated-song.mp3",

341+

attachments: [{ filePath: "/tmp/generated-cover.png" }],

342+

});

343+
344+

expect(result).toEqual(expectInputText("Sent."));

345+

expect(bridge.telemetry.didSendViaMessagingTool).toBe(true);

346+

expect(bridge.telemetry.messagingToolSentMediaUrls).toEqual([

347+

"/tmp/generated-song.mp3",

348+

"/tmp/generated-cover.png",

349+

]);

350+

expect(bridge.telemetry.messagingToolSentTargets).toEqual([

351+

{

352+

tool: "message",

353+

provider: "message",

354+

to: undefined,

355+

threadId: undefined,

356+

text: "song attached",

357+

mediaUrls: ["/tmp/generated-song.mp3", "/tmp/generated-cover.png"],

358+

},

359+

]);

360+

});

361+
323362

it("records internal UI source replies separately from outbound messaging evidence", async () => {

324363

const toolResult = textToolResult("Sent to current chat.", {

325364

status: "ok",

Original file line numberDiff line numberDiff line change

@@ -417,21 +417,46 @@ function readFirstString(record: Record<string, unknown>, keys: string[]): strin

417417
418418

function collectMediaUrls(record: Record<string, unknown>): string[] {

419419

const urls: string[] = [];

420-

for (const key of ["mediaUrl", "media_url", "imageUrl", "image_url"]) {

421-

const value = record[key];

420+

const pushMediaUrl = (value: unknown) => {

422421

if (typeof value === "string" && value.trim()) {

423422

urls.push(value.trim());

424423

}

424+

};

425+

const pushAttachment = (value: unknown) => {

426+

if (!value || typeof value !== "object" || Array.isArray(value)) {

427+

return;

428+

}

429+

const attachment = value as Record<string, unknown>;

430+

for (const key of ["media", "mediaUrl", "path", "filePath", "fileUrl"]) {

431+

pushMediaUrl(attachment[key]);

432+

}

433+

};

434+

for (const key of [

435+

"media",

436+

"mediaUrl",

437+

"media_url",

438+

"path",

439+

"filePath",

440+

"fileUrl",

441+

"imageUrl",

442+

"image_url",

443+

]) {

444+

const value = record[key];

445+

pushMediaUrl(value);

425446

}

426447

for (const key of ["mediaUrls", "media_urls", "imageUrls", "image_urls"]) {

427448

const value = record[key];

428449

if (!Array.isArray(value)) {

429450

continue;

430451

}

431452

for (const entry of value) {

432-

if (typeof entry === "string" && entry.trim()) {

433-

urls.push(entry.trim());

434-

}

453+

pushMediaUrl(entry);

454+

}

455+

}

456+

const attachments = record.attachments;

457+

if (Array.isArray(attachments)) {

458+

for (const attachment of attachments) {

459+

pushAttachment(attachment);

435460

}

436461

}

437462

return urls;

Original file line numberDiff line numberDiff line change

@@ -1187,6 +1187,43 @@ describe("messaging tool media URL tracking", () => {

11871187

expect(ctx.state.pendingMessagingMediaUrls.has("tool-upload-file")).toBe(false);

11881188

});

11891189
1190+

it("commits message attachment aliases as delivery evidence", async () => {

1191+

const { ctx } = createTestContext();

1192+
1193+

const startEvt: ToolExecutionStartEvent = {

1194+

type: "tool_execution_start",

1195+

toolName: "message",

1196+

toolCallId: "tool-attachment-aliases",

1197+

args: {

1198+

action: "send",

1199+

to: "channel:123",

1200+

content: "track ready",

1201+

media: "/tmp/generated-song.mp3",

1202+

attachments: [{ filePath: "/tmp/generated-cover.png" }],

1203+

},

1204+

};

1205+

await handleToolExecutionStart(ctx, startEvt);

1206+
1207+

const endEvt: ToolExecutionEndEvent = {

1208+

type: "tool_execution_end",

1209+

toolName: "message",

1210+

toolCallId: "tool-attachment-aliases",

1211+

isError: false,

1212+

result: { ok: true },

1213+

};

1214+

await handleToolExecutionEnd(ctx, endEvt);

1215+
1216+

expect(ctx.state.messagingToolSentMediaUrls).toEqual([

1217+

"/tmp/generated-song.mp3",

1218+

"/tmp/generated-cover.png",

1219+

]);

1220+

expectRecordFields(requireSingleMessagingTarget(ctx), "messaging target", {

1221+

to: "channel:123",

1222+

text: "track ready",

1223+

mediaUrls: ["/tmp/generated-song.mp3", "/tmp/generated-cover.png"],

1224+

});

1225+

});

1226+
11901227

it("commits sendAttachment args as message delivery evidence", async () => {

11911228

const { ctx } = createTestContext();

11921229
Original file line numberDiff line numberDiff line change

@@ -341,18 +341,36 @@ function pushUniqueMediaUrl(urls: string[], seen: Set<string>, value: unknown):

341341

function collectMessagingMediaUrlsFromRecord(record: Record<string, unknown>): string[] {

342342

const urls: string[] = [];

343343

const seen = new Set<string>();

344+

const pushAttachment = (value: unknown) => {

345+

if (!value || typeof value !== "object" || Array.isArray(value)) {

346+

return;

347+

}

348+

const attachment = value as Record<string, unknown>;

349+

pushUniqueMediaUrl(urls, seen, attachment.media);

350+

pushUniqueMediaUrl(urls, seen, attachment.mediaUrl);

351+

pushUniqueMediaUrl(urls, seen, attachment.path);

352+

pushUniqueMediaUrl(urls, seen, attachment.filePath);

353+

pushUniqueMediaUrl(urls, seen, attachment.fileUrl);

354+

};

344355
345356

pushUniqueMediaUrl(urls, seen, record.media);

346357

pushUniqueMediaUrl(urls, seen, record.mediaUrl);

347358

pushUniqueMediaUrl(urls, seen, record.path);

348359

pushUniqueMediaUrl(urls, seen, record.filePath);

360+

pushUniqueMediaUrl(urls, seen, record.fileUrl);

349361
350362

const mediaUrls = record.mediaUrls;

351363

if (Array.isArray(mediaUrls)) {

352364

for (const mediaUrl of mediaUrls) {

353365

pushUniqueMediaUrl(urls, seen, mediaUrl);

354366

}

355367

}

368+

const attachments = record.attachments;

369+

if (Array.isArray(attachments)) {

370+

for (const attachment of attachments) {

371+

pushAttachment(attachment);

372+

}

373+

}

356374
357375

return urls;

358376

}