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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - 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(agents): preserve accepted spawn terminal success (#8...
clawsweeper · 2026-05-22 · via Recent Commits to openclaw:main

@@ -1,6 +1,9 @@

11

import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

22

import type { OpenClawConfig } from "../../config/config.js";

3-

import { hasCommittedMessagingToolDeliveryEvidence } from "./delivery-evidence.js";

3+

import {

4+

hasCommittedMessagingToolDeliveryEvidence,

5+

hasOutboundDeliveryEvidence,

6+

} from "./delivery-evidence.js";

47

import { makeAttemptResult } from "./run.overflow-compaction.fixture.js";

58

import {

69

loadRunOverflowCompactionHarness,

@@ -1484,6 +1487,34 @@ describe("runEmbeddedPiAgent incomplete-turn safety", () => {

14841487

expect(retryInstruction).toBe(EMPTY_RESPONSE_RETRY_INSTRUCTION);

14851488

});

148614891490+

it("does not retry empty turns after an accepted sessions_spawn delivery", () => {

1491+

const retryInstruction = resolveEmptyResponseRetryInstruction({

1492+

provider: "ollama",

1493+

modelId: "gemma4:31b",

1494+

payloadCount: 0,

1495+

aborted: false,

1496+

timedOut: false,

1497+

attempt: makeAttemptResult({

1498+

assistantTexts: [],

1499+

acceptedSessionSpawns: [

1500+

{

1501+

runId: "run-child",

1502+

childSessionKey: "agent:claude:subagent:child",

1503+

},

1504+

],

1505+

lastAssistant: {

1506+

role: "assistant",

1507+

stopReason: "end_turn",

1508+

provider: "ollama",

1509+

model: "gemma4:31b",

1510+

content: [{ type: "text", text: "" }],

1511+

} as unknown as EmbeddedRunAttemptResult["lastAssistant"],

1512+

}),

1513+

});

1514+1515+

expect(retryInstruction).toBeNull();

1516+

});

1517+14871518

it("retries generic empty OpenAI-compatible turns from custom endpoints", () => {

14881519

const retryInstruction = resolveEmptyResponseRetryInstruction({

14891520

provider: "llama-cpp-local",

@@ -1654,6 +1685,100 @@ describe("runEmbeddedPiAgent incomplete-turn safety", () => {

16541685

expect(incompleteTurnText).toBeNull();

16551686

});

165616871688+

it("suppresses the incomplete-turn warning after an accepted sessions_spawn terminal success", () => {

1689+

const attemptWithAcceptedSpawn: Partial<EmbeddedRunAttemptResult> & {

1690+

acceptedSessionSpawns: Array<{ runId: string; childSessionKey: string }>;

1691+

} = {

1692+

assistantTexts: [],

1693+

acceptedSessionSpawns: [

1694+

{

1695+

runId: "run-child",

1696+

childSessionKey: "agent:claude:subagent:child",

1697+

},

1698+

],

1699+

lastAssistant: {

1700+

role: "assistant",

1701+

stopReason: "stop",

1702+

provider: "anthropic",

1703+

model: "sonnet-4.6",

1704+

content: [],

1705+

} as unknown as EmbeddedRunAttemptResult["lastAssistant"],

1706+

};

1707+1708+

const incompleteTurnText = resolveIncompleteTurnPayloadText({

1709+

payloadCount: 0,

1710+

aborted: false,

1711+

timedOut: false,

1712+

attempt: makeAttemptResult(attemptWithAcceptedSpawn),

1713+

});

1714+1715+

expect(incompleteTurnText).toBeNull();

1716+

});

1717+1718+

it("still returns a timeout payload when the parent prompt times out after an accepted sessions_spawn", async () => {

1719+

const acceptedSessionSpawns = [

1720+

{

1721+

runId: "run-child",

1722+

childSessionKey: "agent:claude:subagent:child",

1723+

},

1724+

];

1725+

mockedClassifyFailoverReason.mockReturnValue(null);

1726+

mockedRunEmbeddedAttempt.mockResolvedValueOnce(

1727+

makeAttemptResult({

1728+

assistantTexts: [],

1729+

acceptedSessionSpawns,

1730+

timedOut: true,

1731+

lastAssistant: {

1732+

role: "assistant",

1733+

stopReason: "toolUse",

1734+

provider: "openai",

1735+

model: "gpt-5.4",

1736+

content: [],

1737+

} as unknown as EmbeddedRunAttemptResult["lastAssistant"],

1738+

}),

1739+

);

1740+1741+

const result = await runEmbeddedPiAgent({

1742+

...overflowBaseRunParams,

1743+

provider: "openai",

1744+

model: "gpt-5.4",

1745+

runId: "run-timeout-after-accepted-spawn",

1746+

});

1747+1748+

expect(result.payloads).toEqual([

1749+

{

1750+

text: "Request timed out before a response was generated. Please try again, or increase `agents.defaults.timeoutSeconds` in your config.",

1751+

isError: true,

1752+

},

1753+

]);

1754+

expect(result.acceptedSessionSpawns).toEqual(acceptedSessionSpawns);

1755+

});

1756+1757+

it("still surfaces the incomplete-turn warning without an accepted sessions_spawn success", () => {

1758+

const attemptWithMalformedSpawn: Partial<EmbeddedRunAttemptResult> & {

1759+

acceptedSessionSpawns: Array<{ runId: string; childSessionKey: string }>;

1760+

} = {

1761+

assistantTexts: [],

1762+

acceptedSessionSpawns: [],

1763+

lastAssistant: {

1764+

role: "assistant",

1765+

stopReason: "stop",

1766+

provider: "anthropic",

1767+

model: "sonnet-4.6",

1768+

content: [],

1769+

} as unknown as EmbeddedRunAttemptResult["lastAssistant"],

1770+

};

1771+1772+

const incompleteTurnText = resolveIncompleteTurnPayloadText({

1773+

payloadCount: 0,

1774+

aborted: false,

1775+

timedOut: false,

1776+

attempt: makeAttemptResult(attemptWithMalformedSpawn),

1777+

});

1778+1779+

expect(incompleteTurnText).toContain("couldn't generate a response");

1780+

});

1781+16571782

it("still surfaces the incomplete-turn warning when no messaging delivery was committed", () => {

16581783

const incompleteTurnText = resolveIncompleteTurnPayloadText({

16591784

payloadCount: 0,

@@ -1738,6 +1863,40 @@ describe("runEmbeddedPiAgent incomplete-turn safety", () => {

17381863

).toEqual({ hadPotentialSideEffects: true, replaySafe: false });

17391864

});

174018651866+

it("treats accepted sessions_spawn as replay-invalid outbound delivery", () => {

1867+

const acceptedSessionSpawns = [

1868+

{

1869+

runId: "run-child",

1870+

childSessionKey: "agent:claude:subagent:child",

1871+

},

1872+

];

1873+1874+

expect(

1875+

buildAttemptReplayMetadata({

1876+

toolMetas: [],

1877+

didSendViaMessagingTool: false,

1878+

messagingToolSentTexts: [],

1879+

messagingToolSentMediaUrls: [],

1880+

acceptedSessionSpawns,

1881+

}),

1882+

).toEqual({ hadPotentialSideEffects: true, replaySafe: false });

1883+

expect(hasOutboundDeliveryEvidence({ acceptedSessionSpawns })).toBe(true);

1884+

});

1885+1886+

it("ignores malformed accepted sessions_spawn delivery evidence", () => {

1887+

expect(

1888+

hasOutboundDeliveryEvidence({

1889+

acceptedSessionSpawns: [

1890+

null,

1891+

{

1892+

runId: "run-child",

1893+

childSessionKey: " ",

1894+

},

1895+

],

1896+

}),

1897+

).toBe(false);

1898+

});

1899+17411900

it("leaves committed delivery plus tool errors to the tool-error payload path", () => {

17421901

const incompleteTurnText = resolveIncompleteTurnPayloadText({

17431902

payloadCount: 0,