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

推荐订阅源

P
Proofpoint News Feed
V
V2EX
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
The Cloudflare Blog
T
Tailwind CSS Blog
H
Help Net Security
腾讯CDC
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
C
Check Point Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
让小产品的独立变现更简单 - 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): skip below-target CLI compaction failures · ...
frankekn · 2026-05-31 · via Recent Commits to openclaw:main

@@ -13,6 +13,7 @@ import {

1313

applyAgentAutoCompactionGuard as applyAgentAutoCompactionGuardImpl,

1414

resolveEffectiveCompactionMode,

1515

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

16+

import { classifyCompactionReason } from "../embedded-agent-runner/compact-reasons.js";

1617

import { buildEmbeddedCompactionRuntimeContext } from "../embedded-agent-runner/compaction-runtime-context.js";

1718

import {

1819

compactContextEngineWithSafetyTimeout,

@@ -28,7 +29,10 @@ import { ensureSelectedAgentHarnessPlugin as ensureSelectedAgentHarnessPluginImp

2829

import { maybeCompactAgentHarnessSession as maybeCompactAgentHarnessSessionImpl } from "../harness/selection.js";

2930

import type { AgentMessage } from "../runtime/index.js";

3031

import { SessionManager } from "../sessions/session-manager.js";

31-

import { recordCliCompactionInStore as recordCliCompactionInStoreImpl } from "./session-store.js";

32+

import {

33+

clearCliSessionInStore as clearCliSessionInStoreImpl,

34+

recordCliCompactionInStore as recordCliCompactionInStoreImpl,

35+

} from "./session-store.js";

32363337

const CODEX_APP_SERVER_OWNS_AUTO_COMPACTION_REASON = "codex app-server owns automatic compaction";

3438

@@ -64,13 +68,15 @@ type CliCompactionDeps = {

6468

runContextEngineMaintenance: typeof runContextEngineMaintenanceImpl;

6569

ensureSelectedAgentHarnessPlugin: typeof ensureSelectedAgentHarnessPluginImpl;

6670

maybeCompactAgentHarnessSession: typeof maybeCompactAgentHarnessSessionImpl;

71+

clearCliSessionInStore: typeof clearCliSessionInStoreImpl;

6772

recordCliCompactionInStore: typeof recordCliCompactionInStoreImpl;

6873

};

69747075

type NativeHarnessCliCompactionOutcome = {

7176

compacted: boolean;

7277

result?: EmbeddedAgentCompactResult;

7378

fallbackToContextEngine?: boolean;

79+

clearCliSessionBinding?: boolean;

7480

failureReason?: string;

7581

};

7682

type CliTranscriptCompactionOutcome = {

@@ -109,6 +115,7 @@ const cliCompactionDeps: CliCompactionDeps = {

109115

runContextEngineMaintenance: runContextEngineMaintenanceImpl,

110116

ensureSelectedAgentHarnessPlugin: ensureSelectedAgentHarnessPluginImpl,

111117

maybeCompactAgentHarnessSession: maybeCompactAgentHarnessSessionImpl,

118+

clearCliSessionInStore: clearCliSessionInStoreImpl,

112119

recordCliCompactionInStore: recordCliCompactionInStoreImpl,

113120

};

114121

@@ -128,6 +135,7 @@ export function resetCliCompactionTestDeps(): void {

128135

runContextEngineMaintenance: runContextEngineMaintenanceImpl,

129136

ensureSelectedAgentHarnessPlugin: ensureSelectedAgentHarnessPluginImpl,

130137

maybeCompactAgentHarnessSession: maybeCompactAgentHarnessSessionImpl,

138+

clearCliSessionInStore: clearCliSessionInStoreImpl,

131139

recordCliCompactionInStore: recordCliCompactionInStoreImpl,

132140

});

133141

}

@@ -177,6 +185,10 @@ function isUnsupportedNativeHarnessCompaction(

177185

return result?.ok === false && result.failure?.reason === "unsupported_harness_compaction";

178186

}

179187188+

function isBelowCompactionTargetReason(reason: string | undefined): boolean {

189+

return classifyCompactionReason(reason) === "below_threshold";

190+

}

191+180192

function isIntentionalNativeAutoCompactionSkip(

181193

result: EmbeddedAgentCompactResult | undefined,

182194

): boolean {

@@ -285,8 +297,15 @@ async function compactCliTranscript(params: {

285297

}

286298287299

if (!compactResult.compacted) {

300+

const reason = compactResult.reason ?? "nothing to compact";

301+

if (isBelowCompactionTargetReason(reason)) {

302+

log.info(

303+

`CLI transcript compaction skipped for ${params.provider}/${params.model}: ${reason}`,

304+

);

305+

return { compacted: false };

306+

}

288307

log.warn(

289-

`CLI transcript compaction did not reduce context for ${params.provider}/${params.model}: ${compactResult.reason ?? "nothing to compact"}`,

308+

`CLI transcript compaction did not reduce context for ${params.provider}/${params.model}: ${reason}`,

290309

);

291310

return {

292311

compacted: false,

@@ -412,22 +431,30 @@ async function compactNativeHarnessCliTranscript(params: {

412431

}

413432414433

if (!result?.compacted) {

434+

const reason = result?.reason ?? "nothing to compact";

435+

if (isBelowCompactionTargetReason(reason)) {

436+

log.info(

437+

`CLI native harness compaction skipped for ${params.provider}/${params.model}: ${reason}`,

438+

);

439+

return { compacted: false };

440+

}

415441

if (isIntentionalNativeAutoCompactionSkip(result)) {

416442

return {

417443

compacted: false,

418444

fallbackToContextEngine: true,

419445

failureReason: CODEX_APP_SERVER_OWNS_AUTO_COMPACTION_REASON,

420446

};

421447

}

448+

const recoverableBindingFailure = isRecoverableNativeHarnessBindingFailure(result);

422449

const fallbackToContextEngine =

423-

isUnsupportedNativeHarnessCompaction(result) ||

424-

isRecoverableNativeHarnessBindingFailure(result);

450+

isUnsupportedNativeHarnessCompaction(result) || recoverableBindingFailure;

425451

log.warn(

426-

`CLI native harness compaction did not reduce context for ${params.provider}/${params.model}: ${result?.reason ?? "nothing to compact"}`,

452+

`CLI native harness compaction did not reduce context for ${params.provider}/${params.model}: ${reason}`,

427453

);

428454

return {

429455

compacted: false,

430456

fallbackToContextEngine,

457+

clearCliSessionBinding: recoverableBindingFailure,

431458

failureReason: result?.reason ?? "native harness compaction did not reduce context",

432459

};

433460

}

@@ -496,6 +523,7 @@ export async function runCliTurnCompactionLifecycle(params: {

496523

let nativeCompactionResult: EmbeddedAgentCompactResult | undefined;

497524

let useContextEngineCompaction = true;

498525

let nativeFallbackToContextEngine = false;

526+

let nativeFallbackNeedsBindingClear = false;

499527

let resolvedContextEngine: ContextEngine | undefined;

500528

let autoCompactionGuardApplied = false;

501529

const applyAutoCompactionGuard = async (contextEngine: ContextEngine): Promise<void> => {

@@ -539,14 +567,17 @@ export async function runCliTurnCompactionLifecycle(params: {

539567

compacted = true;

540568

nativeCompactionResult = nativeOutcome.result;

541569

useContextEngineCompaction = false;

542-

} else if (!nativeOutcome.fallbackToContextEngine) {

570+

} else if (nativeOutcome.fallbackToContextEngine) {

571+

nativeFallbackToContextEngine = true;

572+

nativeFallbackNeedsBindingClear = nativeOutcome.clearCliSessionBinding === true;

573+

} else if (nativeOutcome.failureReason) {

543574

throw new Error(

544575

`CLI native harness compaction failed for ${params.provider}/${params.model}: ${

545576

nativeOutcome.failureReason ?? "compaction did not reduce context"

546577

}`,

547578

);

548579

} else {

549-

nativeFallbackToContextEngine = true;

580+

useContextEngineCompaction = false;

550581

}

551582

}

552583

@@ -581,7 +612,7 @@ export async function runCliTurnCompactionLifecycle(params: {

581612

bestEffortMaintenance: nativeFallbackToContextEngine,

582613

});

583614

compacted = contextOutcome.compacted;

584-

if (!compacted) {

615+

if (!compacted && contextOutcome.failureReason) {

585616

throw new Error(

586617

`CLI transcript compaction failed for ${params.provider}/${params.model}: ${

587618

contextOutcome.failureReason ?? "compaction did not reduce context"

@@ -590,6 +621,17 @@ export async function runCliTurnCompactionLifecycle(params: {

590621

}

591622

}

592623624+

if (nativeFallbackNeedsBindingClear && !compacted && params.sessionStore && params.storePath) {

625+

return (

626+

(await cliCompactionDeps.clearCliSessionInStore({

627+

provider: params.provider,

628+

sessionKey: params.sessionKey,

629+

sessionStore: params.sessionStore,

630+

storePath: params.storePath,

631+

})) ?? params.sessionEntry

632+

);

633+

}

634+593635

if (!compacted || !params.sessionStore || !params.storePath) {

594636

return params.sessionEntry;

595637

}