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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
The Cloudflare Blog
IT之家
IT之家
雷峰网
雷峰网
小众软件
小众软件
博客园 - 叶小钗
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 【当耐特】
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(agents): sanitize blank Bedrock user replay · opencla...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -6,6 +6,8 @@ type RepairReport = {

66

repaired: boolean;

77

droppedLines: number;

88

rewrittenAssistantMessages?: number;

9+

droppedBlankUserMessages?: number;

10+

rewrittenUserMessages?: number;

911

backupPath?: string;

1012

reason?: string;

1113

};

@@ -21,7 +23,7 @@ type RepairReport = {

21232224

type SessionMessageEntry = {

2325

type: "message";

24-

message: { role: "assistant"; content: unknown[] } & Record<string, unknown>;

26+

message: { role: string; content?: unknown } & Record<string, unknown>;

2527

} & Record<string, unknown>;

26282729

function isSessionHeader(entry: unknown): entry is { type: string; id: string } {

@@ -69,13 +71,71 @@ function rewriteAssistantEntryWithEmptyContent(entry: SessionMessageEntry): Sess

6971

};

7072

}

717372-

function buildRepairSummaryParts(droppedLines: number, rewrittenAssistantMessages: number): string {

74+

type UserEntryRepair =

75+

| { kind: "drop" }

76+

| { kind: "rewrite"; entry: SessionMessageEntry }

77+

| { kind: "keep" };

78+79+

function repairUserEntryWithBlankTextContent(entry: SessionMessageEntry): UserEntryRepair {

80+

const content = entry.message.content;

81+

if (typeof content === "string") {

82+

return content.trim() ? { kind: "keep" } : { kind: "drop" };

83+

}

84+

if (!Array.isArray(content)) {

85+

return { kind: "keep" };

86+

}

87+88+

let touched = false;

89+

const nextContent = content.filter((block) => {

90+

if (!block || typeof block !== "object") {

91+

return true;

92+

}

93+

if ((block as { type?: unknown }).type !== "text") {

94+

return true;

95+

}

96+

const text = (block as { text?: unknown }).text;

97+

if (typeof text !== "string" || text.trim().length > 0) {

98+

return true;

99+

}

100+

touched = true;

101+

return false;

102+

});

103+

if (nextContent.length === 0) {

104+

return { kind: "drop" };

105+

}

106+

if (!touched) {

107+

return { kind: "keep" };

108+

}

109+

return {

110+

kind: "rewrite",

111+

entry: {

112+

...entry,

113+

message: {

114+

...entry.message,

115+

content: nextContent,

116+

},

117+

},

118+

};

119+

}

120+121+

function buildRepairSummaryParts(params: {

122+

droppedLines: number;

123+

rewrittenAssistantMessages: number;

124+

droppedBlankUserMessages: number;

125+

rewrittenUserMessages: number;

126+

}): string {

73127

const parts: string[] = [];

74-

if (droppedLines > 0) {

75-

parts.push(`dropped ${droppedLines} malformed line(s)`);

128+

if (params.droppedLines > 0) {

129+

parts.push(`dropped ${params.droppedLines} malformed line(s)`);

76130

}

77-

if (rewrittenAssistantMessages > 0) {

78-

parts.push(`rewrote ${rewrittenAssistantMessages} assistant message(s)`);

131+

if (params.rewrittenAssistantMessages > 0) {

132+

parts.push(`rewrote ${params.rewrittenAssistantMessages} assistant message(s)`);

133+

}

134+

if (params.droppedBlankUserMessages > 0) {

135+

parts.push(`dropped ${params.droppedBlankUserMessages} blank user message(s)`);

136+

}

137+

if (params.rewrittenUserMessages > 0) {

138+

parts.push(`rewrote ${params.rewrittenUserMessages} user message(s)`);

79139

}

80140

// Caller only invokes this once at least one counter is non-zero, so the

81141

// empty-array branch is unreachable in production. Kept for defensive output.

@@ -108,6 +168,8 @@ export async function repairSessionFileIfNeeded(params: {

108168

const entries: unknown[] = [];

109169

let droppedLines = 0;

110170

let rewrittenAssistantMessages = 0;

171+

let droppedBlankUserMessages = 0;

172+

let rewrittenUserMessages = 0;

111173112174

for (const line of lines) {

113175

if (!line.trim()) {

@@ -120,6 +182,24 @@ export async function repairSessionFileIfNeeded(params: {

120182

rewrittenAssistantMessages += 1;

121183

continue;

122184

}

185+

if (

186+

entry &&

187+

typeof entry === "object" &&

188+

(entry as { type?: unknown }).type === "message" &&

189+

typeof (entry as { message?: unknown }).message === "object" &&

190+

((entry as { message: { role?: unknown } }).message?.role ?? undefined) === "user"

191+

) {

192+

const repairedUser = repairUserEntryWithBlankTextContent(entry as SessionMessageEntry);

193+

if (repairedUser.kind === "drop") {

194+

droppedBlankUserMessages += 1;

195+

continue;

196+

}

197+

if (repairedUser.kind === "rewrite") {

198+

entries.push(repairedUser.entry);

199+

rewrittenUserMessages += 1;

200+

continue;

201+

}

202+

}

123203

entries.push(entry);

124204

} catch {

125205

droppedLines += 1;

@@ -137,7 +217,12 @@ export async function repairSessionFileIfNeeded(params: {

137217

return { repaired: false, droppedLines, reason: "invalid session header" };

138218

}

139219140-

if (droppedLines === 0 && rewrittenAssistantMessages === 0) {

220+

if (

221+

droppedLines === 0 &&

222+

rewrittenAssistantMessages === 0 &&

223+

droppedBlankUserMessages === 0 &&

224+

rewrittenUserMessages === 0

225+

) {

141226

return { repaired: false, droppedLines: 0 };

142227

}

143228

@@ -169,15 +254,26 @@ export async function repairSessionFileIfNeeded(params: {

169254

repaired: false,

170255

droppedLines,

171256

rewrittenAssistantMessages,

257+

droppedBlankUserMessages,

258+

rewrittenUserMessages,

172259

reason: `repair failed: ${err instanceof Error ? err.message : "unknown error"}`,

173260

};

174261

}

175262176263

params.warn?.(

177-

`session file repaired: ${buildRepairSummaryParts(

264+

`session file repaired: ${buildRepairSummaryParts({

178265

droppedLines,

179266

rewrittenAssistantMessages,

180-

)} (${path.basename(sessionFile)})`,

267+

droppedBlankUserMessages,

268+

rewrittenUserMessages,

269+

})} (${path.basename(sessionFile)})`,

181270

);

182-

return { repaired: true, droppedLines, rewrittenAssistantMessages, backupPath };

271+

return {

272+

repaired: true,

273+

droppedLines,

274+

rewrittenAssistantMessages,

275+

droppedBlankUserMessages,

276+

rewrittenUserMessages,

277+

backupPath,

278+

};

183279

}