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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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): observe native tool completions · openclaw/op...
VACInc · 2026-05-11 · via Recent Commits to openclaw:main

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

99

inferToolMetaFromArgs,

1010

normalizeUsage,

1111

runAgentHarnessAfterCompactionHook,

12+

runAgentHarnessAfterToolCallHook,

1213

runAgentHarnessBeforeCompactionHook,

1314

TOOL_PROGRESS_OUTPUT_MAX_CHARS,

1415

type AgentMessage,

@@ -50,6 +51,10 @@ export type CodexAppServerToolTelemetry = {

5051

successfulCronAdds?: number;

5152

};

525354+

export type CodexAppServerEventProjectorOptions = {

55+

nativePostToolUseRelayEnabled?: boolean;

56+

};

57+5358

const ZERO_USAGE: Usage = {

5459

input: 0,

5560

output: 0,

@@ -118,6 +123,7 @@ export class CodexAppServerEventProjector {

118123

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

119124

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

120125

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

126+

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

121127

private assistantStarted = false;

122128

private reasoningStarted = false;

123129

private reasoningEnded = false;

@@ -134,6 +140,7 @@ export class CodexAppServerEventProjector {

134140

private readonly params: EmbeddedRunAttemptParams,

135141

private readonly threadId: string,

136142

private readonly turnId: string,

143+

private readonly options: CodexAppServerEventProjectorOptions = {},

137144

) {}

138145139146

async handleNotification(notification: CodexServerNotification): Promise<void> {

@@ -613,6 +620,7 @@ export class CodexAppServerEventProjector {

613620

this.recordToolMeta(item);

614621

this.recordNativeToolTranscriptCall(item);

615622

this.recordNativeToolTranscriptResult(item);

623+

this.emitAfterToolCallObservation(item);

616624

this.emitToolResultSummary(item);

617625

this.emitToolResultOutput(item);

618626

}

@@ -790,6 +798,9 @@ export class CodexAppServerEventProjector {

790798

: {}),

791799

},

792800

});

801+

if (params.phase === "result") {

802+

this.emitAfterToolCallObservation(item);

803+

}

793804

}

794805795806

private emitDiagnosticToolExecutionEvent(params: {

@@ -840,6 +851,53 @@ export class CodexAppServerEventProjector {

840851

emitTrustedDiagnosticEvent({ ...base, ...terminalEvent });

841852

}

842853854+

private emitAfterToolCallObservation(item: CodexThreadItem): void {

855+

if (!this.shouldEmitAfterToolCallObservation(item)) {

856+

return;

857+

}

858+

const name = itemName(item);

859+

if (!name) {

860+

return;

861+

}

862+

const status = itemStatus(item);

863+

if (status === "running") {

864+

return;

865+

}

866+

this.afterToolCallObservedItemIds.add(item.id);

867+

const result = itemToolResult(item).result;

868+

const error = itemToolError(item, status);

869+

const startedAt =

870+

typeof item.durationMs === "number" ? Date.now() - Math.max(0, item.durationMs) : undefined;

871+

const hookParams = {

872+

toolName: name,

873+

toolCallId: item.id,

874+

runId: this.params.runId,

875+

agentId: this.params.agentId,

876+

sessionId: this.params.sessionId,

877+

sessionKey: this.params.sessionKey,

878+

startArgs: itemToolArgs(item) ?? {},

879+

...(result !== undefined ? { result } : {}),

880+

...(error ? { error } : {}),

881+

...(startedAt !== undefined ? { startedAt } : {}),

882+

};

883+

setImmediate(() => {

884+

void runAgentHarnessAfterToolCallHook(hookParams);

885+

});

886+

}

887+888+

private shouldEmitAfterToolCallObservation(item: CodexThreadItem): boolean {

889+

if (

890+

!shouldSynthesizeToolProgressForItem(item) ||

891+

this.afterToolCallObservedItemIds.has(item.id)

892+

) {

893+

return false;

894+

}

895+

if (this.options.nativePostToolUseRelayEnabled && isNativePostToolUseRelayItem(item)) {

896+

return false;

897+

}

898+

return true;

899+

}

900+843901

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

844902

if (!item || !this.params.onToolResult || !this.shouldEmitToolResult()) {

845903

return;

@@ -1397,6 +1455,17 @@ function shouldSynthesizeToolProgressForItem(item: CodexThreadItem): boolean {

13971455

}

13981456

}

139914571458+

function isNativePostToolUseRelayItem(item: CodexThreadItem): boolean {

1459+

switch (item.type) {

1460+

case "commandExecution":

1461+

case "fileChange":

1462+

case "mcpToolCall":

1463+

return true;

1464+

default:

1465+

return false;

1466+

}

1467+

}

1468+14001469

function shouldSuppressChannelProgressForItem(item: CodexThreadItem): boolean {

14011470

if (shouldSynthesizeToolProgressForItem(item)) {

14021471

return true;

@@ -1414,6 +1483,11 @@ function itemToolArgs(item: CodexThreadItem): Record<string, unknown> | undefine

14141483

...(typeof item.cwd === "string" ? { cwd: item.cwd } : {}),

14151484

});

14161485

}

1486+

if (item.type === "fileChange") {

1487+

return sanitizeCodexAgentEventRecord({

1488+

changes: itemFileChanges(item),

1489+

});

1490+

}

14171491

if (item.type === "webSearch" && typeof item.query === "string") {

14181492

return sanitizeCodexAgentEventRecord({ query: item.query });

14191493

}

@@ -1437,7 +1511,7 @@ function itemToolResult(item: CodexThreadItem): { result?: Record<string, unknow

14371511

return {

14381512

result: sanitizeCodexAgentEventRecord({

14391513

status: item.status,

1440-

changes: item.changes.map((change) => ({ path: change.path, kind: change.kind })),

1514+

changes: itemFileChanges(item),

14411515

}),

14421516

};

14431517

}

@@ -1457,6 +1531,25 @@ function itemToolResult(item: CodexThreadItem): { result?: Record<string, unknow

14571531

return {};

14581532

}

145915331534+

function itemFileChanges(item: CodexThreadItem): Array<{ path: string; kind: string }> {

1535+

return Array.isArray(item.changes)

1536+

? item.changes.map((change) => ({ path: change.path, kind: change.kind }))

1537+

: [];

1538+

}

1539+1540+

function itemToolError(

1541+

item: CodexThreadItem,

1542+

status: ReturnType<typeof itemStatus>,

1543+

): string | undefined {

1544+

if (status === "blocked") {

1545+

return "codex native tool blocked";

1546+

}

1547+

if (status !== "failed") {

1548+

return undefined;

1549+

}

1550+

return itemOutputText(item) ?? "codex native tool failed";

1551+

}

1552+14601553

function itemMeta(

14611554

item: CodexThreadItem,

14621555

detailMode: ToolProgressDetailMode = "explain",