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

推荐订阅源

M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
量子位
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
IT之家
IT之家
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
雷峰网
雷峰网

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: preserve progress draft tool titles · openclaw/openc...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

File tree

  • docs/.generated

  • extensions/discord/src/monitor

  • src/plugin-sdk

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,7 @@ Docs: https://docs.openclaw.ai

77

### Changes

88
99

- Agents/failover: harden state-aware lane suspension by persisting quota resume transitions, restoring configured lane concurrency, preserving non-quota failure reasons, and exporting model failover events through diagnostics OTLP. Thanks @BunsDev.

10-

- Channels/streaming: make progress draft labels scroll away with other progress lines, render structured tool rows as compact emoji/details, show web-search queries from provider-native argument shapes, and skip empty Discord apply-patch starts until a patch summary exists. (#79146)

10+

- Channels/streaming: make progress draft labels scroll away with other progress lines, render structured tool rows as compact emoji/title/details, show web-search queries from provider-native argument shapes, and skip empty Discord apply-patch starts until a patch summary exists. (#79146)

1111

- Telegram: preserve the channel-specific 10-option poll cap in the unified outbound adapter so over-limit polls are rejected before send. (#78762) Thanks @obviyus.

1212

- Runtime/install: raise the supported Node 22 floor to `22.16+` so native SQLite query handling can rely on the `node:sqlite` statement metadata API while continuing to recommend Node 24. (#78921)

1313

- Discord/voice: include a bounded one-line STT transcript preview in verbose voice logs so live voice debugging shows what speakers said before the agent reply.

Original file line numberDiff line numberDiff line change

@@ -1,2 +1,2 @@

1-

0c69a93645885b5135fe4cb920b25aa24505cb2f818281a0185b2edc1966732d plugin-sdk-api-baseline.json

2-

23d13fe064bb240d81a385c7fc02ca732c909b9cbdcae02fd45339dd3f74bd73 plugin-sdk-api-baseline.jsonl

1+

887d2fee5f77f1de984bfb6ec0f001c0484c0367dbc8b5f42b62027df352c2e1 plugin-sdk-api-baseline.json

2+

8e2b4e64a801b47c4d45d5d4a2073180abcc1ecf7e677fae035799c6a68f7c82 plugin-sdk-api-baseline.jsonl

Original file line numberDiff line numberDiff line change

@@ -1621,7 +1621,7 @@ describe("processDiscordMessage draft streaming", () => {

16211621

await runProcessDiscordMessage(ctx);

16221622
16231623

expect(draftStream.update).toHaveBeenCalledWith(

1624-

"Shelling\n🛠️ run tests, `pnpm test -- --watch=false`\n• done",

1624+

"Shelling\n🛠️ Exec: run tests, `pnpm test -- --watch=false`\n• done",

16251625

);

16261626

});

16271627
Original file line numberDiff line numberDiff line change

@@ -273,9 +273,7 @@ describe("channel-streaming", () => {

273273

lines: line ? [line] : [],

274274

});

275275
276-

expect(text).toBe(

277-

"Shelling\n🛠️ run node script scripts/check-something-with-a-very-long-path, node…",

278-

);

276+

expect(text).toBe("Shelling\n🛠️ Exec: run node script…that/keeps/going/and/going/index…");

279277

expect(text.match(/`/g) ?? []).toHaveLength(0);

280278

});

281279
Original file line numberDiff line numberDiff line change

@@ -754,16 +754,22 @@ function getProgressDraftLineText(line: string | ChannelProgressDraftLine): stri

754754

}

755755

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

756756

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

757+

const label = line.label.trim();

757758

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

758759

if (detail) {

760+

if (line.kind !== "patch" && label) {

761+

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

762+

}

759763

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

760764

}

761765

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

762766

if (status) {

767+

if (label) {

768+

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

769+

}

763770

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

764771

}

765772

const text = line.text.trim();

766-

const label = line.label.trim();

767773

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

768774

return text;

769775

}