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

推荐订阅源

P
Proofpoint News Feed
V
V2EX
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
The Cloudflare Blog
T
Tailwind CSS Blog
H
Help Net Security
腾讯CDC
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
C
Check Point Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
让小产品的独立变现更简单 - 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: show Codex tool progress in channel drafts (#77949) ...
keshavbotage · 2026-05-06 · via Recent Commits to openclaw:main

@@ -30,6 +30,11 @@ import {

3030

import { readRecentCodexRateLimits, rememberCodexRateLimits } from "./rate-limit-cache.js";

3131

import { formatCodexUsageLimitErrorMessage } from "./rate-limits.js";

3232

import { readCodexMirroredSessionHistoryMessages } from "./session-history.js";

33+

import {

34+

resolveCodexToolProgressDetailMode,

35+

sanitizeCodexAgentEventRecord,

36+

sanitizeCodexToolArguments,

37+

} from "./tool-progress-normalization.js";

3338

import { attachCodexMirrorIdentity } from "./transcript-mirror.js";

34393540

export type CodexAppServerToolTelemetry = {

@@ -396,6 +401,7 @@ export class CodexAppServerEventProjector {

396401

});

397402

}

398403

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

404+

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

399405

this.emitToolResultSummary(item);

400406

this.emitAgentEvent({

401407

stream: "codex_app_server.item",

@@ -449,6 +455,7 @@ export class CodexAppServerEventProjector {

449455

}

450456

this.recordToolMeta(item);

451457

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

458+

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

452459

this.emitToolResultSummary(item);

453460

this.emitToolResultOutput(item);

454461

this.emitAgentEvent({

@@ -656,6 +663,7 @@ export class CodexAppServerEventProjector {

656663

return;

657664

}

658665

const meta = itemMeta(item, this.toolProgressDetailMode());

666+

const suppressChannelProgress = shouldSuppressChannelProgressForItem(item);

659667

this.emitAgentEvent({

660668

stream: "item",

661669

data: {

@@ -666,6 +674,42 @@ export class CodexAppServerEventProjector {

666674

status: params.phase === "start" ? "running" : itemStatus(item),

667675

...(itemName(item) ? { name: itemName(item) } : {}),

668676

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

677+

...(suppressChannelProgress ? { suppressChannelProgress: true } : {}),

678+

},

679+

});

680+

}

681+682+

private emitNormalizedToolItemEvent(params: {

683+

phase: "start" | "result";

684+

item: CodexThreadItem | undefined;

685+

}): void {

686+

const { item } = params;

687+

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

688+

return;

689+

}

690+

const name = itemName(item);

691+

if (!name) {

692+

return;

693+

}

694+

const meta = itemMeta(item, this.toolProgressDetailMode());

695+

const args = params.phase === "start" ? itemToolArgs(item) : undefined;

696+

const status = params.phase === "result" ? itemStatus(item) : "running";

697+

this.emitAgentEvent({

698+

stream: "tool",

699+

data: {

700+

phase: params.phase,

701+

name,

702+

itemId: item.id,

703+

toolCallId: item.id,

704+

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

705+

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

706+

...(params.phase === "result"

707+

? {

708+

status,

709+

isError: isNonSuccessItemStatus(status),

710+

...itemToolResult(item),

711+

}

712+

: {}),

669713

},

670714

});

671715

}

@@ -743,7 +787,7 @@ export class CodexAppServerEventProjector {

743787

}

744788745789

private toolProgressDetailMode(): ToolProgressDetailMode {

746-

return this.params.toolProgressDetail === "raw" ? "raw" : "explain";

790+

return resolveCodexToolProgressDetailMode(this.params.toolProgressDetail);

747791

}

748792749793

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

@@ -1074,17 +1118,24 @@ function itemTitle(item: CodexThreadItem): string {

10741118

}

10751119

}

107611201077-

function itemStatus(item: CodexThreadItem): "completed" | "failed" | "running" {

1121+

function itemStatus(item: CodexThreadItem): "completed" | "failed" | "running" | "blocked" {

10781122

const status = readItemString(item, "status");

10791123

if (status === "failed") {

10801124

return "failed";

10811125

}

1126+

if (status === "declined") {

1127+

return "blocked";

1128+

}

10821129

if (status === "inProgress" || status === "running") {

10831130

return "running";

10841131

}

10851132

return "completed";

10861133

}

108711341135+

function isNonSuccessItemStatus(status: ReturnType<typeof itemStatus>): boolean {

1136+

return status === "failed" || status === "blocked";

1137+

}

1138+10881139

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

10891140

if (item.type === "dynamicToolCall" && typeof item.tool === "string") {

10901141

return item.tool;

@@ -1105,6 +1156,78 @@ function itemName(item: CodexThreadItem): string | undefined {

11051156

return undefined;

11061157

}

110711581159+

function shouldSynthesizeToolProgressForItem(item: CodexThreadItem): boolean {

1160+

switch (item.type) {

1161+

case "commandExecution":

1162+

case "fileChange":

1163+

case "webSearch":

1164+

case "mcpToolCall":

1165+

return true;

1166+

default:

1167+

return false;

1168+

}

1169+

}

1170+1171+

function shouldSuppressChannelProgressForItem(item: CodexThreadItem): boolean {

1172+

if (shouldSynthesizeToolProgressForItem(item)) {

1173+

return true;

1174+

}

1175+

// Dynamic OpenClaw tool requests are emitted at the item/tool/call request

1176+

// boundary in run-attempt.ts. Re-emitting item notifications to channels can

1177+

// duplicate start/result progress when the app-server sends both signals.

1178+

return item.type === "dynamicToolCall";

1179+

}

1180+1181+

function itemToolArgs(item: CodexThreadItem): Record<string, unknown> | undefined {

1182+

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

1183+

return sanitizeCodexAgentEventRecord({

1184+

command: item.command,

1185+

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

1186+

});

1187+

}

1188+

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

1189+

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

1190+

}

1191+

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

1192+

return sanitizeCodexToolArguments(item.arguments);

1193+

}

1194+

return undefined;

1195+

}

1196+1197+

function itemToolResult(item: CodexThreadItem): { result?: Record<string, unknown> } {

1198+

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

1199+

return {

1200+

result: sanitizeCodexAgentEventRecord({

1201+

status: item.status,

1202+

exitCode: item.exitCode,

1203+

durationMs: item.durationMs,

1204+

}),

1205+

};

1206+

}

1207+

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

1208+

return {

1209+

result: sanitizeCodexAgentEventRecord({

1210+

status: item.status,

1211+

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

1212+

}),

1213+

};

1214+

}

1215+

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

1216+

return {

1217+

result: sanitizeCodexAgentEventRecord({

1218+

status: item.status,

1219+

durationMs: item.durationMs,

1220+

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

1221+

...(item.result ? { result: item.result } : {}),

1222+

}),

1223+

};

1224+

}

1225+

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

1226+

return { result: sanitizeCodexAgentEventRecord({ status: "completed" }) };

1227+

}

1228+

return {};

1229+

}

1230+11081231

function itemMeta(

11091232

item: CodexThreadItem,

11101233

detailMode: ToolProgressDetailMode = "explain",