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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

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(doctor): honor account route coverage · openclaw/open...
stainlu · 2026-05-11 · via Recent Commits to openclaw:main

@@ -6,7 +6,11 @@ import { listRouteBindings } from "../../../config/bindings.js";

66

import type { AgentRouteBinding } from "../../../config/types.agents.js";

77

import type { OpenClawConfig } from "../../../config/types.openclaw.js";

88

import type { AgentToolsConfig, ToolsConfig } from "../../../config/types.tools.js";

9-

import { normalizeAgentId } from "../../../routing/session-key.js";

9+

import {

10+

DEFAULT_ACCOUNT_ID,

11+

normalizeAccountId,

12+

normalizeAgentId,

13+

} from "../../../routing/session-key.js";

1014

import { createLazyImportLoader } from "../../../shared/lazy-promise.js";

11151216

type ChannelDoctorModule = typeof import("./channel-doctor.js");

@@ -48,6 +52,21 @@ function listConfiguredChannelIds(cfg: OpenClawConfig): string[] {

4852

.toSorted();

4953

}

505455+

function listConfiguredChannelAccountIds(cfg: OpenClawConfig, channelId: string): string[] {

56+

if (!hasRecord(cfg.channels)) {

57+

return [];

58+

}

59+

const channel = cfg.channels[channelId];

60+

if (!hasRecord(channel) || !hasRecord(channel.accounts)) {

61+

return [];

62+

}

63+

return Object.entries(channel.accounts)

64+

.filter(([, value]) => !(hasRecord(value) && value.enabled === false))

65+

.map(([accountId]) => normalizeAccountId(accountId))

66+

.filter(Boolean)

67+

.toSorted();

68+

}

69+5170

function hasPlugins(cfg: OpenClawConfig): boolean {

5271

return hasRecord(cfg.plugins);

5372

}

@@ -222,11 +241,26 @@ function formatChannelList(channels: string[]): string {

222241

.join(", ")}, and ${channels.length - 2} more`;

223242

}

224243225-

function isUnscopedChannelRouteBinding(binding: AgentRouteBinding): boolean {

244+

function isUnscopedRouteBinding(binding: AgentRouteBinding): boolean {

226245

const match = binding.match;

227-

const accountId = match.accountId?.trim();

228246

const hasRoles = Array.isArray(match.roles) && match.roles.length > 0;

229-

return accountId === "*" && !match.peer && !match.guildId && !match.teamId && !hasRoles;

247+

return !match.peer && !match.guildId && !match.teamId && !hasRoles;

248+

}

249+250+

function isUnscopedChannelRouteBinding(binding: AgentRouteBinding): boolean {

251+

const accountId = binding.match.accountId?.trim();

252+

return accountId === "*" && isUnscopedRouteBinding(binding);

253+

}

254+255+

function resolveUnscopedBindingAccountId(binding: AgentRouteBinding): string | undefined {

256+

if (!isUnscopedRouteBinding(binding)) {

257+

return undefined;

258+

}

259+

const accountId = binding.match.accountId?.trim();

260+

if (accountId === "*") {

261+

return "*";

262+

}

263+

return normalizeAccountId(accountId || DEFAULT_ACCOUNT_ID);

230264

}

231265232266

function collectBoundChannelTargets(cfg: OpenClawConfig): Array<{

@@ -250,17 +284,40 @@ function collectBoundChannelTargets(cfg: OpenClawConfig): Array<{

250284251285

const routeBindings: AgentRouteBinding[] = listRouteBindings(cfg);

252286

const fullyCoveredChannels = new Set<string>();

287+

const coveredAccountsByChannel = new Map<string, Set<string>>();

253288

for (const binding of routeBindings) {

254289

const channel = binding.match.channel.trim();

255290

add(binding.agentId, channel);

256-

if (channel && isUnscopedChannelRouteBinding(binding)) {

291+

if (!channel) {

292+

continue;

293+

}

294+

if (isUnscopedChannelRouteBinding(binding)) {

257295

fullyCoveredChannels.add(channel);

296+

continue;

297+

}

298+

const coveredAccountId = resolveUnscopedBindingAccountId(binding);

299+

if (coveredAccountId && coveredAccountId !== "*") {

300+

let coveredAccounts = coveredAccountsByChannel.get(channel);

301+

if (!coveredAccounts) {

302+

coveredAccounts = new Set<string>();

303+

coveredAccountsByChannel.set(channel, coveredAccounts);

304+

}

305+

coveredAccounts.add(coveredAccountId);

258306

}

259307

}

260308261309

const defaultAgentId = resolveDefaultAgentId(cfg);

262310

for (const channel of listConfiguredChannelIds(cfg)) {

263-

if (!fullyCoveredChannels.has(channel)) {

311+

if (fullyCoveredChannels.has(channel)) {

312+

continue;

313+

}

314+

const configuredAccountIds = listConfiguredChannelAccountIds(cfg, channel);

315+

if (configuredAccountIds.length === 0) {

316+

add(defaultAgentId, channel);

317+

continue;

318+

}

319+

const coveredAccounts = coveredAccountsByChannel.get(channel);

320+

if (configuredAccountIds.some((accountId) => !coveredAccounts?.has(accountId))) {

264321

add(defaultAgentId, channel);

265322

}

266323

}