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

推荐订阅源

Y
Y Combinator Blog
博客园_首页
雷峰网
雷峰网
V
V2EX
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
小众软件
小众软件
博客园 - 叶小钗
美团技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
MyScale Blog
MyScale Blog
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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(gateway): preserve oversized transcript tree leaves ·...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -267,22 +267,57 @@ async function readRecentTranscriptTailLinesAsync(

267267

}

268268269269

const MAX_TRANSCRIPT_PARSE_LINE_BYTES = 256 * 1024;

270+

const OVERSIZED_TRANSCRIPT_METADATA_PREFIX_CHARS = 64 * 1024;

270271

const TRANSCRIPT_OVERSIZED_MESSAGE_PLACEHOLDER = "[chat.history omitted: message too large]";

271272272273

function isOversizedTranscriptLine(line: string): boolean {

273274

return Buffer.byteLength(line, "utf8") > MAX_TRANSCRIPT_PARSE_LINE_BYTES;

274275

}

275276276-

function buildOversizedTranscriptRecord(): TailTranscriptRecord {

277-

return {

278-

record: {

279-

message: {

280-

role: "assistant",

281-

content: [{ type: "text", text: TRANSCRIPT_OVERSIZED_MESSAGE_PLACEHOLDER }],

282-

__openclaw: { truncated: true, reason: "oversized" },

283-

},

277+

function extractJsonStringFieldPrefix(prefix: string, field: string): string | undefined {

278+

const match = new RegExp(`"${field}"\\s*:\\s*"((?:\\\\.|[^"\\\\])*)"`).exec(prefix);

279+

if (!match) {

280+

return undefined;

281+

}

282+

try {

283+

const decoded = JSON.parse(`"${match[1]}"`) as unknown;

284+

return normalizeTailEntryString(decoded);

285+

} catch {

286+

return undefined;

287+

}

288+

}

289+290+

function extractJsonNullableStringFieldPrefix(

291+

prefix: string,

292+

field: string,

293+

): string | null | undefined {

294+

if (new RegExp(`"${field}"\\s*:\\s*null`).test(prefix)) {

295+

return null;

296+

}

297+

return extractJsonStringFieldPrefix(prefix, field);

298+

}

299+300+

function buildOversizedTranscriptRecord(line: string): TailTranscriptRecord {

301+

const prefix = line.slice(0, OVERSIZED_TRANSCRIPT_METADATA_PREFIX_CHARS);

302+

const id = extractJsonStringFieldPrefix(prefix, "id");

303+

const parentId = extractJsonNullableStringFieldPrefix(prefix, "parentId");

304+

const type = extractJsonStringFieldPrefix(prefix, "type");

305+

const role = extractJsonStringFieldPrefix(prefix, "role") ?? "assistant";

306+

const record: Record<string, unknown> = {

307+

...(type ? { type } : {}),

308+

...(id ? { id } : {}),

309+

...(parentId !== undefined ? { parentId } : {}),

310+

message: {

311+

role,

312+

content: [{ type: "text", text: TRANSCRIPT_OVERSIZED_MESSAGE_PLACEHOLDER }],

313+

__openclaw: { truncated: true, reason: "oversized" },

284314

},

285315

};

316+

return {

317+

...(id ? { id } : {}),

318+

...(parentId !== undefined ? { parentId } : {}),

319+

record,

320+

};

286321

}

287322288323

function normalizeTailEntryString(value: unknown): string | undefined {

@@ -291,7 +326,7 @@ function normalizeTailEntryString(value: unknown): string | undefined {

291326292327

function parseTailTranscriptRecord(line: string): TailTranscriptRecord | null {

293328

if (isOversizedTranscriptLine(line)) {

294-

return buildOversizedTranscriptRecord();

329+

return buildOversizedTranscriptRecord(line);

295330

}

296331

try {

297332

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