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

推荐订阅源

G
Google Developers Blog
博客园 - 聂微东
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
D
Docker
B
Blog
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
月光博客
月光博客
F
Fortinet All Blogs
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
The Cloudflare Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
U
Unit 42

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(tasks): make delegated completions review-ready · ope...
100menotu001 · 2026-05-17 · via Recent Commits to openclaw:main

@@ -865,7 +865,7 @@ describe("task-registry", () => {

865865

});

866866

});

867867868-

it("delivers ACP completion to the requester channel when a delivery origin exists", async () => {

868+

it("queues delegated ACP completion to the requester session when a delivery origin exists", async () => {

869869

await withTaskRegistryTempDir(async (root) => {

870870

process.env.OPENCLAW_STATE_DIR = root;

871871

resetTaskRegistryMemoryForTest();

@@ -903,6 +903,104 @@ describe("task-registry", () => {

903903904904

await waitForAssertion(() =>

905905

expectRecordFields(requireTaskByRunId("run-delivery"), {

906+

status: "succeeded",

907+

deliveryStatus: "pending",

908+

}),

909+

);

910+

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

911+

expect(peekSystemEvents("agent:main:main")).toEqual([

912+

expect.stringContaining("Background task ready for review: ACP background task"),

913+

]);

914+

});

915+

});

916+917+

it("keeps direct delegated ACP completions pending so parent-review handoffs can retry", async () => {

918+

await withTaskRegistryTempDir(

919+

async (root) => {

920+

process.env.OPENCLAW_STATE_DIR = root;

921+

hoisted.sendMessageMock.mockResolvedValue({

922+

channel: "notifychat",

923+

to: "notifychat:123",

924+

via: "direct",

925+

});

926+927+

const task = createTaskRecord({

928+

runtime: "acp",

929+

ownerKey: "agent:main:main",

930+

scopeKind: "session",

931+

requesterOrigin: {

932+

channel: "notifychat",

933+

to: "notifychat:123",

934+

},

935+

childSessionKey: "agent:main:acp:child",

936+

runId: "run-delivery-retry",

937+

task: "Investigate issue",

938+

status: "succeeded",

939+

deliveryStatus: "pending",

940+

});

941+942+

await waitForAssertion(() =>

943+

expect(peekSystemEvents("agent:main:main")).toEqual([

944+

expect.stringContaining("Background task ready for review: ACP background task"),

945+

]),

946+

);

947+

expectRecordFields(requireTaskById(task.taskId), {

948+

deliveryStatus: "pending",

949+

});

950+951+

resetSystemEventsForTest();

952+

reloadTaskRegistryFromStore();

953+

await maybeDeliverTaskTerminalUpdate(task.taskId);

954+955+

expectRecordFields(requireTaskById(task.taskId), {

956+

deliveryStatus: "pending",

957+

});

958+

expect(peekSystemEvents("agent:main:main")).toEqual([

959+

expect.stringContaining("Background task ready for review: ACP background task"),

960+

]);

961+

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

962+

},

963+

{ durableStore: true },

964+

);

965+

});

966+967+

it("delivers non-delegated ACP completion to the requester channel when a delivery origin exists", async () => {

968+

await withTaskRegistryTempDir(async (root) => {

969+

process.env.OPENCLAW_STATE_DIR = root;

970+

resetTaskRegistryMemoryForTest();

971+

hoisted.sendMessageMock.mockResolvedValue({

972+

channel: "notifychat",

973+

to: "notifychat:123",

974+

via: "direct",

975+

});

976+977+

createTaskRecord({

978+

runtime: "acp",

979+

ownerKey: "agent:main:main",

980+

scopeKind: "session",

981+

requesterOrigin: {

982+

channel: "notifychat",

983+

to: "notifychat:123",

984+

threadId: "321",

985+

},

986+

runId: "run-direct-delivery",

987+

task: "Investigate issue",

988+

status: "running",

989+

deliveryStatus: "pending",

990+

startedAt: 100,

991+

});

992+993+

emitAgentEvent({

994+

runId: "run-direct-delivery",

995+

stream: "lifecycle",

996+

data: {

997+

phase: "end",

998+

endedAt: 250,

999+

},

1000+

});

1001+1002+

await waitForAssertion(() =>

1003+

expectRecordFields(requireTaskByRunId("run-direct-delivery"), {

9061004

status: "succeeded",

9071005

deliveryStatus: "delivered",

9081006

}),

@@ -999,7 +1097,7 @@ describe("task-registry", () => {

9991097

});

10001098

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

10011099

expect(peekSystemEvents(ownerKey)).toEqual([

1002-

"Background task done: ACP background task (run run-grou).",

1100+

expect.stringContaining("Background task ready for review: ACP background task"),

10031101

]);

10041102

expect(hasPendingHeartbeatWake()).toBe(true);

10051103

});

@@ -1124,7 +1222,7 @@ describe("task-registry", () => {

11241222

);

11251223

const events = peekSystemEvents("agent:main:main");

11261224

expect(events).toHaveLength(1);

1127-

expect(events[0]).toContain("Background task done: ACP background task");

1225+

expect(events[0]).toContain("Background task ready for review: ACP background task");

11281226

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

11291227

});

11301228

});

@@ -1204,11 +1302,14 @@ describe("task-registry", () => {

12041302

},

12051303

});

120613041207-

await waitForAssertion(() =>

1208-

expectRecordFields(sentMessageCall(), {

1209-

content: "Background task done: ACP background task (run run-deta).",

1210-

}),

1211-

);

1305+

await waitForAssertion(() => {

1306+

const events = peekSystemEvents("agent:main:main");

1307+

expect(events).toHaveLength(1);

1308+

expect(events[0]).toBe(

1309+

"Background task ready for review: ACP background task (run run-deta). Next: parent will review/verify before calling it done.",

1310+

);

1311+

});

1312+

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

12121313

});

12131314

});

