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

推荐订阅源

有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
D
Docker
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
博客园 - Franky
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
V
V2EX

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(sessions): validate replayed transcript rows · opencl...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -9,6 +9,25 @@ import {

991010

const j = (obj: unknown): string => `${JSON.stringify(obj)}\n`;

111112+

function messageEntry(params: {

13+

id: string;

14+

role: "user" | "assistant";

15+

content: string;

16+

parentId?: string | null;

17+

timestamp?: string | number;

18+

}): string {

19+

return j({

20+

type: "message",

21+

id: params.id,

22+

parentId: params.parentId ?? null,

23+

timestamp: params.timestamp ?? "2026-05-16T00:00:00.000Z",

24+

message: {

25+

role: params.role,

26+

content: params.content,

27+

},

28+

});

29+

}

30+1231

type ReplayRecord = {

1332

type?: string;

1433

id?: string;

@@ -66,9 +85,16 @@ describe("replayRecentUserAssistantMessages", () => {

6685

const target = path.join(root, "next.jsonl");

6786

const lines: string[] = [j({ type: "session", id: "old" })];

6887

for (let i = 0; i < DEFAULT_REPLAY_MAX_MESSAGES + 4; i += 1) {

69-

lines.push(j({ message: { role: i % 2 === 0 ? "user" : "assistant", content: `m${i}` } }));

88+

lines.push(

89+

messageEntry({

90+

id: `entry-${i}`,

91+

role: i % 2 === 0 ? "user" : "assistant",

92+

content: `m${i}`,

93+

parentId: i > 0 ? `entry-${i - 1}` : null,

94+

}),

95+

);

7096

}

71-

lines.push(j({ message: { role: "tool" } }));

97+

lines.push(j({ type: "message", id: "tool", message: { role: "tool" } }));

7298

lines.push(j({ type: "compaction", timestamp: new Date().toISOString() }));

7399

lines.push("not-json-line\n");

74100

await fs.writeFile(source, lines.join(""), "utf8");

@@ -98,8 +124,13 @@ describe("replayRecentUserAssistantMessages", () => {

9812499125

const assistantSource = path.join(root, "all-assistant.jsonl");

100126

const assistantTarget = path.join(root, "all-assistant-out.jsonl");

101-

const onlyAssistants = Array.from({ length: 3 }, () =>

102-

j({ message: { role: "assistant", content: "x" } }),

127+

const onlyAssistants = Array.from({ length: 3 }, (_, index) =>

128+

messageEntry({

129+

id: `assistant-${index}`,

130+

role: "assistant",

131+

content: "x",

132+

parentId: index > 0 ? `assistant-${index - 1}` : null,

133+

}),

103134

).join("");

104135

await fs.writeFile(assistantSource, onlyAssistants, "utf8");

105136

expect(await call(assistantSource, assistantTarget)).toBe(0);

@@ -112,7 +143,14 @@ describe("replayRecentUserAssistantMessages", () => {

112143

await fs.writeFile(target, j({ type: "session", id: "existing" }), "utf8");

113144

const lines: string[] = [];

114145

for (let i = 0; i < DEFAULT_REPLAY_MAX_MESSAGES + 1; i += 1) {

115-

lines.push(j({ message: { role: i % 2 === 0 ? "user" : "assistant", content: `m${i}` } }));

146+

lines.push(

147+

messageEntry({

148+

id: `entry-${i}`,

149+

role: i % 2 === 0 ? "user" : "assistant",

150+

content: `m${i}`,

151+

parentId: i > 0 ? `entry-${i - 1}` : null,

152+

}),

153+

);

116154

}

117155

await fs.writeFile(source, lines.join(""), "utf8");

118156

@@ -129,12 +167,22 @@ describe("replayRecentUserAssistantMessages", () => {

129167

await fs.writeFile(

130168

source,

131169

[

132-

j({ message: { role: "user", content: "older user" } }),

133-

j({ message: { role: "user", content: "latest user" } }),

134-

j({ message: { role: "assistant", content: "older assistant" } }),

135-

j({ message: { role: "assistant", content: "latest assistant" } }),

136-

j({ message: { role: "user", content: "follow-up" } }),

137-

j({ message: { role: "assistant", content: "answer" } }),

170+

messageEntry({ id: "u1", role: "user", content: "older user" }),

171+

messageEntry({ id: "u2", role: "user", content: "latest user", parentId: "u1" }),

172+

messageEntry({

173+

id: "a1",

174+

role: "assistant",

175+

content: "older assistant",

176+

parentId: "u2",

177+

}),

178+

messageEntry({

179+

id: "a2",

180+

role: "assistant",

181+

content: "latest assistant",

182+

parentId: "a1",

183+

}),

184+

messageEntry({ id: "u3", role: "user", content: "follow-up", parentId: "a2" }),

185+

messageEntry({ id: "a3", role: "assistant", content: "answer", parentId: "u3" }),

138186

].join(""),

139187

"utf8",

140188

);

@@ -154,4 +202,44 @@ describe("replayRecentUserAssistantMessages", () => {

154202

"answer",

155203

]);

156204

});

205+206+

it("skips malformed user and assistant-shaped rows without poisoning the target", async () => {

207+

const source = path.join(root, "prev.jsonl");

208+

const target = path.join(root, "next.jsonl");

209+

await fs.writeFile(

210+

source,

211+

[

212+

messageEntry({ id: "valid-user", role: "user", content: "keep user" }),

213+

j({ message: { role: "assistant", content: "missing type and id" } }),

214+

j({

215+

type: "message",

216+

id: "missing-timestamp",

217+

message: { role: "user", content: "missing timestamp" },

218+

}),

219+

j({

220+

type: "message",

221+

id: "bad-parent",

222+

parentId: 123,

223+

timestamp: "2026-05-16T00:00:01.000Z",

224+

message: { role: "assistant", content: "bad parent" },

225+

}),

226+

messageEntry({

227+

id: "valid-assistant",

228+

role: "assistant",

229+

content: "keep assistant",

230+

parentId: "valid-user",

231+

timestamp: "2026-05-16T00:00:02.000Z",

232+

}),

233+

].join(""),

234+

"utf8",

235+

);

236+237+

expect(await call(source, target)).toBe(2);

238+

const records = await readJsonlRecords(target);

239+

expect(records.slice(1).map((record) => record.message?.content)).toEqual([

240+

"keep user",

241+

"keep assistant",

242+

]);

243+

expect(records.slice(1).every((record) => record.type === "message")).toBe(true);

244+

});

157245

});