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

推荐订阅源

N
Netflix TechBlog - Medium
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
WordPress大学
WordPress大学
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
Jina AI
Jina AI
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
D
Docker

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: preserve yielded CLI lifecycle state · openclaw/open...
zhangguiping · 2026-06-16 · via Recent Commits to openclaw:main

@@ -2000,69 +2000,7 @@ describe("subagent registry seam flow", () => {

20002000

expect(replacement?.endedAt).toBeUndefined();

20012001

});

200220022003-

it("keeps yield terminals paused when the lifecycle event also signals abort (#92448)", async () => {

2004-

// sessions_yield ends the turn by aborting the run signal, so a depth-1

2005-

// subagent's yield terminal can arrive carrying yielded plus aborted (or

2006-

// stopReason="aborted"). The event handler must still pause the run, not

2007-

// settle it `cancelled` and deliver a false notice to the requester.

2008-

mocks.callGateway.mockImplementation(async (request: { method?: string }) => {

2009-

if (request.method === "agent.wait") {

2010-

return { status: "pending" };

2011-

}

2012-

return {};

2013-

});

2014-2015-

const cases = [

2016-

{ runId: "run-yield-stopreason-aborted", extra: { stopReason: "aborted" } },

2017-

{ runId: "run-yield-aborted-flag", extra: { aborted: true } },

2018-

];

2019-2020-

for (const testCase of cases) {

2021-

mod.registerSubagentRun({

2022-

runId: testCase.runId,

2023-

childSessionKey: `agent:main:subagent:${testCase.runId}`,

2024-

requesterSessionKey: "agent:main:main",

2025-

requesterDisplayKey: "main",

2026-

task: "wait for child continuation",

2027-

cleanup: "keep",

2028-

});

2029-2030-

const lastOnAgentEventCall = mocks.onAgentEvent.mock.calls[

2031-

mocks.onAgentEvent.mock.calls.length - 1

2032-

] as unknown as

2033-

| [(evt: { runId: string; stream: string; data: Record<string, unknown> }) => void]

2034-

| undefined;

2035-

const lifecycleHandler = lastOnAgentEventCall?.[0];

2036-

expect(lifecycleHandler).toBeTypeOf("function");

2037-2038-

lifecycleHandler?.({

2039-

runId: testCase.runId,

2040-

stream: "lifecycle",

2041-

data: {

2042-

phase: "end",

2043-

startedAt: 111,

2044-

endedAt: 222,

2045-

yielded: true,

2046-

...testCase.extra,

2047-

},

2048-

});

2049-2050-

await waitForFast(() => {

2051-

const run = mod

2052-

.listSubagentRunsForRequester("agent:main:main")

2053-

.find((entry) => entry.runId === testCase.runId);

2054-

expect(run?.pauseReason).toBe("sessions_yield");

2055-

expect(run?.outcome?.status).not.toBe("error");

2056-

});

2057-

}

2058-2059-

// Paused, never killed → no farewell/cancellation notice reaches the requester.

2060-

expect(mocks.runSubagentAnnounceFlow).not.toHaveBeenCalled();

2061-

});

2062-2063-

