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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
小众软件
小众软件
I
InfoQ
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
月光博客
月光博客
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
V
Visual Studio Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research

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(codex): mirror tool calls in transcripts (#79952) · o...
scoootscooob · 2026-05-10 · via Recent Commits to openclaw:main

@@ -21,6 +21,7 @@ import {

2121

import { readCodexTurn } from "./protocol-validators.js";

2222

import {

2323

isJsonObject,

24+

type CodexDynamicToolCallOutputContentItem,

2425

type CodexServerNotification,

2526

type CodexThreadItem,

2627

type CodexTurn,

@@ -80,6 +81,20 @@ const CODEX_PROMPT_TOTAL_INPUT_KEYS = [

8081

] as const;

81828283

const MAX_TOOL_OUTPUT_DELTA_MESSAGES_PER_ITEM = 20;

84+

const TOOL_TRANSCRIPT_OUTPUT_MAX_CHARS = 12_000;

85+86+

type ToolTranscriptCallInput = {

87+

id: string;

88+

name: string;

89+

arguments?: unknown;

90+

};

91+92+

type ToolTranscriptResultInput = {

93+

id: string;

94+

name: string;

95+

text?: string;

96+

isError: boolean;

97+

};

83988499

export class CodexAppServerEventProjector {

85100

private readonly assistantTextByItem = new Map<string, string>();

@@ -97,6 +112,9 @@ export class CodexAppServerEventProjector {

97112

{ chars: number; messages: number; truncated: boolean }

98113

>();

99114

private readonly toolMetas = new Map<string, { toolName: string; meta?: string }>();

115+

private readonly toolTranscriptMessages: AgentMessage[] = [];

116+

private readonly toolTranscriptCallIds = new Set<string>();

117+

private readonly toolTranscriptResultIds = new Set<string>();

100118

private assistantStarted = false;

101119

private reasoningStarted = false;

102120

private reasoningEnded = false;

@@ -238,6 +256,7 @@ export class CodexAppServerEventProjector {

238256

),

239257

);

240258

}

259+

messagesSnapshot.push(...this.toolTranscriptMessages);

241260

if (lastAssistant) {

242261

messagesSnapshot.push(attachCodexMirrorIdentity(lastAssistant, `${turnId}:assistant`));

243262

}

@@ -297,6 +316,28 @@ export class CodexAppServerEventProjector {

297316

};

298317

}

299318319+

recordDynamicToolCall(params: { callId: string; tool: string; arguments?: JsonValue }): void {

320+

this.recordToolTranscriptCall({

321+

id: params.callId,

322+

name: params.tool,

323+

arguments: sanitizeCodexToolArguments(params.arguments),

324+

});

325+

}

326+327+

recordDynamicToolResult(params: {

328+

callId: string;

329+

tool: string;

330+

success: boolean;

331+

contentItems: CodexDynamicToolCallOutputContentItem[];

332+

}): void {

333+

this.recordToolTranscriptResult({

334+

id: params.callId,

335+

name: params.tool,

336+

text: collectDynamicToolContentText(params.contentItems),

337+

isError: !params.success,

338+

});

339+

}

340+300341

markTimedOut(): void {

301342

this.aborted = true;

302343

this.promptError = "codex app-server attempt timed out";

@@ -402,6 +443,7 @@ export class CodexAppServerEventProjector {

402443

}

403444

this.emitStandardItemEvent({ phase: "start", item });

404445

this.emitNormalizedToolItemEvent({ phase: "start", item });

446+

this.recordNativeToolTranscriptCall(item);

405447

this.emitToolResultSummary(item);

406448

this.emitAgentEvent({

407449

stream: "codex_app_server.item",

@@ -456,6 +498,8 @@ export class CodexAppServerEventProjector {

456498

this.recordToolMeta(item);

457499

this.emitStandardItemEvent({ phase: "end", item });

458500

this.emitNormalizedToolItemEvent({ phase: "result", item });

501+

this.recordNativeToolTranscriptCall(item);

502+

this.recordNativeToolTranscriptResult(item);

459503

this.emitToolResultSummary(item);

460504

this.emitToolResultOutput(item);

461505

this.emitAgentEvent({

@@ -558,6 +602,8 @@ export class CodexAppServerEventProjector {

558602

this.emitPlanUpdate({ explanation: undefined, steps: splitPlanText(item.text) });

559603

}

560604

this.recordToolMeta(item);

605+

this.recordNativeToolTranscriptCall(item);

606+

this.recordNativeToolTranscriptResult(item);

561607

this.emitToolResultSummary(item);

562608

this.emitToolResultOutput(item);

563609

}

@@ -805,6 +851,63 @@ export class CodexAppServerEventProjector {

805851

});

806852

}

807853854+

private recordNativeToolTranscriptCall(item: CodexThreadItem | undefined): void {

855+

if (!item || !shouldSynthesizeToolProgressForItem(item)) {

856+

return;

857+

}

858+

const name = itemName(item);

859+

if (!name) {

860+

return;

861+

}

862+

this.recordToolTranscriptCall({

863+

id: item.id,

864+

name,

865+

arguments: itemToolArgs(item),

866+

});

867+

}

868+869+

private recordNativeToolTranscriptResult(item: CodexThreadItem | undefined): void {

870+

if (!item || !shouldSynthesizeToolProgressForItem(item)) {

871+

return;

872+

}

873+

const name = itemName(item);

874+

if (!name) {

875+

return;

876+

}

877+

this.recordToolTranscriptResult({

878+

id: item.id,

879+

name,

880+

text: itemTranscriptResultText(item),

881+

isError: isNonSuccessItemStatus(itemStatus(item)),

882+

});

883+

}

884+885+

private recordToolTranscriptCall(params: ToolTranscriptCallInput): void {

886+

if (!params.id || !params.name || this.toolTranscriptCallIds.has(params.id)) {

887+

return;

888+

}

889+

this.toolTranscriptCallIds.add(params.id);

890+

this.toolTranscriptMessages.push(

891+

attachCodexMirrorIdentity(

892+

this.createToolCallMessage(params),

893+

`${this.turnId}:tool:${params.id}:call`,

894+

),

895+

);

896+

}

897+898+

private recordToolTranscriptResult(params: ToolTranscriptResultInput): void {

899+

if (!params.id || !params.name || this.toolTranscriptResultIds.has(params.id)) {

900+

return;

901+

}

902+

this.toolTranscriptResultIds.add(params.id);

903+

this.toolTranscriptMessages.push(

904+

attachCodexMirrorIdentity(

905+

this.createToolResultMessage(params),

906+

`${this.turnId}:tool:${params.id}:result`,

907+

),

908+

);

909+

}

910+808911

private formatCodexErrorMessage(params: JsonObject): string | undefined {

809912

const error = isJsonObject(params.error) ? params.error : undefined;

810913

return (

@@ -912,6 +1015,47 @@ export class CodexAppServerEventProjector {

9121015

};

9131016

}

91410171018+

private createToolCallMessage(params: ToolTranscriptCallInput): AgentMessage {

1019+

return {

1020+

role: "assistant",

1021+

content: [

1022+

{

1023+

type: "toolCall",

1024+

id: params.id,

1025+

name: params.name,

1026+

arguments: normalizeToolTranscriptArguments(params.arguments),

1027+

},

1028+

],

1029+

api: this.params.model.api ?? "openai-codex-responses",

1030+

provider: this.params.provider,

1031+

model: this.params.modelId,

1032+

usage: ZERO_USAGE,

1033+

stopReason: "toolUse",

1034+

timestamp: Date.now(),

1035+

} as unknown as AgentMessage;

1036+

}

1037+1038+

private createToolResultMessage(params: ToolTranscriptResultInput): AgentMessage {

1039+

const text = truncateToolTranscriptText(params.text?.trim() || toolResultStatusText(params));

1040+

return {

1041+

role: "toolResult",

1042+

toolCallId: params.id,

1043+

toolName: params.name,

1044+

isError: params.isError,

1045+

content: [

1046+

{

1047+

type: "toolResult",

1048+

toolCallId: params.id,

1049+

toolUseId: params.id,

1050+

tool_use_id: params.id,

1051+

content: text,

1052+

text,

1053+

},

1054+

],

1055+

timestamp: Date.now(),

1056+

} as unknown as AgentMessage;

1057+

}

1058+9151059

private isNotificationForTurn(params: JsonObject): boolean {

9161060

const threadId = readString(params, "threadId");

9171061

const turnId = readNotificationTurnId(params);

@@ -1268,6 +1412,22 @@ function itemOutputText(item: CodexThreadItem): string | undefined {

12681412

return undefined;

12691413

}

127014141415+

function itemTranscriptResultText(item: CodexThreadItem): string | undefined {

1416+

const output = itemOutputText(item);

1417+

if (output) {

1418+

return output;

1419+

}

1420+

const result = itemToolResult(item).result;

1421+

return result ? stringifyJsonValue(result) : itemStatus(item);

1422+

}

1423+1424+

function normalizeToolTranscriptArguments(value: unknown): Record<string, unknown> {

1425+

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

1426+

return {};

1427+

}

1428+

return value as Record<string, unknown>;

1429+

}

1430+12711431

function collectDynamicToolContentText(contentItems: CodexThreadItem["contentItems"]): string {

12721432

if (!Array.isArray(contentItems)) {

12731433

return "";

@@ -1283,6 +1443,17 @@ function collectDynamicToolContentText(contentItems: CodexThreadItem["contentIte

12831443

.join("\n");

12841444

}

128514451446+

function truncateToolTranscriptText(text: string): string {

1447+

if (text.length <= TOOL_TRANSCRIPT_OUTPUT_MAX_CHARS) {

1448+

return text;

1449+

}

1450+

return `${text.slice(0, TOOL_TRANSCRIPT_OUTPUT_MAX_CHARS)}\n...(truncated)...`;

1451+

}

1452+1453+

function toolResultStatusText(params: ToolTranscriptResultInput): string {

1454+

return params.isError ? `${params.name} failed` : `${params.name} completed`;

1455+

}

1456+12861457

function stringifyJsonValue(value: unknown): string | undefined {

12871458

try {

12881459

return JSON.stringify(value, null, 2);