12141315

@@ -1279,14 +1380,15 @@ describe("task-registry", () => {

12791380

terminalOutcome: "succeeded",

12801381

});

128113821282-

await waitForAssertion(() =>

1283-

expectRecordFields(sentMessageCall(), {

1284-

content:

1285-

"Background task done: ACP background task (run run-succ). Created /tmp/file.txt and verified contents.",

1286-

}),

1287-

);

1288-

expect(peekSystemEvents("agent:main:main")).toStrictEqual([]);

1289-

expect(hasPendingHeartbeatWake()).toBe(false);

1383+

await waitForAssertion(() => {

1384+

const events = peekSystemEvents("agent:main:main");

1385+

expect(events).toHaveLength(1);

1386+

expect(events[0]).toBe(

1387+

"Background task ready for review: ACP background task (run run-succ). Created /tmp/file.txt and verified contents. Next: parent will review/verify before calling it done.",

1388+

);

1389+

});

1390+

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

1391+

expect(hasPendingHeartbeatWake()).toBe(true);

12901392

});

12911393

});

12921394

@@ -1419,15 +1521,18 @@ describe("task-registry", () => {

14191521

await maybeDeliverTaskTerminalUpdate(directTask.taskId);

14201522

await maybeDeliverTaskTerminalUpdate(spawnedTask.taskId);

142115231422-

expect(hoisted.sendMessageMock).toHaveBeenCalledTimes(1);

1524+

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

14231525

expect(countMatching(listTaskRecords(), (task) => task.runId === "run-shared-delivery")).toBe(

14241526

1,

14251527

);

14261528

expectRecordFields(requireTaskByRunId("run-shared-delivery"), {

14271529

taskId: directTask.taskId,

14281530

task: "Spawn ACP child",

1429-

deliveryStatus: "delivered",

1531+

deliveryStatus: "pending",

14301532

});

1533+

expect(peekSystemEvents("agent:main:main")).toEqual([

1534+

expect.stringContaining("Background task ready for review: ACP background task"),

1535+

]);

14311536

});

14321537

});

14331538

@@ -2764,12 +2869,10 @@ describe("task-registry", () => {

27642869

});

27652870

await flushAsyncWork();

276628712767-

expectRecordFields(sentMessageCall(), {

2768-

channel: "guildchat",

2769-

to: "guildchat:123",

2770-

content: "Background task done: ACP background task (run run-quie).",

2771-

});

2772-

expect(peekSystemEvents("agent:main:main")).toStrictEqual([]);

2872+

expect(hoisted.sendMessageMock).not.toHaveBeenCalled();

2873+

expect(peekSystemEvents("agent:main:main")).toEqual([

2874+

"Background task ready for review: ACP background task (run run-quie). Next: parent will review/verify before calling it done.",

2875+

]);

27732876

relay.dispose();

27742877

vi.useRealTimers();

27752878

});