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

推荐订阅源

有赞技术团队
有赞技术团队
美团技术团队
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
V
V2EX
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
量子位
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
月光博客
月光博客
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
Keep command text in progress drafts (#93711) · openclaw/...
keshavbotage · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -3057,8 +3057,8 @@ describe("processDiscordMessage draft streaming", () => {

30573057

await runProcessDiscordMessage(ctx);

30583058
30593059

const lastUpdate = draftStream.update.mock.calls.at(-1)?.[0];

3060-

expect(lastUpdate).toContain("completed");

3061-

expect(lastUpdate).not.toContain("install dependencies");

3060+

expect(lastUpdate).toContain("install dependencies");

3061+

expect(lastUpdate).not.toContain("completed");

30623062

});

30633063
30643064

it("drops later tool warning finals after progress preview final replies", async () => {

Original file line numberDiff line numberDiff line change

@@ -134,7 +134,7 @@ describe("buildSlackProgressDraftBlocks", () => {

134134

],

135135

});

136136
137-

expectLegacyLineBlock(blocks?.[1], "• *Exec*", "command finished · completed");

137+

expectLegacyLineBlock(blocks?.[1], "• *Exec*", "command finished");

138138

expectLegacyLineBlock(blocks?.[2], "• *Exec*", "command failed · exit 1");

139139

});

140140

@@ -243,7 +243,7 @@ describe("native Slack progress stream chunks", () => {

243243

}),

244244

).toEqual([

245245

planUpdate("Shelling..."),

246-

taskUpdate("exec_1", "Exec — command finished · completed", "complete"),

246+

taskUpdate("exec_1", "Exec — command finished", "complete"),

247247

taskUpdate("exec_2", "Exec — command failed · exit 1", "error"),

248248

]);

249249

});

Original file line numberDiff line numberDiff line change

@@ -59,7 +59,12 @@ function compactChunkText(value: string): string {

5959

}

6060
6161

function lineDetailParts(line: ChannelProgressDraftLine): string[] {

62-

return [line.detail, line.status && !line.detail?.includes(line.status) ? line.status : undefined]

62+

return [

63+

line.detail,

64+

line.status && line.status !== "completed" && !line.detail?.includes(line.status)

65+

? line.status

66+

: undefined,

67+

]

6368

.map((part) => part?.trim())

6469

.filter((part): part is string => Boolean(part));

6570

}

Original file line numberDiff line numberDiff line change

@@ -2625,10 +2625,10 @@ describe("dispatchTelegramMessage draft streaming", () => {

26252625

});

26262626
26272627

const lastUpdate = answerDraftStream.updatePreview.mock.calls.at(-1)?.[0];

2628-

expect(lastUpdate?.text).toContain("completed");

26292628

expect(lastUpdate?.text).toContain("install dependencies");

2629+

expect(lastUpdate?.text).not.toContain("completed");

26302630

expect(lastUpdate?.richMessage).toEqual({

2631-

html: "<b>Shelling</b><br><b>🛠️ Exec</b> <code>install dependencies</code> <i>completed</i>",

2631+

html: "<b>Shelling</b><br><b>🛠️ Exec</b> <code>install dependencies</code>",

26322632

skip_entity_detection: true,

26332633

});

26342634

});

Original file line numberDiff line numberDiff line change

@@ -458,7 +458,7 @@ function renderTelegramProgressLine(line: ChannelProgressDraftCompositorLine): s

458458

parts.push(renderTelegramProgressStringLine(text));

459459

}

460460

}

461-

