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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
小众软件
小众软件
V
V2EX
博客园 - Franky
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
量子位
博客园 - 【当耐特】
雷峰网
雷峰网
WordPress大学
WordPress大学
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security 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(agents): preserve structured tool result visible text...
snowzlmbot · 2026-06-28 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import { afterEach, describe, expect, it, vi } from "vitest";

44

import * as loggingConfigModule from "../logging/config.js";

55

import {

66

buildToolLifecycleErrorResult,

7+

extractToolResultText,

78

extractToolErrorCode,

89

extractToolErrorMessage,

910

isToolResultError,

@@ -27,6 +28,12 @@ describe("extractToolErrorMessage", () => {

2728

it("keeps error-like status values", () => {

2829

expect(extractToolErrorMessage({ details: { status: "failed" } })).toBe("failed");

2930

expect(extractToolErrorMessage({ details: { status: "timeout" } })).toBe("timeout");

31+

expect(

32+

extractToolErrorMessage({

33+

content: [{ type: "text", text: "Approval is unavailable." }],

34+

details: { status: "approval-unavailable" },

35+

}),

36+

).toBe("Approval is unavailable.");

3037

});

31383239

it("prefers node-host aggregated denial text over generic failed status", () => {

@@ -388,3 +395,151 @@ describe("sanitizeToolArgs", () => {

388395

});

389396

});

390397

});

398+399+

describe("extractToolResultText", () => {

400+

it("serializes structured non-image tool result blocks for visible output", () => {

401+

const text = extractToolResultText({

402+

content: [

403+

{ type: "json", data: { status: "ok", value: 42 } },

404+

{ type: "resource", resource: { uri: "file:///tmp/result.json", text: "payload" } },

405+

],

406+

});

407+408+

expect(text).toContain('"type":"json"');

409+

expect(text).toContain('"status":"ok"');

410+

expect(text).toContain('"type":"resource"');

411+

expect(text).not.toContain("see attached image");

412+

});

413+414+

it("normalizes top-level CLI result arrays and objects", () => {

415+

expect(

416+

extractToolResultText([

417+

{ type: "web_search_result", title: "OpenClaw", url: "https://example.com" },

418+

]),

419+

).toContain('"title":"OpenClaw"');

420+

expect(extractToolResultText([{ type: "text", text: "hello" }])).toBe("hello");

421+

expect(

422+

extractToolResultText({ type: "web_search_tool_result_error", error_code: "unavailable" }),

423+

).toContain('"error_code":"unavailable"');

424+

expect(

425+

extractToolResultText({

426+

type: "code_execution_result",

427+

content: [],

428+

return_code: 0,

429+

stderr: "",

430+

stdout: "command output",

431+

}),

432+

).toContain('"stdout":"command output"');

433+

});

434+435+

it("keeps existing text blocks and skips image blocks", () => {

436+

const text = extractToolResultText({

437+

content: [

438+

{ type: "text", text: "hello" },

439+

{ type: "image", data: "abc", mimeType: "image/png" },

440+

],

441+

});

442+443+

expect(text).toBe("hello");

444+

});

445+446+

it("keeps existing text output before structured fallback", () => {

447+

const text = extractToolResultText({

448+

content: [

449+

{ type: "text", text: "hello" },

450+

{ type: "json", data: { status: "ok" } },

451+

],

452+

});

453+454+

expect(text).toBe("hello");

455+

});

456+457+

it("caps top-level text arrays", () => {

458+

const text = extractToolResultText([{ type: "text", text: "x".repeat(9000) }]);

459+460+

expect(text).toContain("…(truncated)…");

461+

expect(text?.length).toBeLessThanOrEqual(8020);

462+

});

463+464+

it("redacts whole data URI values without rewriting ordinary data substrings", () => {

465+

const text = extractToolResultText({

466+

content: [

467+

{

468+

type: "json",

469+

note: "metadata:foo",

470+

uri: "data:text/plain;base64,abcdefghijklmnopqrstuvwxyz0123456789",

471+

},

472+

],

473+

});

474+475+

expect(text).toContain('"note":"metadata:foo"');

476+

expect(text).toContain('"uri":"[inline data URI:');

477+

expect(text).not.toContain("abcdefghijklmnopqrstuvwxyz0123456789");

478+

});

479+480+

it("suppresses MCP binary fields and structured secrets", () => {

481+

const text = extractToolResultText({

482+

content: [

483+

{ type: "audio", data: "audio-base64-secret", mimeType: "audio/mpeg" },

484+

{

485+

type: "document",

486+

source: {

487+

type: "base64",

488+

media_type: "application/pdf",

489+

data: "document-base64-secret",

490+

},

491+

},

492+

{

493+

type: "resource",

494+

apiKey: "sk-structured-secret-1234567890",

495+

resource: {

496+

uri: "blob://result",

497+

blob: "resource-base64-secret",

498+

mimeType: "application/pdf",

499+

},

500+

},

501+

],

502+

});

503+504+

expect(text).toContain('"uri":"blob://result"');

505+

expect(text).toContain('"blob":"[binary omitted:');

506+

expect(text).not.toContain("audio-base64-secret");

507+

expect(text).not.toContain("document-base64-secret");

508+

expect(text).not.toContain("resource-base64-secret");

509+

expect(text).not.toContain("sk-structured-secret-1234567890");

510+

});

511+512+

it("redacts structured headers and omits opaque CLI payloads before the output cap", () => {

513+

const text = extractToolResultText([

514+

{

515+

type: "web_search_result",

516+

encrypted_content: "opaque-search-ciphertext".repeat(500),

517+

encrypted_stdout: "opaque-command-ciphertext".repeat(500),

518+

apiKey: ["array-valued-api-secret"],

519+

headers: {

520+

cookie: ["session=structured-cookie-secret"],

521+

"set-cookie": ["sid=structured-set-cookie-secret; HttpOnly"],

522+

},

523+

title: "Useful result",

524+

},

525+

]);

526+527+

expect(text).toContain('"encrypted_content":"[opaque data omitted:');

528+

expect(text).toContain('"encrypted_stdout":"[opaque data omitted:');

529+

expect(text).toContain('"title":"Useful result"');

530+

expect(text).not.toContain("opaque-search-ciphertext");

531+

expect(text).not.toContain("opaque-command-ciphertext");

532+

expect(text).not.toContain("array-valued-api-secret");

533+

expect(text).not.toContain("structured-cookie-secret");

534+

expect(text).not.toContain("structured-set-cookie-secret");

535+

});

536+537+

it("caps structured fallback output", () => {

538+

const text = extractToolResultText({

539+

content: [{ type: "json", data: "x".repeat(9000) }],

540+

});

541+542+

expect(text).toContain("…(truncated)…");

543+

expect(text?.length).toBeLessThanOrEqual(8020);

544+

});

545+

});