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

推荐订阅源

IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
I
InfoQ
Jina AI
Jina AI
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
量子位
月光博客
月光博客
罗磊的独立博客
雷峰网
雷峰网
The Cloudflare Blog
V
V2EX
小众软件
小众软件
人人都是产品经理
人人都是产品经理
博客园 - Franky
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题

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): observe post-compaction guard live · opencla...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

@@ -1,9 +1,10 @@

1-

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

1+

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

22

import type {

33

diagnosticSessionStates as DiagnosticSessionStatesType,

44

getDiagnosticSessionState as GetDiagnosticSessionStateType,

55

SessionState,

66

} from "../../logging/diagnostic-session-state.js";

7+

import type { wrapToolWithBeforeToolCallHook as WrapToolWithBeforeToolCallHookType } from "../pi-tools.before-tool-call.js";

78

import type {

89

recordToolCall as RecordToolCallType,

910

recordToolCallOutcome as RecordToolCallOutcomeType,

@@ -35,6 +36,7 @@ let diagnosticSessionStates: typeof DiagnosticSessionStatesType;

3536

let getDiagnosticSessionState: typeof GetDiagnosticSessionStateType;

3637

let recordToolCall: typeof RecordToolCallType;

3738

let recordToolCallOutcome: typeof RecordToolCallOutcomeType;

39+

let wrapToolWithBeforeToolCallHook: typeof WrapToolWithBeforeToolCallHookType;

3840

let PostCompactionLoopPersistedError: typeof PostCompactionLoopPersistedErrorType;

39414042

// Mirror the production trim cap (resolveLoopDetectionConfig default

@@ -49,7 +51,7 @@ function recordToolOutcome(

4951

result: unknown,

5052

runId?: string,

5153

): void {

52-

const toolCallId = `${toolName}-${state.toolOutcomeSeq ?? 0}`;

54+

const toolCallId = `${toolName}-${state.toolCallHistory?.length ?? 0}`;

5355

const scope = runId ? { runId } : undefined;

5456

recordToolCall(state, toolName, toolParams, toolCallId, undefined, scope);

5557

const outcome: Parameters<typeof recordToolCallOutcome>[1] = {

@@ -64,6 +66,30 @@ function recordToolOutcome(

6466

recordToolCallOutcome(state, outcome);

6567

}

666869+

let liveToolCallSeq = 0;

70+71+

async function executeWrappedToolOutcome(

72+

toolName: string,

73+

toolParams: unknown,

74+

result: unknown,

75+

runId = baseParams.runId,

76+

): Promise<unknown> {

77+

const tool = wrapToolWithBeforeToolCallHook(

78+

{

79+

name: toolName,

80+

execute: vi.fn(async () => result),

81+

} as never,

82+

{

83+

agentId: "main",

84+

sessionKey: baseParams.sessionKey,

85+

sessionId: baseParams.sessionId,

86+

runId,

87+

},

88+

);

89+

liveToolCallSeq += 1;

90+

return tool.execute(`${toolName}-${liveToolCallSeq}`, toolParams, undefined, undefined);

91+

}

92+6793

describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

6894

beforeAll(async () => {

6995

({ runEmbeddedPiAgent } = await loadRunOverflowCompactionHarness());

@@ -72,10 +98,12 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

7298

({ diagnosticSessionStates, getDiagnosticSessionState } =

7399

await import("../../logging/diagnostic-session-state.js"));

74100

({ recordToolCall, recordToolCallOutcome } = await import("../tool-loop-detection.js"));

101+

({ wrapToolWithBeforeToolCallHook } = await import("../pi-tools.before-tool-call.js"));

75102

({ PostCompactionLoopPersistedError } = await import("./post-compaction-loop-guard.js"));

76103

});

7710478105

beforeEach(() => {

106+

liveToolCallSeq = 0;

79107

diagnosticSessionStates.clear();

80108

mockedRunEmbeddedAttempt.mockReset();

81109

mockedCompactDirect.mockReset();

@@ -122,29 +150,24 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

122150123151

it("aborts the run with PostCompactionLoopPersistedError when identical (tool, args, result) repeats windowSize times after compaction", async () => {

124152

const overflowError = makeOverflowError();

125-

const sessionState = getDiagnosticSessionState({

126-

sessionKey: baseParams.sessionKey,

127-

sessionId: baseParams.sessionId,

128-

});

153+

let attemptReturned = false;

129154130155

// Attempt 1: overflow → triggers compaction.

131156

mockedRunEmbeddedAttempt.mockImplementationOnce(async () =>

132157

makeAttemptResult({ promptError: overflowError }),

133158

);

134-

// Attempt 2: post-compaction. The wrapped tool layer would have

135-

// recorded `windowSize` identical (tool, args, result) outcomes during

136-

// this single attempt. The runner's after-attempt guard observation

137-

// sees all three at once, accumulates matches, and aborts on the third.

159+

// Attempt 2: post-compaction. The live wrapped-tool path records each

160+

// outcome while the prompt is still running; the third identical result

161+

// aborts before the attempt can return.

138162

mockedRunEmbeddedAttempt.mockImplementationOnce(async () => {

139163

for (let i = 0; i < 3; i += 1) {

140-

recordToolOutcome(

141-

sessionState,

164+

await executeWrappedToolOutcome(

142165

"gateway",

143166

{ action: "lookup", path: "x" },

144167

"identical-result",

145-

baseParams.runId,

146168

);

147169

}

170+

attemptReturned = true;

148171

return makeAttemptResult({

149172

promptError: null,

150173

toolMetas: [{ toolName: "gateway" }, { toolName: "gateway" }, { toolName: "gateway" }],

@@ -165,35 +188,25 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

165188166189

expect(mockedCompactDirect).toHaveBeenCalledTimes(1);

167190

expect(mockedRunEmbeddedAttempt).toHaveBeenCalledTimes(2);

191+

expect(attemptReturned).toBe(false);

168192

});

169193170194

it("does not abort when the result hash changes across post-compaction attempts (progress was made)", async () => {

171195

const overflowError = makeOverflowError();

172-

const sessionState = getDiagnosticSessionState({

173-

sessionKey: baseParams.sessionKey,

174-

sessionId: baseParams.sessionId,

175-

});

176-177196

// Attempt 1: overflow → triggers compaction.

178197

mockedRunEmbeddedAttempt.mockImplementationOnce(async () =>

179198

makeAttemptResult({ promptError: overflowError }),

180199

);

181200

// Attempt 2 (post-compaction): identical args, but DIFFERENT result hash

182-

// each time. Only one further attempt is needed since the runner exits

183-

// on a successful prompt with no further retry trigger.

184-

let callCounter = 0;

201+

// each time. This fills the window without triggering the persisted-loop

202+

// abort because the tool is making progress.

185203

mockedRunEmbeddedAttempt.mockImplementationOnce(async () => {

186-

callCounter += 1;

187-

recordToolOutcome(

188-

sessionState,

189-

"gateway",

190-

{ action: "lookup", path: "x" },

191-

`result-${callCounter}`,

192-

baseParams.runId,

193-

);

204+

for (let i = 0; i < 3; i += 1) {

205+

await executeWrappedToolOutcome("gateway", { action: "lookup", path: "x" }, `result-${i}`);

206+

}

194207

return makeAttemptResult({

195208

promptError: null,

196-

toolMetas: [{ toolName: "gateway" }],

209+

toolMetas: [{ toolName: "gateway" }, { toolName: "gateway" }, { toolName: "gateway" }],

197210

});

198211

});

199212

@@ -214,10 +227,6 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

214227

it("disarms after windowSize observations regardless of match, so later identical calls do not abort", async () => {

215228

// Use windowSize: 2 so the guard disarms after 2 observations.

216229

const overflowError = makeOverflowError();

217-

const sessionState = getDiagnosticSessionState({

218-

sessionKey: baseParams.sessionKey,

219-

sessionId: baseParams.sessionId,

220-

});

221230222231

// Attempt 1: overflow → triggers compaction.

223232

mockedRunEmbeddedAttempt.mockImplementationOnce(async () =>

@@ -227,8 +236,8 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

227236

// guard disarms with no abort. We then append more identical records

228237

// afterwards in this test to confirm they are not observed by the guard.

229238

mockedRunEmbeddedAttempt.mockImplementationOnce(async () => {

230-

recordToolOutcome(sessionState, "read", { path: "/a" }, "ra", baseParams.runId);

231-

recordToolOutcome(sessionState, "write", { path: "/b" }, "rb", baseParams.runId);

239+

await executeWrappedToolOutcome("read", { path: "/a" }, "ra");

240+

await executeWrappedToolOutcome("write", { path: "/b" }, "rb");

232241

return makeAttemptResult({

233242

promptError: null,

234243

toolMetas: [{ toolName: "read" }, { toolName: "write" }],

@@ -259,12 +268,10 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

259268

expect(mockedRunEmbeddedAttempt).toHaveBeenCalledTimes(2);

260269

});

261270262-

it("aborts post-compaction loop even when toolCallHistory is at its trim cap (regression: index-cursor blind spot in long-running sessions)", async () => {

271+

it("aborts post-compaction loop from the live tool path even when toolCallHistory is at its trim cap", async () => {

263272

// Long-running sessions accumulate up to historySize (default 30) records

264-

// in toolCallHistory. Pushing more entries triggers trim, which would

265-

// shift records out from under an absolute index cursor and let the

266-

// guard silently miss every loop. The seq-based observation must still

267-

// see the new records via the tail-slice path.

273+

// in toolCallHistory. The live observer must still see the new outcome

274+

// before trimming can make any after-attempt cursor ambiguous.

268275

const overflowError = makeOverflowError();

269276

const sessionState = getDiagnosticSessionState({

270277

sessionKey: baseParams.sessionKey,

@@ -283,20 +290,15 @@ describe("post-compaction loop guard wired into runEmbeddedPiAgent", () => {

283290

mockedRunEmbeddedAttempt.mockImplementationOnce(async () =>

284291

makeAttemptResult({ promptError: overflowError }),

285292

);

286-

// Attempt 2 (post-compaction): three identical records appended while

287-

// history is already at the cap. These pushes trigger trim, shifting

288-

// older entries out. With the old index-cursor scheme, length never

289-

// grew so the observation loop never ran. With the seq-based scheme,

290-

// the tail of length-30 history contains the three new records and

291-

// the guard aborts on the third match.

293+

// Attempt 2 (post-compaction): three identical live tool outcomes while

294+

// history is already at the cap. The guard aborts on the third result

295+

// before the mocked attempt can return.

292296

mockedRunEmbeddedAttempt.mockImplementationOnce(async () => {

293297

for (let i = 0; i < 3; i += 1) {

294-

recordToolOutcome(

295-

sessionState,

298+

await executeWrappedToolOutcome(

296299

"gateway",

297300

{ action: "lookup", path: "x" },

298301

"identical-result",

299-

baseParams.runId,

300302

);

301303

}

302304

// History is still capped at HISTORY_TRIM_CAP after the trim.