if (line.status && line.status !== line.detail) {

461+

if (line.status && line.status !== "completed" && line.status !== line.detail) {

462462

parts.push(`<i>${escapeTelegramProgressHtml(line.status)}</i>`);

463463

}

464464

return parts.join(" ");

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,44 @@ import { describe, expect, it } from "vitest";

22

import { buildChannelProgressDraftLine } from "./streaming.js";

33
44

describe("buildChannelProgressDraftLine", () => {

5+

it("omits generic completed status from successful command output with title", () => {

6+

const line = buildChannelProgressDraftLine(

7+

{

8+

event: "command-output",

9+

toolCallId: "exec-1",

10+

phase: "end",

11+

title: "pwd",

12+

name: "exec",

13+

exitCode: 0,

14+

},

15+

{ commandText: "raw" },

16+

);

17+
18+

expect(line).toMatchObject({

19+

kind: "command-output",

20+

id: "exec-1",

21+

text: "🛠️ pwd",

22+

detail: "pwd",

23+

status: "completed",

24+

});

25+

});

26+
27+

it("uses the tool label when successful command output has no title", () => {

28+

const line = buildChannelProgressDraftLine({

29+

event: "command-output",

30+

phase: "end",

31+

name: "exec",

32+

exitCode: 0,

33+

});

34+
35+

expect(line).toMatchObject({

36+

kind: "command-output",

37+

text: "🛠️ Exec",

38+

status: "completed",

39+

});

40+

expect(line?.detail).toBeUndefined();

41+

});

42+
543

it("keeps command status and title in raw command progress lines", () => {

644

const line = buildChannelProgressDraftLine(

745

{

Original file line numberDiff line numberDiff line change

@@ -443,6 +443,9 @@ function buildCommandOutputProgressLine(

443443

if (!line || !status) {

444444

return line;

445445

}

446+

if (status === "completed") {

447+

return line;

448+

}

446449

if (!line.detail || line.detail === status) {

447450

const statusLine = {

448451

...line,

@@ -1055,11 +1058,14 @@ function getProgressDraftLineText(line: string | ChannelProgressDraftLine): stri

10551058

const label = line.label.trim();

10561059

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

10571060

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

1061+

const displayStatus = status === "completed" ? undefined : status;

10581062

if (detail) {

10591063

const compactCommandLine =

10601064

line.toolName === "exec" || line.toolName === "bash" || line.toolName === "shell";

1061-

if (line.kind === "command-output" && status && detail !== status) {

1062-

const outputDetail = detail.startsWith(`${status};`) ? detail : `${status}; ${detail}`;

1065+

if (line.kind === "command-output" && displayStatus && detail !== displayStatus) {

1066+

const outputDetail = detail.startsWith(`${displayStatus};`)

1067+

? detail

1068+

: `${displayStatus}; ${detail}`;

10631069

if (compactCommandLine) {

10641070

return `${prefix}${outputDetail}`;

10651071

}

@@ -1070,11 +1076,11 @@ function getProgressDraftLineText(line: string | ChannelProgressDraftLine): stri

10701076

}

10711077

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

10721078

}

1073-

if (status) {

1079+

if (displayStatus) {

10741080

if (label) {

1075-

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

1081+

return `${prefix}${label}: ${displayStatus}`;

10761082

}

1077-

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

1083+

return `${prefix}${displayStatus}`;

10781084

}

10791085

const text = line.text.trim();

10801086

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

Original file line numberDiff line numberDiff line change

@@ -601,10 +601,16 @@ describe("channel-streaming", () => {

601601

expect(updated[0]).toMatchObject({

602602

id: "tool:call-1-output",

603603

kind: "command-output",

604-

status: "completed",

605604

detail: "install dependencies",

606-

text: "🛠️ completed; install dependencies",

605+

status: "completed",

606+

text: "🛠️ install dependencies",

607607

});

608+

expect(

609+

formatChannelProgressDraftText({

610+

lines: updated,

611+

entry: { streaming: { progress: { label: false } } },

612+

}),

613+

).toBe("🛠️ install dependencies");

608614
609615

const recoveredItemLine = buildChannelProgressDraftLine({

610616

event: "item",

@@ -634,9 +640,9 @@ describe("channel-streaming", () => {

634640

{

635641

id: "command-2",

636642

kind: "command-output",

637-

status: "completed",

638643

detail: "install dependencies failed",

639-

text: "🛠️ completed; install dependencies failed",

644+

status: "completed",

645+

text: "🛠️ install dependencies failed",

640646

},

641647

]);

642648

});