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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
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: improve Discord progress draft rendering · openclaw/...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -1,6 +1,7 @@

11

import { EmbeddedBlockChunker } from "openclaw/plugin-sdk/agent-runtime";

22

import {

33

createChannelProgressDraftGate,

4+

type ChannelProgressDraftLine,

45

formatChannelProgressDraftText,

56

isChannelProgressDraftWorkToolName,

67

resolveChannelProgressDraftMaxLines,

@@ -81,7 +82,7 @@ export function createDiscordDraftPreviewController(params: {

8182

previewToolProgressEnabled,

8283

});

8384

let previewToolProgressSuppressed = false;

84-

let previewToolProgressLines: string[] = [];

85+

let previewToolProgressLines: Array<string | ChannelProgressDraftLine> = [];

8586

let reasoningProgressRawText = "";

8687

let lastReasoningProgressLine: string | undefined;

8788

const progressSeed = `${params.accountId}:${params.deliverChannelId}`;

@@ -94,6 +95,8 @@ export function createDiscordDraftPreviewController(params: {

9495

entry: params.discordConfig,

9596

lines: previewToolProgressLines,

9697

seed: progressSeed,

98+

labelPlacement: "line",

99+

formatStructuredLine: formatDiscordProgressDraftLine,

97100

});

98101

if (!previewText || previewText === lastPartialText) {

99102

return;

@@ -156,7 +159,10 @@ export function createDiscordDraftPreviewController(params: {

156159

}

157160

await progressDraftGate.startNow();

158161

},

159-

async pushToolProgress(line?: string, options?: { toolName?: string }) {

162+

async pushToolProgress(

163+

line?: string | ChannelProgressDraftLine,

164+

options?: { toolName?: string },

165+

) {

160166

if (!draftStream) {

161167

return;

162168

}

@@ -166,25 +172,32 @@ export function createDiscordDraftPreviewController(params: {

166172

) {

167173

return;

168174

}

169-

const normalized = line?.replace(/\s+/g, " ").trim();

175+

if (isEmptyDiscordProgressLine(line)) {

176+

return;

177+

}

178+

const normalized = normalizeProgressLineIdentity(line);

170179

if (!normalized) {

171180

return;

172181

}

182+

const progressLine: string | ChannelProgressDraftLine =

183+

typeof line === "object" && line !== undefined ? line : normalized;

173184

if (discordStreamMode !== "progress") {

174185

if (!previewToolProgressEnabled || previewToolProgressSuppressed) {

175186

return;

176187

}

177-

const previous = previewToolProgressLines.at(-1);

188+

const previous = normalizeProgressLineIdentity(previewToolProgressLines.at(-1));

178189

if (previous === normalized) {

179190

return;

180191

}

181-

previewToolProgressLines = [...previewToolProgressLines, normalized].slice(

192+

previewToolProgressLines = [...previewToolProgressLines, progressLine].slice(

182193

-resolveChannelProgressDraftMaxLines(params.discordConfig),

183194

);

184195

const previewText = formatChannelProgressDraftText({

185196

entry: params.discordConfig,

186197

lines: previewToolProgressLines,

187198

seed: progressSeed,

199+

labelPlacement: "line",

200+

formatStructuredLine: formatDiscordProgressDraftLine,

188201

});

189202

lastPartialText = previewText;

190203

draftText = previewText;

@@ -194,15 +207,19 @@ export function createDiscordDraftPreviewController(params: {

194207

return;

195208

}

196209

if (previewToolProgressEnabled && !previewToolProgressSuppressed && normalized) {

197-

const previous = previewToolProgressLines.at(-1);

210+

const previous = normalizeProgressLineIdentity(previewToolProgressLines.at(-1));

198211

if (previous !== normalized) {

199-

previewToolProgressLines = [...previewToolProgressLines, normalized].slice(

212+

previewToolProgressLines = [...previewToolProgressLines, progressLine].slice(

200213

-resolveChannelProgressDraftMaxLines(params.discordConfig),

201214

);

202215

}

203216

}

204217

const alreadyStarted = progressDraftGate.hasStarted;

205-

await progressDraftGate.noteWork();

218+

if (shouldStartDiscordProgressDraftNow(line)) {

219+

await progressDraftGate.startNow();

220+

} else {

221+

await progressDraftGate.noteWork();

222+

}

206223

if (alreadyStarted && progressDraftGate.hasStarted) {

207224

await renderProgressDraft();

208225

}

@@ -392,3 +409,42 @@ function mergeReasoningProgressText(current: string, incoming: string): string {

392409

function isReasoningSnapshotText(text: string): boolean {

393410

return /^\s*(?:>\s*)?Reasoning:\s*/i.test(text);

394411

}

412+413+

function normalizeProgressLineIdentity(

414+

line: string | ChannelProgressDraftLine | undefined,

415+

): string {

416+

const text = typeof line === "string" ? line : line?.text;

417+

return text?.replace(/\s+/g, " ").trim() ?? "";

418+

}

419+420+

function isEmptyDiscordProgressLine(line: string | ChannelProgressDraftLine | undefined): boolean {

421+

if (!line || typeof line === "string") {

422+

return false;

423+

}

424+

return line.toolName === "apply_patch" && !line.detail && !line.status;

425+

}

426+427+

function shouldStartDiscordProgressDraftNow(

428+

line: string | ChannelProgressDraftLine | undefined,

429+

): boolean {

430+

return typeof line === "object" && line?.kind === "patch" && Boolean(line.detail);

431+

}

432+433+

function formatDiscordProgressDraftLine(line: ChannelProgressDraftLine): string {

434+

const icon = line.icon?.trim();

435+

const prefix = icon ? `${icon} ` : "";

436+

const detail = line.detail?.trim();

437+

if (detail) {

438+

return `${prefix}${detail}`;

439+

}

440+

const status = line.status?.trim();

441+

if (status) {

442+

return `${prefix}${status}`;

443+

}

444+

const text = line.text.trim();

445+

const label = line.label.trim();

446+

if (!icon && text && text !== label) {

447+

return text;

448+

}

449+

return `${prefix}${label}`.trim();

450+

}