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

推荐订阅源

V
Visual Studio Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园 - Franky
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
小众软件
小众软件
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
C
Check Point Blog
WordPress大学
WordPress大学
博客园 - 【当耐特】
博客园 - 司徒正美
D
Docker

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(export): report malformed transcript rows (#82553) · ...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -3,7 +3,7 @@ import path from "node:path";

33

import { fileURLToPath } from "node:url";

44

import {

55

migrateSessionEntries,

6-

parseSessionEntries,

6+

type FileEntry as PiSessionFileEntry,

77

type SessionEntry as PiSessionEntry,

88

type SessionHeader,

99

} from "@earendil-works/pi-coding-agent";

@@ -28,6 +28,17 @@ interface SessionData {

2828

tools?: Array<{ name: string; description?: string; parameters?: unknown }>;

2929

}

303031+

type SessionExportJsonlWarning = {

32+

code: "invalid-session-json" | "invalid-session-row";

33+

row: number;

34+

};

35+36+

type SessionExportWarningSummary = {

37+

code: SessionExportJsonlWarning["code"];

38+

count: number;

39+

rows: number[];

40+

};

41+3142

async function loadTemplate(fileName: string): Promise<string> {

3243

return await fsp.readFile(path.join(EXPORT_HTML_DIR, fileName), "utf-8");

3344

}

@@ -144,20 +155,104 @@ async function writeNewDefaultExportFile(filePath: string, html: string): Promis

144155

}

145156

throw new Error(`Could not find an unused export filename near ${filePath}`);

146157

}

158+159+

function isRecord(value: unknown): value is Record<string, unknown> {

160+

return Boolean(value) && typeof value === "object" && !Array.isArray(value);

161+

}

162+163+

function isSessionFileEntry(value: unknown): value is PiSessionFileEntry {

164+

if (!isRecord(value) || typeof value.type !== "string") {

165+

return false;

166+

}

167+

if (value.type !== "message") {

168+

return true;

169+

}

170+

const message = value.message;

171+

return isRecord(message) && typeof message.role === "string";

172+

}

173+174+

function parseSessionEntriesWithWarnings(content: string): {

175+

entries: PiSessionFileEntry[];

176+

warnings: SessionExportJsonlWarning[];

177+

} {

178+

const entries: PiSessionFileEntry[] = [];

179+

const warnings: SessionExportJsonlWarning[] = [];

180+

const rows = content.split(/\r?\n/u);

181+

for (const [index, rawLine] of rows.entries()) {

182+

const line = rawLine.trim();

183+

if (!line) {

184+

continue;

185+

}

186+

try {

187+

const parsed = JSON.parse(line) as unknown;

188+

if (!isSessionFileEntry(parsed)) {

189+

warnings.push({ code: "invalid-session-row", row: index + 1 });

190+

continue;

191+

}

192+

entries.push(parsed);

193+

} catch {

194+

warnings.push({ code: "invalid-session-json", row: index + 1 });

195+

}

196+

}

197+

return { entries, warnings };

198+

}

199+200+

function summarizeSessionExportWarnings(

201+

warnings: SessionExportJsonlWarning[],

202+

): SessionExportWarningSummary[] {

203+

const summaries = new Map<SessionExportJsonlWarning["code"], SessionExportWarningSummary>();

204+

for (const warning of warnings) {

205+

const summary = summaries.get(warning.code);

206+

if (summary) {

207+

summary.count += 1;

208+

if (summary.rows.length < 20) {

209+

summary.rows.push(warning.row);

210+

}

211+

continue;

212+

}

213+

summaries.set(warning.code, {

214+

code: warning.code,

215+

count: 1,

216+

rows: [warning.row],

217+

});

218+

}

219+

return [...summaries.values()];

220+

}

221+222+

function formatSkippedRows(count: number): string {

223+

return `${count.toLocaleString()} malformed transcript ${count === 1 ? "row" : "rows"}`;

224+

}

225+226+

function formatSessionExportWarning(summary: SessionExportWarningSummary): string {

227+

const rows = summary.rows.length > 0 ? ` rows ${summary.rows.join(", ")}` : "";

228+

const verb = summary.count === 1 ? "was" : "were";

229+

switch (summary.code) {

230+

case "invalid-session-json":

231+

return `⚠️ Skipped ${formatSkippedRows(summary.count)} that ${verb} not valid JSON.${rows}`;

232+

case "invalid-session-row":

233+

return summary.count === 1

234+

? `⚠️ Skipped ${formatSkippedRows(summary.count)} that was not a session entry.${rows}`

235+

: `⚠️ Skipped ${formatSkippedRows(summary.count)} that were not session entries.${rows}`;

236+

}

237+

const unreachable: never = summary.code;

238+

return unreachable;

239+

}

240+147241

async function readSessionDataFromTranscript(sessionFile: string): Promise<{

148242

header: SessionHeader | null;

149243

entries: PiSessionEntry[];

150244

leafId: string | null;

245+

warnings: SessionExportWarningSummary[];

151246

}> {

152247

const raw = await fsp.readFile(sessionFile, "utf-8");

153-

const fileEntries = parseSessionEntries(raw);

248+

const { entries: fileEntries, warnings } = parseSessionEntriesWithWarnings(raw);

154249

migrateSessionEntries(fileEntries);

155250

const header =

156251

fileEntries.find((entry): entry is SessionHeader => entry.type === "session") ?? null;

157252

const entries = fileEntries.filter((entry): entry is PiSessionEntry => entry.type !== "session");

158253

const lastEntry = entries.at(-1);

159254

const leafId = typeof lastEntry?.id === "string" ? lastEntry.id : null;

160-

return { header, entries, leafId };

255+

return { header, entries, leafId, warnings: summarizeSessionExportWarnings(warnings) };

161256

}

162257163258

export async function buildExportSessionReply(params: HandleCommandsParams): Promise<ReplyPayload> {

@@ -179,7 +274,7 @@ export async function buildExportSessionReply(params: HandleCommandsParams): Pro

179274

}

180275181276

// 2. Load session entries

182-

const { entries, header, leafId } = await readSessionDataFromTranscript(sessionFile);

277+

const { entries, header, leafId, warnings } = await readSessionDataFromTranscript(sessionFile);

183278184279

// 3. Build full system prompt

185280

const { systemPrompt, tools } = await resolveCommandsSystemPromptBundle({

@@ -234,6 +329,7 @@ export async function buildExportSessionReply(params: HandleCommandsParams): Pro

234329

"",

235330

`📄 File: ${displayPath}`,

236331

`📊 Entries: ${entries.length}`,

332+

...warnings.map(formatSessionExportWarning),

237333

`🧠 System prompt: ${systemPrompt.length.toLocaleString()} chars`,

238334

`🔧 Tools: ${tools.length}`,

239335

].join("\n"),