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

推荐订阅源

Vercel News
Vercel News
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
G
Google Developers Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
J
Java Code Geeks
U
Unit 42
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
V
V2EX
T
Tailwind CSS 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
fix(memory): keep archive transcript visibility safe · op...
buyitsydney · 2026-05-03 · via Recent Commits to openclaw:main

@@ -2,7 +2,11 @@ import fsSync from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

44

import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";

5-

import { buildSessionEntry, listSessionFilesForAgent } from "./session-files.js";

5+

import {

6+

buildSessionEntry,

7+

listSessionFilesForAgent,

8+

sessionPathForFile,

9+

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

610711

let fixtureRoot: string;

812

let tmpDir: string;

@@ -61,6 +65,28 @@ describe("listSessionFilesForAgent", () => {

6165

});

6266

});

636768+

describe("sessionPathForFile", () => {

69+

it("includes the owning agent id when the transcript lives under an agent sessions dir", () => {

70+

const absPath = path.join(

71+

tmpDir,

72+

"agents",

73+

"main",

74+

"sessions",

75+

"deleted-session.jsonl.deleted.2026-02-16T22-27-33.000Z",

76+

);

77+78+

expect(sessionPathForFile(absPath)).toBe(

79+

"sessions/main/deleted-session.jsonl.deleted.2026-02-16T22-27-33.000Z",

80+

);

81+

});

82+83+

it("keeps the legacy basename-only path when the agent owner cannot be derived", () => {

84+

expect(sessionPathForFile(path.join(tmpDir, "loose-session.jsonl"))).toBe(

85+

"sessions/loose-session.jsonl",

86+

);

87+

});

88+

});

89+6490

describe("buildSessionEntry", () => {

6591

it("returns lineMap tracking original JSONL line numbers", async () => {

6692

// Simulate a real session JSONL file with metadata records interspersed

@@ -116,30 +142,92 @@ describe("buildSessionEntry", () => {

116142

expect(entry!.lineMap).toEqual([]);

117143

});

118144119-

it("skips deleted and checkpoint transcripts for dreaming ingestion", async () => {

145+

it("indexes usage-counted reset/deleted archives but still skips bak and checkpoint artifacts", async () => {

146+

const resetPath = path.join(tmpDir, "ordinary.jsonl.reset.2026-02-16T22-26-33.000Z");

120147

const deletedPath = path.join(tmpDir, "ordinary.jsonl.deleted.2026-02-16T22-27-33.000Z");

148+

const bakPath = path.join(tmpDir, "ordinary.jsonl.bak.2026-02-16T22-28-33.000Z");

121149

const checkpointPath = path.join(

122150

tmpDir,

123151

"ordinary.checkpoint.11111111-1111-4111-8111-111111111111.jsonl",

124152

);

125153

const content = JSON.stringify({

126154

type: "message",

127-

message: { role: "user", content: "This should never reach the dreaming corpus." },

155+

message: { role: "user", content: "Archived hello" },

128156

});

157+

fsSync.writeFileSync(resetPath, content);

129158

fsSync.writeFileSync(deletedPath, content);

159+

fsSync.writeFileSync(bakPath, content);

130160

fsSync.writeFileSync(checkpointPath, content);

131161162+

const resetEntry = await buildSessionEntry(resetPath);

132163

const deletedEntry = await buildSessionEntry(deletedPath);

164+

const bakEntry = await buildSessionEntry(bakPath);

133165

const checkpointEntry = await buildSessionEntry(checkpointPath);

134166135-

expect(deletedEntry).not.toBeNull();

136-

expect(deletedEntry?.content).toBe("");

137-

expect(deletedEntry?.lineMap).toEqual([]);

167+

// Usage-counted archives (reset, deleted) must surface real content so

168+

// post-reset memory_search can recover prior session history.

169+

expect(resetEntry?.content).toContain("User: Archived hello");

170+

expect(resetEntry?.lineMap).toEqual([1]);

171+

expect(deletedEntry?.content).toContain("User: Archived hello");

172+

expect(deletedEntry?.lineMap).toEqual([1]);

173+174+

// .bak and compaction checkpoints remain opaque pre-archive / snapshot

175+

// artifacts and stay empty so they do not get double-indexed.

176+

expect(bakEntry).not.toBeNull();

177+

expect(bakEntry?.content).toBe("");

178+

expect(bakEntry?.lineMap).toEqual([]);

138179

expect(checkpointEntry).not.toBeNull();

139180

expect(checkpointEntry?.content).toBe("");

140181

expect(checkpointEntry?.lineMap).toEqual([]);

141182

});

142183184+

it("keeps cron-run deleted archives opaque when the live session store entry is gone", async () => {

185+

const archivePath = path.join(tmpDir, "cron-run.jsonl.deleted.2026-02-16T22-27-33.000Z");

186+

const jsonlLines = [

187+

JSON.stringify({

188+

type: "message",

189+

message: {

190+

role: "user",

191+

content: "[cron:job-1 Codex Sessions Sync] Run internal sync.",

192+

},

193+

}),

194+

JSON.stringify({

195+

type: "message",

196+

message: { role: "assistant", content: "Internal cron output that must stay out." },

197+

}),

198+

];

199+

fsSync.writeFileSync(archivePath, jsonlLines.join("\n"));

200+201+

const entry = await buildSessionEntry(archivePath);

202+203+

expect(entry).not.toBeNull();

204+

expect(entry?.content).toBe("");

205+

expect(entry?.lineMap).toEqual([]);

206+

expect(entry?.generatedByCronRun).toBe(true);

207+

});

208+209+

it("keeps cron-run reset archives opaque when session metadata preserves the cron key", async () => {

210+

const archivePath = path.join(tmpDir, "cron-run.jsonl.reset.2026-02-16T22-26-33.000Z");

211+

const jsonlLines = [

212+

JSON.stringify({

213+

type: "session-meta",

214+

data: { sessionKey: "agent:main:cron:job-1:run:run-1" },

215+

}),

216+

JSON.stringify({

217+

type: "message",

218+

message: { role: "assistant", content: "Internal cron output that must stay out." },

219+

}),

220+

];

221+

fsSync.writeFileSync(archivePath, jsonlLines.join("\n"));

222+223+

const entry = await buildSessionEntry(archivePath);

224+225+

expect(entry).not.toBeNull();

226+

expect(entry?.content).toBe("");

227+

expect(entry?.lineMap).toEqual([]);

228+

expect(entry?.generatedByCronRun).toBe(true);

229+

});

230+143231

it("skips blank lines and invalid JSON without breaking lineMap", async () => {

144232

const jsonlLines = [

145233

"",