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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

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: tighten Codex app-server budget guards · openclaw/op...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -159,9 +159,7 @@ export function createCodexDynamicToolBridge(params: {

159159

startedAt,

160160

});

161161

return {

162-

contentItems: result.content.flatMap((content) =>

163-

convertToolContent(content, toolResultMaxChars),

164-

),

162+

contentItems: convertToolContents(result.content, toolResultMaxChars),

165163

success: !resultIsError,

166164

};

167165

} catch (error) {

@@ -262,23 +260,6 @@ function resolveAgentContextLimitValue(params: {

262260

return agentValue ?? defaultValue;

263261

}

264262265-

function truncateCodexDynamicToolText(text: string, maxChars: number): string {

266-

const limit =

267-

typeof maxChars === "number" && Number.isFinite(maxChars) && maxChars > 0

268-

? Math.floor(maxChars)

269-

: DEFAULT_CODEX_DYNAMIC_TOOL_RESULT_MAX_CHARS;

270-

if (text.length <= limit) {

271-

return text;

272-

}

273-

const noticeText = `...(OpenClaw truncated dynamic tool result: original ${text.length} chars, showing ${limit}; rerun with narrower args.)`;

274-

const notice = `\n${noticeText}`;

275-

if (notice.length >= limit) {

276-

return noticeText.slice(0, limit);

277-

}

278-

const sliceLength = Math.max(0, limit - notice.length);

279-

return `${text.slice(0, sliceLength).trimEnd()}${notice}`.slice(0, limit);

280-

}

281-282263

function composeAbortSignals(...signals: Array<AbortSignal | undefined>): AbortSignal {

283264

const activeSignals = signals.filter((signal): signal is AbortSignal => Boolean(signal));

284265

if (activeSignals.length === 0) {

@@ -435,14 +416,68 @@ function isToolResultError(result: AgentToolResult<unknown>): boolean {

435416

);

436417

}

437418419+

function normalizeToolResultMaxChars(maxChars: number): number {

420+

return typeof maxChars === "number" && Number.isFinite(maxChars) && maxChars > 0

421+

? Math.floor(maxChars)

422+

: DEFAULT_CODEX_DYNAMIC_TOOL_RESULT_MAX_CHARS;

423+

}

424+425+

function convertToolContents(

426+

content: Array<TextContent | ImageContent>,

427+

toolResultMaxChars = DEFAULT_CODEX_DYNAMIC_TOOL_RESULT_MAX_CHARS,

428+

): CodexDynamicToolCallOutputContentItem[] {

429+

const maxChars = normalizeToolResultMaxChars(toolResultMaxChars);

430+

const totalTextChars = content.reduce(

431+

(total, item) => total + (item.type === "text" ? item.text.length : 0),

432+

0,

433+

);

434+

if (totalTextChars <= maxChars) {

435+

return content.flatMap(convertToolContent);

436+

}

437+438+

const noticeText = `...(OpenClaw truncated dynamic tool result: original ${totalTextChars} chars, showing ${maxChars}; rerun with narrower args.)`;

439+

const notice = `\n${noticeText}`;

440+

const textBudget = Math.max(0, maxChars - notice.length);

441+

let remainingTextBudget = textBudget;

442+

let appendedNotice = false;

443+

const output: CodexDynamicToolCallOutputContentItem[] = [];

444+445+

for (const item of content) {

446+

if (item.type !== "text") {

447+

output.push(...convertToolContent(item));

448+

continue;

449+

}

450+

if (appendedNotice) {

451+

continue;

452+

}

453+

if (notice.length >= maxChars) {

454+

output.push({ type: "inputText", text: noticeText.slice(0, maxChars) });

455+

appendedNotice = true;

456+

continue;

457+

}

458+

const sliceLength = Math.min(item.text.length, remainingTextBudget);

459+

remainingTextBudget -= sliceLength;

460+

const shouldAppendNotice = remainingTextBudget <= 0;

461+

const text = item.text.slice(0, sliceLength);

462+

if (shouldAppendNotice) {

463+

output.push({ type: "inputText", text: `${text.trimEnd()}${notice}`.slice(0, maxChars) });

464+

appendedNotice = true;

465+

} else if (text.length > 0) {

466+

output.push({ type: "inputText", text });

467+

}

468+

}

469+470+

if (!appendedNotice) {

471+

output.push({ type: "inputText", text: noticeText.slice(0, maxChars) });

472+

}

473+

return output;

474+

}

475+438476

function convertToolContent(

439477

content: TextContent | ImageContent,

440-

toolResultMaxChars = DEFAULT_CODEX_DYNAMIC_TOOL_RESULT_MAX_CHARS,

441478

): CodexDynamicToolCallOutputContentItem[] {

442479

if (content.type === "text") {

443-

return [

444-

{ type: "inputText", text: truncateCodexDynamicToolText(content.text, toolResultMaxChars) },

445-

];

480+

return [{ type: "inputText", text: content.text }];

446481

}

447482

const imageUrl = sanitizeInlineImageDataUrl(`data:${content.mimeType};base64,${content.data}`);

448483

if (!imageUrl) {