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

推荐订阅源

WordPress大学
WordPress大学
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
IT之家
IT之家
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
U
Unit 42
爱范儿
爱范儿
博客园 - 聂微东
F
Fortinet All Blogs
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
雷峰网
雷峰网
B
Blog RSS Feed
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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(status): show configured channels without gateway · o...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1313

### Fixes

1414
1515

- Plugins/externalization: keep ACPX, Google Chat, and LINE publishable plugin dist trees out of the core npm package file list.

16+

- Status/channels: show configured channels in `openclaw status` and config-only `openclaw channels status` output even when the Gateway is unreachable, avoiding empty Channels tables on WSL and other no-Gateway paths. Thanks @vincentkoc.

1617

- Plugins/ClawHub: explain unavailable explicit ClawHub ClawPack artifact downloads with a temporary npm install hint while ClawHub artifact routing rolls out. Thanks @vincentkoc.

1718

- Media: accept home-relative `MEDIA:~/...` attachment paths while preserving existing file-read policy, traversal checks, and media type validation. Fixes #73796. Thanks @fabkury.

1819

- Onboarding/search: install official external web-search plugins such as Brave before saving provider config, and make doctor repair reconcile selected external search providers whose npm payload is missing. Thanks @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -4,6 +4,7 @@ import { makeDirectPlugin } from "../test-utils/channel-plugin-test-fixtures.js"

44

import { formatConfigChannelsStatusLines } from "./channels/status-config-format.js";

55
66

const activeChannelPlugins = vi.hoisted(() => [] as ChannelPlugin[]);

7+

const listReadOnlyChannelPluginsForConfig = vi.hoisted(() => vi.fn(() => activeChannelPlugins));

78
89

vi.mock("../channels/plugins/index.js", () => ({

910

listChannelPlugins: () => activeChannelPlugins,

@@ -12,7 +13,7 @@ vi.mock("../channels/plugins/index.js", () => ({

1213

}));

1314
1415

vi.mock("../channels/plugins/read-only.js", () => ({

15-

listReadOnlyChannelPluginsForConfig: () => activeChannelPlugins,

16+

listReadOnlyChannelPluginsForConfig,

1617

}));

1718
1819

vi.mock("../channels/plugins/status.js", () => ({

@@ -191,6 +192,20 @@ function expectResolvedTokenStatusSummary(

191192

}

192193
193194

describe("config-only channels status output", () => {

195+

it("uses setup fallback plugins so configured external channels can be shown", async () => {

196+

registerSingleTestPlugin("token-only", makeUnavailableTokenPlugin());

197+

listReadOnlyChannelPluginsForConfig.mockClear();

198+
199+

await formatLocalStatusSummary({ channels: { "token-only": { enabled: true } } });

200+
201+

expect(listReadOnlyChannelPluginsForConfig).toHaveBeenCalledWith(

202+

expect.any(Object),

203+

expect.objectContaining({

204+

includeSetupFallbackPlugins: true,

205+

}),

206+

);

207+

});

208+
194209

it("shows configured-but-unavailable credentials distinctly from not configured", async () => {

195210

registerSingleTestPlugin("token-only", makeUnavailableTokenPlugin());

196211
Original file line numberDiff line numberDiff line change

@@ -60,7 +60,7 @@ export async function formatConfigChannelsStatusLines(

6060

const sourceConfig = opts?.sourceConfig ?? cfg;

6161

const plugins = listReadOnlyChannelPluginsForConfig(cfg, {

6262

activationSourceConfig: sourceConfig,

63-

includeSetupFallbackPlugins: false,

63+

includeSetupFallbackPlugins: true,

6464

});

6565

for (const plugin of plugins) {

6666

const accountIds = plugin.config.listAccountIds(cfg);

Original file line numberDiff line numberDiff line change

@@ -90,13 +90,13 @@ describe("scanStatus", () => {

9090

expect(mocks.buildChannelsTable).toHaveBeenCalledWith(

9191

expect.objectContaining({ marker: "resolved" }),

9292

expect.objectContaining({

93-

includeSetupFallbackPlugins: false,

93+

includeSetupFallbackPlugins: true,

9494

sourceConfig: expect.objectContaining({ marker: "source" }),

9595

}),

9696

);

9797

});

9898
99-

it("keeps default text status off live channel status and setup runtime fallback", async () => {

99+

it("keeps default text status off live channel status while keeping configured channel setup fallback", async () => {

100100

configureScanStatus({ hasConfiguredChannels: true });

101101

mocks.probeGateway.mockResolvedValue({

102102

ok: true,

@@ -117,7 +117,7 @@ describe("scanStatus", () => {

117117

);

118118

expect(mocks.buildChannelsTable).toHaveBeenCalledWith(

119119

expect.any(Object),

120-

expect.objectContaining({ includeSetupFallbackPlugins: false }),

120+

expect.objectContaining({ includeSetupFallbackPlugins: true }),

121121

);

122122

});

123123
Original file line numberDiff line numberDiff line change

@@ -53,7 +53,7 @@ export async function scanStatus(

5353

opts,

5454

showSecrets: process.env.OPENCLAW_SHOW_SECRETS?.trim() !== "0",

5555

includeLiveChannelStatus: includeLiveChannelChecks,

56-

includeChannelSetupRuntimeFallback: includeLiveChannelChecks,

56+

includeChannelSetupRuntimeFallback: true,

5757

progress,

5858

labels: {

5959

loadingConfig: "Loading config…",