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

推荐订阅源

GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
小众软件
小众软件
美团技术团队
博客园 - 司徒正美
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
J
Java Code Geeks
Last Week in AI
Last Week in AI
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
V
V2EX
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale 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
refactor: add embedded run session target seam (#90439) ·...
jalehman · 2026-06-24 · via Recent Commits to openclaw:main

@@ -8,9 +8,7 @@ import type { ThinkLevel } from "../../auto-reply/thinking.js";

88

import { resolveAgentModelFallbackValues } from "../../config/model-input.js";

99

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

1010

import {

11-

captureCompactionCheckpointSnapshotAsync,

12-

cleanupCompactionCheckpointSnapshot,

13-

persistSessionCompactionCheckpoint,

11+

createFileBackedCompactionCheckpointStore,

1412

readSessionLeafStateFromTranscriptAsync,

1513

resolveCompactionCheckpointTranscriptPosition,

1614

resolveSessionCompactionCheckpointReason,

@@ -107,6 +105,10 @@ import { wrapStreamFnTextTransforms } from "../plugin-text-transforms.js";

107105

import { resolveAgentPromptSurfaceForSessionKey } from "../prompt-surface.js";

108106

import { applyPreparedRuntimeAuthToModel } from "../provider-request-config.js";

109107

import { registerProviderStreamForModel } from "../provider-stream.js";

108+

import {

109+

applyAgentRunSessionTargetIdentity,

110+

resolveAgentRunSessionTarget,

111+

} from "../run-session-target.js";

110112

import { collectRuntimeChannelCapabilities } from "../runtime-capabilities.js";

111113

import { buildAgentRuntimePlan } from "../runtime-plan/build.js";

112114

import type { AgentRuntimePlan } from "../runtime-plan/types.js";

@@ -135,6 +137,7 @@ import {

135137

} from "./compact-reasons.js";

136138

import type {

137139

CompactEmbeddedAgentSessionParams,

140+

CompactEmbeddedAgentSessionRuntimeParams,

138141

CompactionMessageMetrics,

139142

} from "./compact.types.js";

140143

import { dedupeDuplicateUserMessagesForCompaction } from "./compaction-duplicate-user-messages.js";

@@ -192,6 +195,11 @@ import { mapThinkingLevel, normalizeContextTokenBudget } from "./utils.js";

192195

import { flushPendingToolResultsAfterIdle } from "./wait-for-idle-before-flush.js";

193196

export type { CompactEmbeddedAgentSessionParams } from "./compact.types.js";

194197198+

const compactionCheckpointStore = createFileBackedCompactionCheckpointStore();

199+

type CompactEmbeddedAgentSessionParamsWithSessionFile = CompactEmbeddedAgentSessionRuntimeParams & {

200+

sessionFile: string;

201+

};

202+195203

function hasRealConversationContent(

196204

msg: AgentMessage,

197205

messages: AgentMessage[],

@@ -464,8 +472,17 @@ function fallbackFailureToCompactionResult(err: unknown): EmbeddedAgentCompactRe

464472

* Use this when already inside a session/global lane to avoid deadlocks.

465473

*/

466474

export async function compactEmbeddedAgentSessionDirect(

467-

params: CompactEmbeddedAgentSessionParams,

475+

paramsInput: CompactEmbeddedAgentSessionRuntimeParams,

468476

): Promise<EmbeddedAgentCompactResult> {

477+

const paramsBase = applyAgentRunSessionTargetIdentity(paramsInput);

478+

const runSessionTarget = await resolveAgentRunSessionTarget(paramsBase);

479+

const params: CompactEmbeddedAgentSessionParamsWithSessionFile = {

480+

...paramsBase,

481+

agentId: paramsBase.agentId ?? runSessionTarget.agentId,

482+

sessionId: runSessionTarget.sessionId,

483+

sessionKey: paramsBase.sessionKey ?? runSessionTarget.sessionKey,

484+

sessionFile: runSessionTarget.sessionFile,

485+

};

469486

if (hasExplicitCompactionModel(params) || !hasCompactionModelFallbackCandidates(params)) {

470487

return await compactEmbeddedAgentSessionDirectOnce(params);

471488

}

@@ -530,7 +547,7 @@ export async function compactEmbeddedAgentSessionDirect(

530547

}

531548532549

async function compactEmbeddedAgentSessionDirectOnce(

533-

params: CompactEmbeddedAgentSessionParams,

550+

params: CompactEmbeddedAgentSessionParamsWithSessionFile,

534551

): Promise<EmbeddedAgentCompactResult> {

535552

const startedAt = Date.now();

536553

const diagId = params.diagId?.trim() || createCompactionDiagId();

@@ -1190,7 +1207,7 @@ async function compactEmbeddedAgentSessionDirectOnce(

11901207

: undefined,

11911208

allowedToolNames,

11921209

});

1193-

checkpointSnapshot = await captureCompactionCheckpointSnapshotAsync({

1210+

checkpointSnapshot = await compactionCheckpointStore.captureSnapshot({

11941211

sessionManager,

11951212

sessionFile: params.sessionFile,

11961213

});

@@ -1546,7 +1563,7 @@ async function compactEmbeddedAgentSessionDirectOnce(

15461563

preferredLeafId: activePostLeafId,

15471564

transcriptState,

15481565

});

1549-

const storedCheckpoint = await persistSessionCompactionCheckpoint({

1566+

const storedCheckpoint = await compactionCheckpointStore.persistCheckpoint({

15501567

cfg: params.config,

15511568

sessionKey: params.sessionKey,

15521569

sessionId: activeSessionId,

@@ -1670,7 +1687,7 @@ async function compactEmbeddedAgentSessionDirectOnce(

16701687

return fail(reason, err);

16711688

} finally {

16721689

if (!checkpointSnapshotRetained) {

1673-

await cleanupCompactionCheckpointSnapshot(checkpointSnapshot);

1690+

await compactionCheckpointStore.cleanupSnapshot(checkpointSnapshot);

16741691

}

16751692

restoreSkillEnv?.();

16761693

}