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

推荐订阅源

IT之家
IT之家
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Y
Y Combinator Blog
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
M
MIT News - Artificial intelligence
博客园 - Franky
V
Visual Studio Blog
I
InfoQ
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
博客园 - 司徒正美
L
LangChain 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: coalesce repeated idle TUI abort notices (#85167) · ...
RomneyDa · 2026-05-22 · via Recent Commits to openclaw:main

@@ -8,6 +8,13 @@ import { UserMessageComponent } from "./user-message.js";

8899

const PENDING_HISTORY_CLOCK_SKEW_TOLERANCE_MS = 60_000;

101011+

type RepeatableSystemMessage = {

12+

component: Container;

13+

textNode: Text;

14+

baseText: string;

15+

count: number;

16+

};

17+1118

export class ChatLog extends Container {

1219

private readonly maxComponents: number;

1320

private toolById = new Map<string, ToolExecutionComponent>();

@@ -22,6 +29,7 @@ export class ChatLog extends Container {

2229

>();

2330

private btwMessage: BtwInlineMessage | null = null;

2431

private toolsExpanded = false;

32+

private repeatableSystemMessage: RepeatableSystemMessage | null = null;

25332634

constructor(maxComponents = 180) {

2735

super();

@@ -47,6 +55,9 @@ export class ChatLog extends Container {

4755

if (this.btwMessage === component) {

4856

this.btwMessage = null;

4957

}

58+

if (this.repeatableSystemMessage?.component === component) {

59+

this.repeatableSystemMessage = null;

60+

}

5061

}

51625263

private pruneOverflow() {

@@ -65,11 +76,17 @@ export class ChatLog extends Container {

6576

this.pruneOverflow();

6677

}

677879+

private appendNonSystem(component: Component) {

80+

this.repeatableSystemMessage = null;

81+

this.append(component);

82+

}

83+6884

clearAll(opts?: { preservePendingUsers?: boolean }) {

6985

this.clear();

7086

this.toolById.clear();

7187

this.streamingRuns.clear();

7288

this.btwMessage = null;

89+

this.repeatableSystemMessage = null;

7390

if (!opts?.preservePendingUsers) {

7491

this.pendingUsers.clear();

7592

}

@@ -80,7 +97,7 @@ export class ChatLog extends Container {

8097

if (this.children.includes(entry.component)) {

8198

continue;

8299

}

83-

this.append(entry.component);

100+

this.appendNonSystem(entry.component);

84101

}

85102

}

86103

@@ -91,19 +108,42 @@ export class ChatLog extends Container {

91108

this.pendingUsers.clear();

92109

}

9311094-

private createSystemMessage(text: string): Container {

111+

private formatRepeatedSystemText(text: string, count: number) {

112+

return count > 1 ? `${text} x${count}` : text;

113+

}

114+115+

private createSystemMessage(text: string): RepeatableSystemMessage {

95116

const entry = new Container();

117+

const textNode = new Text(theme.system(text), 1, 0);

96118

entry.addChild(new Spacer(1));

97-

entry.addChild(new Text(theme.system(text), 1, 0));

98-

return entry;

119+

entry.addChild(textNode);

120+

return {

121+

component: entry,

122+

textNode,

123+

baseText: text,

124+

count: 1,

125+

};

99126

}

100127101-

addSystem(text: string) {

102-

this.append(this.createSystemMessage(text));

128+

addSystem(text: string, opts?: { coalesceConsecutive?: boolean }) {

129+

if (

130+

opts?.coalesceConsecutive &&

131+

this.repeatableSystemMessage?.baseText === text &&

132+

this.children[this.children.length - 1] === this.repeatableSystemMessage.component

133+

) {

134+

this.repeatableSystemMessage.count += 1;

135+

this.repeatableSystemMessage.textNode.setText(

136+

theme.system(this.formatRepeatedSystemText(text, this.repeatableSystemMessage.count)),

137+

);

138+

return;

139+

}

140+

const message = this.createSystemMessage(text);

141+

this.append(message.component);

142+

this.repeatableSystemMessage = opts?.coalesceConsecutive ? message : null;

103143

}

104144105145

addUser(text: string) {

106-

this.append(new UserMessageComponent(text));

146+

this.appendNonSystem(new UserMessageComponent(text));

107147

}

108148109149

addPendingUser(runId: string, text: string, createdAt = Date.now()) {

@@ -116,7 +156,7 @@ export class ChatLog extends Container {

116156

}

117157

const component = new UserMessageComponent(text);

118158

this.pendingUsers.set(runId, { component, text, createdAt });

119-

this.append(component);

159+

this.appendNonSystem(component);

120160

return component;

121161

}

122162

@@ -192,7 +232,7 @@ export class ChatLog extends Container {

192232

}

193233

const component = new AssistantMessageComponent(text);

194234

this.streamingRuns.set(effectiveRunId, component);

195-

this.append(component);

235+

this.appendNonSystem(component);

196236

return component;

197237

}

198238

@@ -214,7 +254,7 @@ export class ChatLog extends Container {

214254

this.streamingRuns.delete(effectiveRunId);

215255

return;

216256

}

217-

this.append(new AssistantMessageComponent(text));

257+

this.appendNonSystem(new AssistantMessageComponent(text));

218258

}

219259220260

dropAssistant(runId?: string) {

@@ -232,13 +272,13 @@ export class ChatLog extends Container {

232272

this.btwMessage.setResult(params);

233273

if (this.children[this.children.length - 1] !== this.btwMessage) {

234274

this.removeChild(this.btwMessage);

235-

this.append(this.btwMessage);

275+

this.appendNonSystem(this.btwMessage);

236276

}

237277

return this.btwMessage;

238278

}

239279

const component = new BtwInlineMessage(params);

240280

this.btwMessage = component;

241-

this.append(component);

281+

this.appendNonSystem(component);

242282

return component;

243283

}

244284

@@ -263,7 +303,7 @@ export class ChatLog extends Container {

263303

const component = new ToolExecutionComponent(toolName, args);

264304

component.setExpanded(this.toolsExpanded);

265305

this.toolById.set(toolCallId, component);

266-

this.append(component);

306+

this.appendNonSystem(component);

267307

return component;

268308

}

269309