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

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

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
feat(agents): add mid-turn compaction precheck (#73499) ·...
marchpure · 2026-04-30 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import fs from "node:fs/promises";

22

import path from "node:path";

33

import type { AgentMessage } from "@mariozechner/pi-agent-core";

44

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

5+

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

56

import { buildMemorySystemPromptAddition } from "../../../context-engine/delegate.js";

67

import {

78

clearMemoryPluginState,

@@ -29,6 +30,7 @@ import {

2930

buildEmbeddedSubscriptionParams,

3031

cleanupEmbeddedAttemptResources,

3132

} from "./attempt.subscription-cleanup.js";

33+

import type { MidTurnPrecheckRequest } from "./midturn-precheck.js";

32343335

const hoisted = getHoisted();

3436

const embeddedSessionId = "embedded-session";

@@ -37,6 +39,11 @@ const seedMessage = { role: "user", content: "seed", timestamp: 1 } as AgentMess

3739

const doneMessage = { role: "assistant", content: "done", timestamp: 2 } as unknown as AgentMessage;

3840

type AfterTurnPromptCacheCall = { runtimeContext?: { promptCache?: Record<string, unknown> } };

3941

type TrajectoryEvent = { type?: string; data?: Record<string, unknown> };

42+

type ToolResultGuardInstallParams = {

43+

midTurnPrecheck?: {

44+

onMidTurnPrecheck?: (request: MidTurnPrecheckRequest) => void;

45+

};

46+

};

40474148

function createTestContextEngine(params: Partial<AttemptContextEngine>): AttemptContextEngine {

4249

return {

@@ -770,3 +777,95 @@ describe("runEmbeddedAttempt context engine sessionKey forwarding", () => {

770777

});

771778

});

772779

});

780+781+

describe("runEmbeddedAttempt context engine mid-turn precheck integration", () => {

782+

const sessionKey = "agent:main:guildchat:channel:midturn-precheck";

783+

const tempPaths: string[] = [];

784+785+

beforeEach(() => {

786+

resetEmbeddedAttemptHarness();

787+

clearMemoryPluginState();

788+

});

789+790+

afterEach(async () => {

791+

await cleanupTempPaths(tempPaths);

792+

clearMemoryPluginState();

793+

vi.restoreAllMocks();

794+

});

795+796+

it("keeps mid-turn precheck out of the context-engine-owned compaction hook", async () => {

797+

await createContextEngineAttemptRunner({

798+

contextEngine: {

799+

...createContextEngineBootstrapAndAssemble(),

800+

info: { ownsCompaction: true },

801+

},

802+

sessionKey,

803+

tempPaths,

804+

attemptOverrides: {

805+

config: {

806+

agents: {

807+

defaults: {

808+

compaction: {

809+

mode: "safeguard",

810+

midTurnPrecheck: { enabled: true },

811+

},

812+

},

813+

},

814+

} as OpenClawConfig,

815+

},

816+

});

817+818+

expect(hoisted.installContextEngineLoopHookMock).toHaveBeenCalledWith(

819+

expect.not.objectContaining({ midTurnPrecheck: expect.anything() }),

820+

);

821+

});

822+823+

it("recovers when Pi persists the mid-turn precheck as an assistant error", async () => {

824+

hoisted.installToolResultContextGuardMock.mockImplementation((...args: unknown[]) => {

825+

const params = args[0] as ToolResultGuardInstallParams;

826+

params.midTurnPrecheck?.onMidTurnPrecheck?.({

827+

route: "compact_only",

828+

estimatedPromptTokens: 9000,

829+

promptBudgetBeforeReserve: 7000,

830+

overflowTokens: 2000,

831+

toolResultReducibleChars: 0,

832+

effectiveReserveTokens: 1000,

833+

});

834+

return () => {};

835+

});

836+837+

const syntheticPiError = {

838+

role: "assistant",

839+

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

840+

stopReason: "error",

841+

errorMessage: "Context overflow: prompt too large for the model (mid-turn precheck).",

842+

timestamp: 3,

843+

} as unknown as AgentMessage;

844+845+

const result = await createContextEngineAttemptRunner({

846+

contextEngine: createContextEngineBootstrapAndAssemble(),

847+

sessionKey,

848+

tempPaths,

849+

attemptOverrides: {

850+

config: {

851+

agents: {

852+

defaults: {

853+

compaction: {

854+

mode: "safeguard",

855+

midTurnPrecheck: { enabled: true },

856+

},

857+

},

858+

},

859+

} as OpenClawConfig,

860+

},

861+

sessionMessages: [seedMessage],

862+

sessionPrompt: async (session) => {

863+

session.messages = [...session.messages, syntheticPiError];

864+

},

865+

});

866+867+

expect(result.promptErrorSource).toBe("precheck");

868+

expect(result.preflightRecovery).toEqual({ route: "compact_only" });

869+

expect(result.messagesSnapshot).toEqual([seedMessage]);

870+

});

871+

});