it("cancels a pending grace timer when a yield follows an intermediate aborted terminal (#92448)", async () => {

2064-

// An earlier aborted terminal schedules a deferred kill grace timer; a

2065-

// following yield must clear it, or it fires and settles the now-paused run.

2003+

it("keeps CLI lifecycle-yielded subagent runs paused instead of completing cleanup", async () => {

20662004

mocks.callGateway.mockImplementation(async (request: { method?: string }) => {

20672005

if (request.method === "agent.wait") {

20682006

return { status: "pending" };

@@ -2071,12 +2009,13 @@ describe("subagent registry seam flow", () => {

20712009

});

2072201020732011

mod.registerSubagentRun({

2074-

runId: "run-yield-after-pending-timeout",

2075-

childSessionKey: "agent:main:subagent:pending-timeout",

2012+

runId: "run-cli-lifecycle-yield-paused",

2013+

childSessionKey: "agent:main:subagent:child",

20762014

requesterSessionKey: "agent:main:main",

20772015

requesterDisplayKey: "main",

2078-

task: "wait for child continuation",

2079-

cleanup: "keep",

2016+

task: "pause after CLI lifecycle yield",

2017+

cleanup: "delete",

2018+

expectsCompletionMessage: true,

20802019

});

2081202020822021

const lastOnAgentEventCall = mocks.onAgentEvent.mock.calls[

@@ -2087,96 +2026,30 @@ describe("subagent registry seam flow", () => {

20872026

const lifecycleHandler = lastOnAgentEventCall?.[0];

20882027

expect(lifecycleHandler).toBeTypeOf("function");

208920282090-

// Intermediate aborted terminal → schedules the deferred kill grace timer.

20912029

lifecycleHandler?.({

2092-

runId: "run-yield-after-pending-timeout",

2030+

runId: "run-cli-lifecycle-yield-paused",

20932031

stream: "lifecycle",

2094-

data: { phase: "end", startedAt: 111, endedAt: 222, aborted: true },

2095-

});

2096-

// Yield terminal → must pause and cancel the pending grace timer.

2097-

lifecycleHandler?.({

2098-

runId: "run-yield-after-pending-timeout",

2099-

stream: "lifecycle",

2100-

data: { phase: "end", startedAt: 111, endedAt: 333, yielded: true },

2032+

data: {

2033+

phase: "end",

2034+

startedAt: 333,

2035+

endedAt: 444,

2036+

yielded: true,

2037+

livenessState: "paused",

2038+

stopReason: "end_turn",

2039+

},

21012040

});

2102204121032042

await waitForFast(() => {

21042043

const run = mod

21052044

.listSubagentRunsForRequester("agent:main:main")

2106-

.find((entry) => entry.runId === "run-yield-after-pending-timeout");

2045+

.find((entry) => entry.runId === "run-cli-lifecycle-yield-paused");

2046+

expect(run?.endedAt).toBe(444);

21072047

expect(run?.pauseReason).toBe("sessions_yield");

2048+

expect(run?.outcome).toBeUndefined();

21082049

});

2109-2110-

// Advancing well past the 15s grace window must not undo the pause.

2111-

await vi.advanceTimersByTimeAsync(60_000);

2112-

const run = mod

2113-

.listSubagentRunsForRequester("agent:main:main")

2114-

.find((entry) => entry.runId === "run-yield-after-pending-timeout");

2115-

expect(run?.pauseReason).toBe("sessions_yield");

2116-

expect(run?.outcome?.status).not.toBe("error");

2117-

expect(mocks.runSubagentAnnounceFlow).not.toHaveBeenCalled();

2118-

});

2119-2120-

it("cancels a pending grace timer when agent.wait observes the yield after an aborted terminal (#92448)", async () => {

2121-

let resolveWait: (value: {

2122-

status: "ok";

2123-

startedAt: number;

2124-

endedAt: number;

2125-

yielded: true;

2126-

}) => void = () => {};

2127-

const waitResult = new Promise<{

2128-

status: "ok";

2129-

startedAt: number;

2130-

endedAt: number;

2131-

yielded: true;

2132-

}>((resolve) => {

2133-

resolveWait = resolve;

2134-

});

2135-

mocks.callGateway.mockImplementation(async (request: { method?: string }) => {

2136-

if (request.method === "agent.wait") {

2137-

return waitResult;

2138-

}

2139-

return {};

2140-

});

2141-2142-

mod.registerSubagentRun({

2143-

runId: "run-wait-yield-after-pending-timeout",

2144-

childSessionKey: "agent:main:subagent:pending-wait-timeout",

2145-

requesterSessionKey: "agent:main:main",

2146-

requesterDisplayKey: "main",

2147-

task: "wait for child continuation through wait",

2148-

cleanup: "keep",

2149-

});

2150-2151-

const lastOnAgentEventCall = mocks.onAgentEvent.mock.calls[

2152-

mocks.onAgentEvent.mock.calls.length - 1

2153-

] as unknown as

2154-

| [(evt: { runId: string; stream: string; data: Record<string, unknown> }) => void]

2155-

| undefined;

2156-

const lifecycleHandler = lastOnAgentEventCall?.[0];

2157-

expect(lifecycleHandler).toBeTypeOf("function");

2158-2159-

lifecycleHandler?.({

2160-

runId: "run-wait-yield-after-pending-timeout",

2161-

stream: "lifecycle",

2162-

data: { phase: "end", startedAt: 111, endedAt: 222, aborted: true },

2163-

});

2164-

resolveWait({ status: "ok", startedAt: 111, endedAt: 333, yielded: true });

2165-2166-

await waitForFast(() => {

2167-

const run = mod

2168-

.listSubagentRunsForRequester("agent:main:main")

2169-

.find((entry) => entry.runId === "run-wait-yield-after-pending-timeout");

2170-

expect(run?.pauseReason).toBe("sessions_yield");

2171-

});

2172-2173-

await vi.advanceTimersByTimeAsync(60_000);

2174-

const run = mod

2175-

.listSubagentRunsForRequester("agent:main:main")

2176-

.find((entry) => entry.runId === "run-wait-yield-after-pending-timeout");

2177-

expect(run?.pauseReason).toBe("sessions_yield");

2178-

expect(run?.outcome?.status).not.toBe("timeout");

21792050

expect(mocks.runSubagentAnnounceFlow).not.toHaveBeenCalled();

2051+

expect(mocks.cleanupBrowserSessionsForLifecycleEnd).not.toHaveBeenCalled();

2052+

expect(mod.countPendingDescendantRuns("agent:main:main")).toBe(1);

21802053

});

2181205421822055

it("announces blocked agent.wait snapshots as errors instead of success", async () => {

@@ -2777,101 +2650,6 @@ describe("subagent registry seam flow", () => {

27772650

expect(mocks.runSubagentAnnounceFlow).toHaveBeenCalledTimes(1);

27782651

});

277926522780-

it("announces restart lifecycle end events as killed subagent failures", async () => {

2781-

mocks.callGateway.mockImplementation(async (request: { method?: string }) => {

2782-

if (request.method === "agent.wait") {

2783-

return { status: "pending" };

2784-

}

2785-

return {};

2786-

});

2787-2788-

mod.registerSubagentRun({

2789-

runId: "run-restart-end",

2790-

childSessionKey: "agent:main:subagent:child",

2791-

requesterSessionKey: "agent:main:main",

2792-

requesterDisplayKey: "main",

2793-

task: "restart task",

2794-

cleanup: "keep",

2795-

expectsCompletionMessage: true,

2796-

});

2797-2798-

const lastOnAgentEventCall = mocks.onAgentEvent.mock.calls[

2799-

mocks.onAgentEvent.mock.calls.length - 1

2800-

] as unknown as

2801-

| [(evt: { runId: string; stream: string; data: Record<string, unknown> }) => void]

2802-

| undefined;

2803-

const lifecycleHandler = lastOnAgentEventCall?.[0];

2804-

lifecycleHandler?.({

2805-

runId: "run-restart-end",

2806-

stream: "lifecycle",

2807-

data: {

2808-

phase: "end",

2809-

startedAt: 10,

2810-

endedAt: 20,

2811-

aborted: true,

2812-

stopReason: "restart",

2813-

},

2814-

});

2815-2816-

await waitForFast(() => {

2817-

const run = mod

2818-

.listSubagentRunsForRequester("agent:main:main")

2819-

.find((entry) => entry.runId === "run-restart-end");

2820-

expect(run?.endedReason).toBe("subagent-killed");

2821-

expect(run?.outcome?.status).toBe("error");

2822-

expect(run?.cleanupCompletedAt).toBeTypeOf("number");

2823-

expect(mocks.runSubagentAnnounceFlow).toHaveBeenCalledTimes(1);

2824-

});

2825-

});

2826-2827-

it("announces restart lifecycle error events as killed subagent failures", async () => {

2828-

mocks.callGateway.mockImplementation(async (request: { method?: string }) => {

2829-

if (request.method === "agent.wait") {

2830-

return { status: "pending" };

2831-

}

2832-

return {};

2833-

});

2834-2835-

mod.registerSubagentRun({

2836-

runId: "run-restart-error",

2837-

childSessionKey: "agent:main:subagent:child",

2838-

requesterSessionKey: "agent:main:main",

2839-

requesterDisplayKey: "main",

2840-

task: "restart error task",

2841-

cleanup: "keep",

2842-

expectsCompletionMessage: true,

2843-

});

2844-2845-

const lastOnAgentEventCall = mocks.onAgentEvent.mock.calls[

2846-

mocks.onAgentEvent.mock.calls.length - 1

2847-

] as unknown as

2848-

| [(evt: { runId: string; stream: string; data: Record<string, unknown> }) => void]

2849-

| undefined;

2850-

const lifecycleHandler = lastOnAgentEventCall?.[0];

2851-

lifecycleHandler?.({

2852-

runId: "run-restart-error",

2853-

stream: "lifecycle",

2854-

data: {

2855-

phase: "error",

2856-

startedAt: 10,

2857-

endedAt: 20,

2858-

error: "ACP turn failed before completion",

2859-

aborted: true,

2860-

stopReason: "restart",

2861-

},

2862-

});

2863-2864-

await waitForFast(() => {

2865-

const run = mod

2866-

.listSubagentRunsForRequester("agent:main:main")

2867-

.find((entry) => entry.runId === "run-restart-error");

2868-

expect(run?.endedReason).toBe("subagent-killed");

2869-

expect(run?.outcome?.status).toBe("error");

2870-

expect(run?.cleanupCompletedAt).toBeTypeOf("number");

2871-

expect(mocks.runSubagentAnnounceFlow).toHaveBeenCalledTimes(1);

2872-

});

2873-

});

2874-28752653

it("resumes ended cleanup when lifecycle killed completion rejects before cleanup", async () => {

28762654

mocks.callGateway.mockImplementation(async (request: { method?: string }) => {

28772655

if (request.method === "agent.wait") {