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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
有赞技术团队
有赞技术团队
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
罗磊的独立博客
T
Tailwind CSS Blog
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

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
refactor(agents): remove unused compaction reserve helper...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -362,8 +362,8 @@ OpenClaw also enforces a safety floor for embedded runs:

362362
363363

Why: leave enough headroom for multi-turn "housekeeping" (like memory writes) before compaction becomes unavoidable.

364364
365-

Implementation: `ensureAgentCompactionReserveTokens()` in `src/agents/agent-settings.ts`

366-

(called from `src/agents/embedded-agent-runner.ts`).

365+

Implementation: `applyAgentCompactionSettingsFromConfig()` in `src/agents/agent-settings.ts`

366+

(called from embedded-runner turn and compaction setup paths).

367367
368368

---

369369
Original file line numberDiff line numberDiff line change

@@ -20,30 +20,6 @@ type AgentSettingsManagerLike = {

2020

setCompactionEnabled?: (enabled: boolean) => void;

2121

};

2222
23-

/**

24-

* Ensures the compaction reserve tokens are at least the specified minimum.

25-

* Note: This function is not context-aware and uses an uncapped floor.

26-

* If called for small-context models without threading `contextTokenBudget`,

27-

* it may re-introduce context overflow issues.

28-

*/

29-

export function ensureAgentCompactionReserveTokens(params: {

30-

settingsManager: AgentSettingsManagerLike;

31-

minReserveTokens?: number;

32-

}): { didOverride: boolean; reserveTokens: number } {

33-

const minReserveTokens = params.minReserveTokens ?? DEFAULT_AGENT_COMPACTION_RESERVE_TOKENS_FLOOR;

34-

const current = params.settingsManager.getCompactionReserveTokens();

35-
36-

if (current >= minReserveTokens) {

37-

return { didOverride: false, reserveTokens: current };

38-

}

39-
40-

params.settingsManager.applyOverrides({

41-

compaction: { reserveTokens: minReserveTokens },

42-

});

43-
44-

return { didOverride: true, reserveTokens: minReserveTokens };

45-

}

46-
4723

/** Resolves the configured reserve-token floor for agent compaction. */

4824

export function resolveCompactionReserveTokensFloor(cfg?: OpenClawConfig): number {

4925

const raw = cfg?.agents?.defaults?.compaction?.reserveTokensFloor;

Original file line numberDiff line numberDiff line change

@@ -528,7 +528,6 @@ export async function loadCompactHooksHarness(): Promise<{

528528

vi.doMock("../agent-settings.js", () => ({

529529

applyAgentAutoCompactionGuard: vi.fn(() => ({ supported: true, disabled: false })),

530530

applyAgentCompactionSettingsFromConfig: applyAgentCompactionSettingsFromConfigMock,

531-

ensureAgentCompactionReserveTokens: vi.fn(),

532531

isSilentOverflowProneModel: vi.fn(() => false),

533532

resolveCompactionReserveTokensFloor: vi.fn(() => 0),

534533

}));

Original file line numberDiff line numberDiff line change

@@ -10,10 +10,7 @@ import contextPruningExtension from "../agent-hooks/context-pruning.js";

1010

import { setContextPruningRuntime } from "../agent-hooks/context-pruning/runtime.js";

1111

import { computeEffectiveSettings } from "../agent-hooks/context-pruning/settings.js";

1212

import { makeToolPrunablePredicate } from "../agent-hooks/context-pruning/tools.js";

13-

import {

14-

ensureAgentCompactionReserveTokens,

15-

resolveEffectiveCompactionMode,

16-

} from "../agent-settings.js";

13+

import { resolveEffectiveCompactionMode } from "../agent-settings.js";

1714

import {

1815

finalizeToolTerminalPresentation,

1916

peekAdjustedParamsForToolCall,

@@ -209,5 +206,3 @@ export function buildEmbeddedExtensionFactories(params: {

209206

factories.push(buildAgentToolResultMiddlewareFactory(params.sessionManager, params.runId));

210207

return factories;

211208

}

212-
213-

export { ensureAgentCompactionReserveTokens };