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

推荐订阅源

让小产品的独立变现更简单 - 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): classify streamed subagent messages · opencla...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

File tree

  • extensions/codex/src/app-server

Original file line numberDiff line numberDiff line change

@@ -347,6 +347,19 @@ describe("CodexNativeSubagentMonitor", () => {

347347

});

348348
349349

await notifyChildStarted(client);

350+

await client.notify({

351+

method: "item/started",

352+

params: {

353+

threadId: "child-thread",

354+

turnId: "child-turn",

355+

item: {

356+

type: "agentMessage",

357+

id: "msg-child-final",

358+

phase: "final_answer",

359+

text: "",

360+

},

361+

},

362+

});

350363

await client.notify({

351364

method: "item/agentMessage/delta",

352365

params: {

@@ -398,6 +411,52 @@ describe("CodexNativeSubagentMonitor", () => {

398411

client.close();

399412

});

400413
414+

it("does not deliver a commentary delta when the completion snapshot is absent", async () => {

415+

const client = createClient();

416+

const runtime = createRuntime();

417+

const monitor = new CodexNativeSubagentMonitor(client, runtime);

418+

monitor.registerParent({

419+

parentThreadId: "parent-thread",

420+

requesterSessionKey: "agent:main:discord:channel:C123",

421+

taskRuntimeScope: createTaskScope(),

422+

agentId: "main",

423+

});

424+
425+

await notifyChildStarted(client);

426+

await client.notify({

427+

method: "item/started",

428+

params: {

429+

threadId: "child-thread",

430+

turnId: "child-turn",

431+

item: {

432+

type: "agentMessage",

433+

id: "msg-child-commentary",

434+

phase: "commentary",

435+

text: "",

436+

},

437+

},

438+

});

439+

await client.notify({

440+

method: "item/agentMessage/delta",

441+

params: {

442+

threadId: "child-thread",

443+

turnId: "child-turn",

444+

itemId: "msg-child-commentary",

445+

delta: "checking now",

446+

},

447+

});

448+

await client.notify(childTurnCompletedNotification({ status: "completed" }));

449+
450+

expect(runtime.deliverAgentHarnessTaskCompletion).toHaveBeenCalledWith(

451+

expect.objectContaining({

452+

childSessionId: "child-thread",

453+

result: "Codex native subagent completed without a final assistant message.",

454+

}),

455+

);

456+
457+

client.close();

458+

});

459+
401460

it("does not complete commentary-only child messages before a terminal turn", async () => {

402461

const client = createClient();

403462

const runtime = createRuntime();

Original file line numberDiff line numberDiff line change

@@ -68,6 +68,7 @@ type ChildAssistantMessages = {

6868

texts: Map<string, string>;

6969

order: string[];

7070

commentaryIds: Set<string>;

71+

finalMessageIds: Set<string>;

7172

};

7273
7374

type TranscriptCompletion = CodexNativeSubagentCompletion & {

@@ -336,7 +337,7 @@ export class CodexNativeSubagentMonitor {

336337

}

337338

return;

338339

}

339-

if (notification.method !== "item/completed") {

340+

if (notification.method !== "item/started" && notification.method !== "item/completed") {

340341

return;

341342

}

342343

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

@@ -360,6 +361,8 @@ export class CodexNativeSubagentMonitor {

360361

const phase = readString(item, "phase");

361362

if (phase === "commentary") {

362363

assistantMessages.commentaryIds.add(itemId);

364+

} else {

365+

assistantMessages.finalMessageIds.add(itemId);

363366

}

364367

const text = readString(item, "text");

365368

if (text) {

@@ -408,6 +411,7 @@ export class CodexNativeSubagentMonitor {

408411

texts: new Map<string, string>(),

409412

order: [],

410413

commentaryIds: new Set<string>(),

414+

finalMessageIds: new Set<string>(),

411415

};

412416

childState.assistantMessagesByTurn.set(turnId, assistantMessages);

413417

return assistantMessages;

@@ -1058,7 +1062,10 @@ function lastChildAssistantMessage(childState: ChildState, turnId: string): stri

10581062

}

10591063

for (let index = assistantMessages.order.length - 1; index >= 0; index -= 1) {

10601064

const itemId = assistantMessages.order[index];

1061-

if (!assistantMessages.commentaryIds.has(itemId)) {

1065+

if (

1066+

assistantMessages.finalMessageIds.has(itemId) &&

1067+

!assistantMessages.commentaryIds.has(itemId)

1068+

) {

10621069

const text = normalizeOptionalString(assistantMessages.texts.get(itemId));

10631070

if (text) {

10641071

return text;