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

推荐订阅源

Y
Y Combinator Blog
Jina AI
Jina AI
雷峰网
雷峰网
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
美团技术团队
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - Franky
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
量子位
IT之家
IT之家
人人都是产品经理
人人都是产品经理
博客园_首页
让小产品的独立变现更简单 - 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(codex): mark native tools active for diagnostics · op...
keshavbotage · 2026-05-10 · via Recent Commits to openclaw:main

@@ -4,6 +4,11 @@ import path from "node:path";

44

import { SessionManager } from "@mariozechner/pi-coding-agent";

55

import type { EmbeddedRunAttemptParams } from "openclaw/plugin-sdk/agent-harness";

66

import { resetAgentEventsForTest } from "openclaw/plugin-sdk/agent-harness-runtime";

7+

import {

8+

onInternalDiagnosticEvent,

9+

resetDiagnosticEventsForTest,

10+

type DiagnosticEventPayload,

11+

} from "openclaw/plugin-sdk/diagnostic-runtime";

712

import {

813

initializeGlobalHookRunner,

914

resetGlobalHookRunner,

@@ -23,6 +28,10 @@ const tempDirs = new Set<string>();

23282429

type ProjectorNotification = Parameters<CodexAppServerEventProjector["handleNotification"]>[0];

253031+

function flushDiagnosticEvents() {

32+

return new Promise<void>((resolve) => setImmediate(resolve));

33+

}

34+2635

function assistantMessage(text: string, timestamp: number) {

2736

return {

2837

role: "assistant" as const,

@@ -82,10 +91,12 @@ async function createProjectorWithAssistantHooks() {

82918392

beforeEach(() => {

8493

resetAgentEventsForTest();

94+

resetDiagnosticEventsForTest();

8595

});

86968797

afterEach(async () => {

8898

resetAgentEventsForTest();

99+

resetDiagnosticEventsForTest();

89100

resetGlobalHookRunner();

90101

resetCodexRateLimitCacheForTests();

91102

vi.restoreAllMocks();

@@ -780,41 +791,48 @@ describe("CodexAppServerEventProjector", () => {

780791

it("synthesizes normalized tool progress for Codex-native tool items", async () => {

781792

const onAgentEvent = vi.fn();

782793

const projector = await createProjector({ ...(await createParams()), onAgentEvent });

794+

const diagnosticEvents: DiagnosticEventPayload[] = [];

795+

const unsubscribe = onInternalDiagnosticEvent((event) => diagnosticEvents.push(event));

783796784-

await projector.handleNotification(

785-

forCurrentTurn("item/started", {

786-

item: {

787-

type: "commandExecution",

788-

id: "cmd-1",

789-

command: "pnpm test extensions/codex",

790-

cwd: "/workspace",

791-

processId: null,

792-

source: "agent",

793-

status: "inProgress",

794-

commandActions: [],

795-

aggregatedOutput: null,

796-

exitCode: null,

797-

durationMs: null,

798-

},

799-

}),

800-

);

801-

await projector.handleNotification(

802-

forCurrentTurn("item/completed", {

803-

item: {

804-

type: "commandExecution",

805-

id: "cmd-1",

806-

command: "pnpm test extensions/codex",

807-

cwd: "/workspace",

808-

processId: null,

809-

source: "agent",

810-

status: "completed",

811-

commandActions: [],

812-

aggregatedOutput: "ok",

813-

exitCode: 0,

814-

durationMs: 42,

815-

},

816-

}),

817-

);

797+

try {

798+

await projector.handleNotification(

799+

forCurrentTurn("item/started", {

800+

item: {

801+

type: "commandExecution",

802+

id: "cmd-1",

803+

command: "pnpm test extensions/codex",

804+

cwd: "/workspace",

805+

processId: null,

806+

source: "agent",

807+

status: "inProgress",

808+

commandActions: [],

809+

aggregatedOutput: null,

810+

exitCode: null,

811+

durationMs: null,

812+

},

813+

}),

814+

);

815+

await projector.handleNotification(

816+

forCurrentTurn("item/completed", {

817+

item: {

818+

type: "commandExecution",

819+

id: "cmd-1",

820+

command: "pnpm test extensions/codex",

821+

cwd: "/workspace",

822+

processId: null,

823+

source: "agent",

824+

status: "completed",

825+

commandActions: [],

826+

aggregatedOutput: "ok",

827+

exitCode: 0,

828+

durationMs: 42,

829+

},

830+

}),

831+

);

832+

await flushDiagnosticEvents();

833+

} finally {

834+

unsubscribe();

835+

}

818836819837

const itemStart = findAgentEvent(onAgentEvent, {

820838

stream: "item",

@@ -844,6 +862,41 @@ describe("CodexAppServerEventProjector", () => {

844862

const toolResultPayload = requireRecord(toolResult.result, "tool result payload");

845863

expect(toolResultPayload.exitCode).toBe(0);

846864

expect(toolResultPayload.durationMs).toBe(42);

865+

const toolDiagnosticEvents = diagnosticEvents.filter(

866+

(

867+

event,

868+

): event is Extract<

869+

DiagnosticEventPayload,

870+

{

871+

type:

872+

| "tool.execution.started"

873+

| "tool.execution.completed"

874+

| "tool.execution.error"

875+

| "tool.execution.blocked";

876+

}

877+

> => event.type.startsWith("tool.execution."),

878+

);

879+

expect(

880+

toolDiagnosticEvents.map((event) => ({

881+

type: event.type,

882+

toolName: event.toolName,

883+

toolCallId: event.toolCallId,

884+

durationMs: "durationMs" in event ? event.durationMs : undefined,

885+

})),

886+

).toEqual([

887+

{

888+

type: "tool.execution.started",

889+

toolName: "bash",

890+

toolCallId: "cmd-1",

891+

durationMs: undefined,

892+

},

893+

{

894+

type: "tool.execution.completed",

895+

toolName: "bash",

896+

toolCallId: "cmd-1",

897+

durationMs: 42,

898+

},

899+

]);

847900

const result = projector.buildResult(buildEmptyToolTelemetry());

848901

expect(result.messagesSnapshot.map((message) => message.role)).toEqual([

849902

"user",