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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

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 stuck Codex-native subagent tasks after blocked spawn...
joshavant · 2026-05-19 · via Recent Commits to openclaw:main

@@ -273,6 +273,134 @@ describe("CodexNativeSubagentTaskMirror", () => {

273273

});

274274

});

275275276+

it("finalizes stale collab agent state from the blocked tool call status", () => {

277+

const runtime = createRuntime();

278+

const mirror = new CodexNativeSubagentTaskMirror(

279+

{

280+

parentThreadId: "parent-thread",

281+

requesterSessionKey: "agent:main:main",

282+

now: () => 45_000,

283+

},

284+

runtime,

285+

);

286+287+

mirror.handleNotification({

288+

method: "item/completed",

289+

params: {

290+

item: {

291+

type: "collabAgentToolCall",

292+

tool: "spawnAgent",

293+

status: "blocked",

294+

senderThreadId: "parent-thread",

295+

receiverThreadIds: ["child-thread"],

296+

prompt: "read cwd",

297+

agentsStates: {

298+

"child-thread": {

299+

status: "pendingInit",

300+

message: "Native hook relay unavailable",

301+

},

302+

},

303+

},

304+

},

305+

});

306+307+

expect(runtime.recordTaskRunProgressByRunId).not.toHaveBeenCalledWith({

308+

runId: "codex-thread:child-thread",

309+

runtime: "subagent",

310+

lastEventAt: 45_000,

311+

progressSummary: "Native hook relay unavailable",

312+

});

313+

expect(runtime.finalizeTaskRunByRunId).toHaveBeenCalledWith({

314+

runId: "codex-thread:child-thread",

315+

runtime: "subagent",

316+

status: "succeeded",

317+

endedAt: 45_000,

318+

lastEventAt: 45_000,

319+

progressSummary: "Native hook relay unavailable",

320+

terminalSummary: "Native hook relay unavailable",

321+

terminalOutcome: "blocked",

322+

});

323+

});

324+325+

it("does not treat completed tool calls as completed subagents", () => {

326+

const runtime = createRuntime();

327+

const mirror = new CodexNativeSubagentTaskMirror(

328+

{

329+

parentThreadId: "parent-thread",

330+

requesterSessionKey: "agent:main:main",

331+

now: () => 46_000,

332+

},

333+

runtime,

334+

);

335+336+

mirror.handleNotification({

337+

method: "item/completed",

338+

params: {

339+

item: {

340+

type: "collabAgentToolCall",

341+

tool: "spawnAgent",

342+

status: "completed",

343+

senderThreadId: "parent-thread",

344+

receiverThreadIds: ["child-thread"],

345+

prompt: "read cwd",

346+

agentsStates: {

347+

"child-thread": {

348+

status: "pendingInit",

349+

message: null,

350+

},

351+

},

352+

},

353+

},

354+

});

355+356+

expect(runtime.recordTaskRunProgressByRunId).toHaveBeenCalledWith({

357+

runId: "codex-thread:child-thread",

358+

runtime: "subagent",

359+

lastEventAt: 46_000,

360+

progressSummary: "Codex native subagent is initializing.",

361+

});

362+

expect(runtime.finalizeTaskRunByRunId).not.toHaveBeenCalled();

363+

});

364+365+

it("does not treat failed non-spawn tool calls as failed subagents", () => {

366+

const runtime = createRuntime();

367+

const mirror = new CodexNativeSubagentTaskMirror(

368+

{

369+

parentThreadId: "parent-thread",

370+

requesterSessionKey: "agent:main:main",

371+

now: () => 47_000,

372+

},

373+

runtime,

374+

);

375+376+

mirror.handleNotification({

377+

method: "item/completed",

378+

params: {

379+

item: {

380+

type: "collabAgentToolCall",

381+

tool: "wait",

382+

status: "failed",

383+

senderThreadId: "parent-thread",

384+

receiverThreadIds: [],

385+

agentsStates: {

386+

"child-thread": {

387+

status: "running",

388+

message: "wait timed out",

389+

},

390+

},

391+

},

392+

},

393+

});

394+395+

expect(runtime.recordTaskRunProgressByRunId).toHaveBeenCalledWith({

396+

runId: "codex-thread:child-thread",

397+

runtime: "subagent",

398+

lastEventAt: 47_000,

399+

progressSummary: "wait timed out",

400+

});

401+

expect(runtime.finalizeTaskRunByRunId).not.toHaveBeenCalled();

402+

});

403+276404

it("preserves a completed collab agent message when the thread later goes idle", () => {

277405

const runtime = createRuntime();

278406

const mirror = new CodexNativeSubagentTaskMirror(

@@ -322,6 +450,65 @@ describe("CodexNativeSubagentTaskMirror", () => {

322450

});

323451

});

324452453+

it("lets terminal collab agent state correct an earlier idle thread status", () => {

454+

const runtime = createRuntime();

455+

const mirror = new CodexNativeSubagentTaskMirror(

456+

{

457+

parentThreadId: "parent-thread",

458+

requesterSessionKey: "agent:main:main",

459+

now: () => 55_000,

460+

},

461+

runtime,

462+

);

463+464+

mirror.handleNotification({

465+

method: "thread/status/changed",

466+

params: {

467+

threadId: "child-thread",

468+

status: { type: "idle" },

469+

},

470+

});

471+

mirror.handleNotification({

472+

method: "item/completed",

473+

params: {

474+

item: {

475+

type: "collabAgentToolCall",

476+

tool: "spawnAgent",

477+

status: "failed",

478+

senderThreadId: "parent-thread",

479+

receiverThreadIds: ["child-thread"],

480+

prompt: "read cwd",

481+

agentsStates: {

482+

"child-thread": {

483+

status: "pendingInit",

484+

message: "Native hook relay unavailable",

485+

},

486+

},

487+

},

488+

},

489+

});

490+491+

expect(runtime.finalizeTaskRunByRunId).toHaveBeenNthCalledWith(1, {

492+

runId: "codex-thread:child-thread",

493+

runtime: "subagent",

494+

status: "succeeded",

495+

endedAt: 55_000,

496+

lastEventAt: 55_000,

497+

progressSummary: "Codex native subagent is idle.",

498+

terminalSummary: "Codex native subagent finished.",

499+

});

500+

expect(runtime.finalizeTaskRunByRunId).toHaveBeenNthCalledWith(2, {

501+

runId: "codex-thread:child-thread",

502+

runtime: "subagent",

503+

status: "failed",

504+

endedAt: 55_000,

505+

lastEventAt: 55_000,

506+

error: "Native hook relay unavailable",

507+

progressSummary: "Native hook relay unavailable",

508+

terminalSummary: "Native hook relay unavailable",

509+

});

510+

});

511+325512

it("normalizes collab agent status spelling from alternate event surfaces", () => {

326513

const runtime = createRuntime();

327514

const mirror = new CodexNativeSubagentTaskMirror(