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

推荐订阅源

T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
The Cloudflare Blog
博客园 - 聂微东
博客园 - 司徒正美
量子位
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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): sanitize oversized middleware inputs · openc...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main

@@ -24,6 +24,10 @@ const NESTED_TOOL_RESULT_BLOCK_TYPES = new Set(["toolresult", "tool_result"]);

24242525

type MiddlewareContentBlock = OpenClawAgentToolResult["content"][number];

2626

type MiddlewareContentCoerceState = { depth: number; seen: Set<object> };

27+

type MiddlewareToolResultCoerceOptions = {

28+

sanitizeContent?: boolean;

29+

sanitizeDetails?: boolean;

30+

};

27312832

function isValidMiddlewareContentBlock(value: unknown): boolean {

2933

if (!isRecord(value) || typeof value.type !== "string") {

@@ -158,6 +162,7 @@ function stringifyMiddlewareTextPayload(value: unknown): string | undefined {

158162

function coerceMiddlewareText(

159163

value: unknown,

160164

state: MiddlewareContentCoerceState = createMiddlewareContentCoerceState(),

165+

options: MiddlewareToolResultCoerceOptions = {},

161166

): string | undefined {

162167

if (typeof value === "string") {

163168

return value;

@@ -173,14 +178,14 @@ function coerceMiddlewareText(

173178

return undefined;

174179

}

175180

for (const key of ["text", "output", "result", "message"]) {

176-

const text = coerceMiddlewareText(value[key], nextState);

181+

const text = coerceMiddlewareText(value[key], nextState, options);

177182

if (text !== undefined) {

178183

return text;

179184

}

180185

}

181186

const content = value.content;

182187

if (Array.isArray(content)) {

183-

const chunks = coerceMiddlewareContentArray(content, nextState)

188+

const chunks = coerceMiddlewareContentArray(content, nextState, options)

184189

.filter(

185190

(block): block is Extract<MiddlewareContentBlock, { type: "text" }> =>

186191

block.type === "text",

@@ -224,6 +229,7 @@ function appendMiddlewareContentBlock(

224229

function coerceMiddlewareContentArray(

225230

content: unknown[],

226231

state: MiddlewareContentCoerceState,

232+

options: MiddlewareToolResultCoerceOptions = {},

227233

): MiddlewareContentBlock[] {

228234

const blocks: MiddlewareContentBlock[] = [];

229235

let inspectedBlocks = 0;

@@ -235,7 +241,7 @@ function coerceMiddlewareContentArray(

235241

) {

236242

break;

237243

}

238-

const coercedBlocks = coerceMiddlewareContentBlocks(entry, state);

244+

const coercedBlocks = coerceMiddlewareContentBlocks(entry, state, options);

239245

if (coercedBlocks.length > 0) {

240246

for (const block of coercedBlocks) {

241247

appendMiddlewareContentBlock(blocks, block);

@@ -245,7 +251,7 @@ function coerceMiddlewareContentArray(

245251

}

246252

continue;

247253

}

248-

const text = coerceMiddlewareText(entry, state);

254+

const text = coerceMiddlewareText(entry, state, options);

249255

if (text) {

250256

appendMiddlewareContentBlock(blocks, {

251257

type: "text",

@@ -259,10 +265,22 @@ function coerceMiddlewareContentArray(

259265

function coerceMiddlewareContentBlocks(

260266

value: unknown,

261267

state: MiddlewareContentCoerceState = createMiddlewareContentCoerceState(),

268+

options: MiddlewareToolResultCoerceOptions = {},

262269

): MiddlewareContentBlock[] {

263270

if (isValidMiddlewareContentBlock(value)) {

264271

return [value as MiddlewareContentBlock];

265272

}

273+

// Tool emitters can produce legitimate transcript text larger than the

274+

// middleware cap. Normalize that only before the first handler; handlers

275+

// remain fail-closed if they return an oversized replacement.

276+

if (

277+

options.sanitizeContent === true &&

278+

isRecord(value) &&

279+

value.type === "text" &&

280+

typeof value.text === "string"

281+

) {

282+

return [{ type: "text", text: truncateUtf16Safe(value.text, MAX_MIDDLEWARE_TEXT_CHARS) }];

283+

}

266284

if (!isRecord(value) || typeof value.type !== "string") {

267285

return [];

268286

}

@@ -273,9 +291,10 @@ function coerceMiddlewareContentBlocks(

273291

const content = value.content;

274292

if (Array.isArray(content) && content.length > 0) {

275293

const nextState = descendMiddlewareContentCoerceState(value, state);

276-

return nextState ? coerceMiddlewareContentArray(content, nextState) : [];

294+

return nextState ? coerceMiddlewareContentArray(content, nextState, options) : [];

277295

}

278-

const text = coerceMiddlewareText(content, state) ?? coerceMiddlewareText(value, state);

296+

const text =

297+

coerceMiddlewareText(content, state, options) ?? coerceMiddlewareText(value, state, options);

279298

if (!text) {

280299

return [];

281300

}

@@ -289,7 +308,7 @@ function coerceMiddlewareContentBlocks(

289308290309

function coerceMiddlewareToolResult(

291310

value: unknown,

292-

options: { sanitizeDetails?: boolean } = {},

311+

options: MiddlewareToolResultCoerceOptions = {},

293312

): OpenClawAgentToolResult | undefined {

294313

if (isValidMiddlewareToolResult(value)) {

295314

return value;

@@ -305,7 +324,7 @@ function coerceMiddlewareToolResult(

305324

if (inspectedBlocks > MAX_MIDDLEWARE_CONTENT_BLOCKS) {

306325

break;

307326

}

308-

for (const coerced of coerceMiddlewareContentBlocks(block, state)) {

327+

for (const coerced of coerceMiddlewareContentBlocks(block, state, options)) {

309328

content.push(coerced);

310329

if (content.length >= MAX_MIDDLEWARE_CONTENT_BLOCKS) {

311330

break;

@@ -379,7 +398,10 @@ function sanitizeMiddlewareDetailsValue(value: unknown): unknown {

379398

* subsequent middleware-side mutations are still validated strictly.

380399

*/

381400

function sanitizeToolResultForMiddleware(result: OpenClawAgentToolResult): OpenClawAgentToolResult {

382-

const coerced = coerceMiddlewareToolResult(result, { sanitizeDetails: true });

401+

const coerced = coerceMiddlewareToolResult(result, {

402+

sanitizeContent: true,

403+

sanitizeDetails: true,

404+

});

383405

if (coerced) {

384406

return coerced;

385407

}