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

推荐订阅源

雷峰网
雷峰网
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园_首页
J
Java Code Geeks
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
B
Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

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: cache serialized session prompt refs · openclaw/ope...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -28,9 +28,11 @@ import {

2828

dropSessionStoreObjectCache,

2929

dropSessionStoreSnapshotCache,

3030

getSerializedSessionStore,

31+

getSerializedSessionStorePromptRefs,

3132

getSessionStoreCacheVersion,

3233

invalidateSessionStoreCache,

3334

isSessionStoreCacheEnabled,

35+

setSerializedSessionStorePromptRefs,

3436

setSerializedSessionStore,

3537

takeMutableSessionStoreCache,

3638

writeSessionStoreCache,

@@ -234,11 +236,17 @@ function updateSessionStoreWriteCaches(params: {

234236

storePath: string;

235237

store: Record<string, SessionEntry>;

236238

serialized: string;

239+

serializedPromptRefs?: ReadonlyMap<string, SessionSkillPromptRef>;

237240

cloneSerialized?: string;

238241

takeOwnership?: boolean;

239242

}): void {

240243

const fileStat = getFileStatSnapshot(params.storePath);

241-

setSerializedSessionStore(params.storePath, params.serialized, fileStat?.sizeBytes);

244+

setSerializedSessionStore(

245+

params.storePath,

246+

params.serialized,

247+

fileStat?.sizeBytes,

248+

params.serializedPromptRefs,

249+

);

242250

if (!isSessionStoreCacheEnabled()) {

243251

dropSessionStoreObjectCache(params.storePath);

244252

dropSessionStoreSnapshotCache(params.storePath);

@@ -250,6 +258,7 @@ function updateSessionStoreWriteCaches(params: {

250258

mtimeMs: fileStat?.mtimeMs,

251259

sizeBytes: fileStat?.sizeBytes,

252260

serialized: params.serialized,

261+

serializedPromptRefs: params.serializedPromptRefs,

253262

cloneSerialized: params.cloneSerialized,

254263

takeOwnership: params.takeOwnership,

255264

});

@@ -273,18 +282,26 @@ function restoreUnchangedSessionStoreCache(

273282

return;

274283

}

275284

const serialized = getSerializedSessionStore(storePath);

285+

const serializedPromptRefs =

286+

serialized !== undefined ? getSerializedSessionStorePromptRefs(storePath) : undefined;

276287

writeSessionStoreCache({

277288

storePath,

278289

store,

279290

mtimeMs: loadedFileStat?.mtimeMs,

280291

sizeBytes: loadedFileStat?.sizeBytes,

281292

serialized,

293+

serializedPromptRefs,

282294

takeOwnership: true,

283295

});

284296

if (serialized !== undefined) {

285297

// Keep hydrated blob prompts in the object cache, but preserve the disk JSON

286298

// comparison string so repeated no-op saves do not rewrite sessions.json.

287-

setSerializedSessionStore(storePath, serialized, loadedFileStat?.sizeBytes);

299+

setSerializedSessionStore(

300+

storePath,

301+

serialized,

302+

loadedFileStat?.sizeBytes,

303+

serializedPromptRefs,

304+

);

288305

}

289306

}

290307

@@ -333,11 +350,16 @@ function indentTopLevelEntryJson(json: string): string {

333350

function buildSingleEntrySerializedStore(params: {

334351

storePath: string;

335352

patch: SingleEntryPersistencePatch;

336-

}): { serialized: string; promptBlobs: SessionSkillPromptBlobProjection[] } | null {

353+

}): {

354+

serialized: string;

355+

promptBlobs: SessionSkillPromptBlobProjection[];

356+

promptRefs: ReadonlyMap<string, SessionSkillPromptRef>;

357+

} | null {

337358

const currentSerialized = getSerializedSessionStore(params.storePath);

338359

if (currentSerialized === undefined) {

339360

return null;

340361

}

362+

const currentPromptRefs = getSerializedPromptRefs(params.storePath, currentSerialized);

341363

const marker = `\n ${JSON.stringify(params.patch.sessionKey)}: `;

342364

const markerIndex = currentSerialized.indexOf(marker);

343365

if (markerIndex < 0) {

@@ -360,10 +382,18 @@ function buildSingleEntrySerializedStore(params: {

360382

return null;

361383

}

362384

const entryJson = indentTopLevelEntryJson(JSON.stringify(projectedEntry, null, 2));

385+

const promptRefs = new Map(currentPromptRefs);

386+

const promptRef = projectedEntry.skillsSnapshot?.promptRef;

387+

if (promptRef) {

388+

promptRefs.set(params.patch.sessionKey, promptRef);

389+

} else {

390+

promptRefs.delete(params.patch.sessionKey);

391+

}

363392

return {

364393

serialized:

365394

currentSerialized.slice(0, valueStart) + entryJson + currentSerialized.slice(valueEnd),

366395

promptBlobs: [...projected.promptBlobs.values()],

396+

promptRefs,

367397

};

368398

}

369399

@@ -383,15 +413,42 @@ function collectSerializedPromptRefs(serialized: string): Map<string, SessionSki

383413

return refs;

384414

}

385415416+

function collectStorePromptRefs(

417+

store: Record<string, SessionEntry>,

418+

): Map<string, SessionSkillPromptRef> {

419+

const refs = new Map<string, SessionSkillPromptRef>();

420+

for (const [key, entry] of Object.entries(store)) {

421+

const ref = entry?.skillsSnapshot?.promptRef;

422+

if (ref) {

423+

refs.set(key, ref);

424+

}

425+

}

426+

return refs;

427+

}

428+429+

function getSerializedPromptRefs(

430+

storePath: string,

431+

serialized: string,

432+

): ReadonlyMap<string, SessionSkillPromptRef> {

433+

const cached = getSerializedSessionStorePromptRefs(storePath);

434+

if (cached) {

435+

return cached;

436+

}

437+

const refs = collectSerializedPromptRefs(serialized);

438+

setSerializedSessionStorePromptRefs(storePath, refs);

439+

return refs;

440+

}

441+386442

function storeHasUnsafeUntouchedHydratedSkillPrompts(

387443

storePath: string,

388444

store: Record<string, SessionEntry>,

389445

changedSessionKey: string,

390446

): boolean {

391447

const currentSerialized = getSerializedSessionStore(storePath);

392-

const serializedPromptRefs = currentSerialized

393-

? collectSerializedPromptRefs(currentSerialized)

394-

: undefined;

448+

const serializedPromptRefs =

449+

currentSerialized !== undefined

450+

? getSerializedPromptRefs(storePath, currentSerialized)

451+

: undefined;

395452

for (const [key, entry] of Object.entries(store)) {

396453

if (key === changedSessionKey || typeof entry.skillsSnapshot?.prompt !== "string") {

397454

continue;

@@ -684,6 +741,7 @@ async function saveSessionStoreUnlocked(

684741

storePath,

685742

store,

686743

serialized: singleEntrySerialized.serialized,

744+

serializedPromptRefs: singleEntrySerialized.promptRefs,

687745

promptBlobs: singleEntrySerialized.promptBlobs,

688746

takeOwnership: opts?.takeCacheOwnership,

689747

});

@@ -692,6 +750,7 @@ async function saveSessionStoreUnlocked(

692750

}

693751

const persisted = projectSessionStoreForPersistence({ storePath, store });

694752

const promptBlobs = [...persisted.promptBlobs.values()];

753+

const promptRefs = collectStorePromptRefs(persisted.store);

695754

const json = JSON.stringify(persisted.store, null, 2);

696755

const cloneSerialized = persisted.changed ? undefined : json;

697756

if (getSerializedSessionStore(storePath) === json) {

@@ -703,6 +762,7 @@ async function saveSessionStoreUnlocked(

703762

storePath,

704763

store,

705764

serialized: json,

765+

serializedPromptRefs: promptRefs,

706766

cloneSerialized,

707767

takeOwnership: opts?.takeCacheOwnership,

708768

});

@@ -717,6 +777,7 @@ async function saveSessionStoreUnlocked(

717777

storePath,

718778

store,

719779

serialized: json,

780+

serializedPromptRefs: promptRefs,

720781

cloneSerialized,

721782

promptBlobs,

722783

takeOwnership: opts?.takeCacheOwnership,

@@ -744,6 +805,7 @@ async function saveSessionStoreUnlocked(

744805

storePath,

745806

store,

746807

serialized: json,

808+

serializedPromptRefs: promptRefs,

747809

cloneSerialized,

748810

promptBlobs,

749811

takeOwnership: opts?.takeCacheOwnership,

@@ -759,6 +821,7 @@ async function saveSessionStoreUnlocked(

759821

storePath,

760822

store,

761823

serialized: json,

824+

serializedPromptRefs: promptRefs,

762825

cloneSerialized,

763826

promptBlobs,

764827

takeOwnership: opts?.takeCacheOwnership,

@@ -882,6 +945,7 @@ async function writeSessionStoreAtomic(params: {

882945

storePath: string;

883946

store: Record<string, SessionEntry>;

884947

serialized: string;

948+

serializedPromptRefs?: ReadonlyMap<string, SessionSkillPromptRef>;

885949

cloneSerialized?: string;

886950

promptBlobs: Iterable<SessionSkillPromptBlobProjection>;

887951

takeOwnership?: boolean;

@@ -904,6 +968,7 @@ async function writeSessionStoreAtomic(params: {

904968

storePath: params.storePath,

905969

store: params.store,

906970

serialized: params.serialized,

971+

serializedPromptRefs: params.serializedPromptRefs,

907972

cloneSerialized: params.cloneSerialized,

908973

takeOwnership: params.takeOwnership,

909974

});