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

推荐订阅源

V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
罗磊的独立博客
小众软件
小众软件
I
InfoQ
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
P
Proofpoint News Feed
博客园 - 司徒正美
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium

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 gateway optional plugin startup (#78642) · openclaw/o...
joshavant · 2026-05-07 · via Recent Commits to openclaw:main

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

11

import path from "node:path";

22

import { resolveAgentWorkspaceDir, resolveDefaultAgentId } from "../agents/agent-scope.js";

33

import { CHANNEL_IDS, normalizeChatChannelId } from "../channels/ids.js";

4+

import { listChannelPluginCatalogEntries } from "../channels/plugins/catalog.js";

45

import { isPathInside } from "../infra/path-guards.js";

56

import { planManifestModelCatalogSuppressions } from "../model-catalog/index.js";

67

import { withBundledPluginAllowlistCompat } from "../plugins/bundled-compat.js";

@@ -1041,6 +1042,16 @@ function validateConfigObjectWithPluginsBase(

10411042

].toSorted((left, right) => left.localeCompare(right));

10421043

};

104310441045+

const findInstallableChannelCatalogEntry = (channelId: string) => {

1046+

const normalizedChannelId = normalizeLowercaseStringOrEmpty(channelId);

1047+

if (!normalizedChannelId) {

1048+

return undefined;

1049+

}

1050+

return listChannelPluginCatalogEntries({ env: opts.env, excludeWorkspace: true }).find(

1051+

(entry) => normalizeLowercaseStringOrEmpty(entry.id) === normalizedChannelId,

1052+

);

1053+

};

1054+10441055

const collectKnownWebSearchProviderIds = (): string[] => {

10451056

return [

10461057

...new Set([

@@ -1102,7 +1113,7 @@ function validateConfigObjectWithPluginsBase(

11021113

(entry) => entry.provider.id === trimmed,

11031114

);

11041115

if (installCatalogEntry) {

1105-

issues.push({

1116+

warnings.push({

11061117

path,

11071118

message: `web_search provider is not available: ${trimmed} (install or enable plugin "${installCatalogEntry.pluginId}", then run openclaw doctor --fix)`,

11081119

allowedValues: collectKnownWebSearchProviderIds(),

@@ -1249,7 +1260,14 @@ function validateConfigObjectWithPluginsBase(

12491260

path: `channels.${trimmed}`,

12501261

message: `unknown channel id: ${trimmed}`,

12511262

};

1252-

if (hasStalePluginEvidenceForUnknownChannel(trimmed)) {

1263+

const installCatalogEntry = findInstallableChannelCatalogEntry(trimmed);

1264+

if (installCatalogEntry) {

1265+

const pluginId = installCatalogEntry.pluginId ?? installCatalogEntry.id;

1266+

warnings.push({

1267+

path: issue.path,

1268+

message: `channel plugin is not available: ${trimmed} (install or enable plugin "${pluginId}", then run openclaw doctor --fix)`,

1269+

});

1270+

} else if (hasStalePluginEvidenceForUnknownChannel(trimmed)) {

12531271

warnings.push({

12541272

...issue,

12551273

message: `${issue.message} (stale channel plugin config ignored; run openclaw doctor --fix to remove stale config, or install the plugin)`,