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

推荐订阅源

雷峰网
雷峰网
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
I
InfoQ
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
量子位
The GitHub Blog
The GitHub 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
perf: avoid session manager opens for transcript maintena...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,10 +1,11 @@

1-

import fs from "node:fs/promises";

21

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

3-

import { SessionManager } from "@mariozechner/pi-coding-agent";

2+

import type { SessionEntry } from "@mariozechner/pi-coding-agent";

3+

import {

4+

readTranscriptFileState,

5+

TranscriptFileState,

6+

writeTranscriptFileAtomic,

7+

} from "./transcript-file-state.js";

485-

type SessionManagerLike = ReturnType<typeof SessionManager.open>;

6-

type SessionEntry = ReturnType<SessionManagerLike["getEntries"]>[number];

7-

type SessionHeader = NonNullable<ReturnType<SessionManagerLike["getHeader"]>>;

89

type CompactionEntry = Extract<SessionEntry, { type: "compaction" }>;

9101011

export type HardenedManualCompactionBoundary = {

@@ -14,12 +15,6 @@ export type HardenedManualCompactionBoundary = {

1415

messages: AgentMessage[];

1516

};

161717-

function serializeSessionFile(header: SessionHeader, entries: SessionEntry[]): string {

18-

return (

19-

[JSON.stringify(header), ...entries.map((entry) => JSON.stringify(entry))].join("\n") + "\n"

20-

);

21-

}

22-2318

function replaceLatestCompactionBoundary(params: {

2419

entries: SessionEntry[];

2520

compactionEntryId: string;

@@ -42,76 +37,60 @@ export async function hardenManualCompactionBoundary(params: {

4237

sessionFile: string;

4338

preserveRecentTail?: boolean;

4439

}): Promise<HardenedManualCompactionBoundary> {

45-

const sessionManager = SessionManager.open(params.sessionFile) as Partial<SessionManagerLike>;

46-

if (

47-

typeof sessionManager.getHeader !== "function" ||

48-

typeof sessionManager.getLeafEntry !== "function" ||

49-

typeof sessionManager.buildSessionContext !== "function" ||

50-

typeof sessionManager.getEntries !== "function"

51-

) {

40+

const state = await readTranscriptFileState(params.sessionFile);

41+

const header = state.getHeader();

42+

if (!header) {

5243

return {

5344

applied: false,

5445

messages: [],

5546

};

5647

}

574858-

const header = sessionManager.getHeader();

59-

const leaf = sessionManager.getLeafEntry();

60-

if (!header || leaf?.type !== "compaction") {

61-

const sessionContext = sessionManager.buildSessionContext();

49+

const leaf = state.getLeafEntry();

50+

if (leaf?.type !== "compaction") {

51+

const sessionContext = state.buildSessionContext();

6252

return {

6353

applied: false,

64-

leafId:

65-

typeof sessionManager.getLeafId === "function"

66-

? (sessionManager.getLeafId() ?? undefined)

67-

: undefined,

54+

leafId: state.getLeafId() ?? undefined,

6855

messages: sessionContext.messages,

6956

};

7057

}

71587259

if (params.preserveRecentTail) {

73-

const sessionContext = sessionManager.buildSessionContext();

60+

const sessionContext = state.buildSessionContext();

7461

return {

7562

applied: false,

7663

firstKeptEntryId: leaf.firstKeptEntryId,

77-

leafId:

78-

typeof sessionManager.getLeafId === "function"

79-

? (sessionManager.getLeafId() ?? undefined)

80-

: undefined,

64+

leafId: state.getLeafId() ?? undefined,

8165

messages: sessionContext.messages,

8266

};

8367

}

84688569

if (leaf.firstKeptEntryId === leaf.id) {

86-

const sessionContext = sessionManager.buildSessionContext();

70+

const sessionContext = state.buildSessionContext();

8771

return {

8872

applied: false,

8973

firstKeptEntryId: leaf.id,

90-

leafId:

91-

typeof sessionManager.getLeafId === "function"

92-

? (sessionManager.getLeafId() ?? undefined)

93-

: undefined,

74+

leafId: state.getLeafId() ?? undefined,

9475

messages: sessionContext.messages,

9576

};

9677

}

977898-

const content = serializeSessionFile(

79+

const replacedEntries = replaceLatestCompactionBoundary({

80+

entries: state.getEntries(),

81+

compactionEntryId: leaf.id,

82+

});

83+

const replacedState = new TranscriptFileState({

9984

header,

100-

replaceLatestCompactionBoundary({

101-

entries: sessionManager.getEntries(),

102-

compactionEntryId: leaf.id,

103-

}),

104-

);

105-

const tmpFile = `${params.sessionFile}.manual-compaction-tmp`;

106-

await fs.writeFile(tmpFile, content, "utf-8");

107-

await fs.rename(tmpFile, params.sessionFile);

85+

entries: replacedEntries,

86+

});

87+

await writeTranscriptFileAtomic(params.sessionFile, [header, ...replacedEntries]);

10888109-

const refreshed = SessionManager.open(params.sessionFile);

110-

const sessionContext = refreshed.buildSessionContext();

89+

const sessionContext = replacedState.buildSessionContext();

11190

return {

11291

applied: true,

11392

firstKeptEntryId: leaf.id,

114-

leafId: refreshed.getLeafId() ?? undefined,

93+

leafId: replacedState.getLeafId() ?? undefined,

11594

messages: sessionContext.messages,

11695

};

11796

}