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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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: bound unscoped provider discovery fallback · opencla...
shakkernerd · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,5 +1,5 @@

11

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

2-

import { loadPluginManifestRegistry } from "./manifest-registry.js";

2+

import { loadPluginManifestRegistry, type PluginManifestRecord } from "./manifest-registry.js";

33

import { resolveDiscoveredProviderPluginIds } from "./providers.js";

44

import { resolvePluginProviders } from "./providers.runtime.js";

55

import { createPluginSourceLoader } from "./source-loader.js";

@@ -17,6 +17,8 @@ type ProviderDiscoveryModule =

1717

type ProviderDiscoveryEntryResult = {

1818

providers: ProviderPlugin[];

1919

complete: boolean;

20+

pluginRecords: PluginManifestRecord[];

21+

entryPluginIds: Set<string>;

2022

};

21232224

function normalizeDiscoveryModule(value: ProviderDiscoveryModule): ProviderPlugin[] {

@@ -48,6 +50,22 @@ function hasLiveProviderDiscoveryHook(provider: ProviderPlugin): boolean {

4850

);

4951

}

505253+

function hasProviderAuthEnvCredential(

54+

plugin: PluginManifestRecord,

55+

env: NodeJS.ProcessEnv,

56+

): boolean {

57+

return Object.values(plugin.providerAuthEnvVars ?? {}).some((envVars) =>

58+

envVars.some((name) => {

59+

const value = env[name]?.trim();

60+

return value !== undefined && value !== "";

61+

}),

62+

);

63+

}

64+65+

function dedupeSorted(values: Iterable<string>): string[] {

66+

return [...new Set(values)].toSorted((left, right) => left.localeCompare(right));

67+

}

68+5169

function resolveProviderDiscoveryEntryPlugins(params: {

5270

config?: OpenClawConfig;

5371

workspaceDir?: string;

@@ -59,19 +77,21 @@ function resolveProviderDiscoveryEntryPlugins(params: {

5977

}): ProviderDiscoveryEntryResult {

6078

const pluginIds = resolveDiscoveredProviderPluginIds(params);

6179

const pluginIdSet = new Set(pluginIds);

62-

const records = loadPluginManifestRegistry(params).plugins.filter(

63-

(plugin) => plugin.providerDiscoverySource && pluginIdSet.has(plugin.id),

80+

const pluginRecords = loadPluginManifestRegistry(params).plugins.filter((plugin) =>

81+

pluginIdSet.has(plugin.id),

6482

);

65-

if (records.length === 0) {

66-

return { providers: [], complete: false };

83+

const entryRecords = pluginRecords.filter((plugin) => plugin.providerDiscoverySource);

84+

const entryPluginIds = new Set(entryRecords.map((plugin) => plugin.id));

85+

if (entryRecords.length === 0) {

86+

return { providers: [], complete: false, pluginRecords, entryPluginIds };

6787

}

68-

const complete = records.length === pluginIdSet.size;

88+

const complete = entryRecords.length === pluginIdSet.size;

6989

if (params.requireCompleteDiscoveryEntryCoverage && !complete) {

70-

return { providers: [], complete: false };

90+

return { providers: [], complete: false, pluginRecords, entryPluginIds };

7191

}

7292

const loadSource = createPluginSourceLoader();

7393

const providers: ProviderPlugin[] = [];

74-

for (const manifest of records) {

94+

for (const manifest of entryRecords) {

7595

try {

7696

const moduleExport = loadSource(manifest.providerDiscoverySource!) as ProviderDiscoveryModule;

7797

providers.push(

@@ -82,10 +102,26 @@ function resolveProviderDiscoveryEntryPlugins(params: {

82102

} catch {

83103

// Discovery fast path is optional. Fall back to the full plugin loader

84104

// below so existing plugin diagnostics/load behavior remains canonical.

85-

return { providers: [], complete: false };

105+

return { providers: [], complete: false, pluginRecords, entryPluginIds };

86106

}

87107

}

88-

return { providers, complete };

108+

return { providers, complete, pluginRecords, entryPluginIds };

109+

}

110+111+

function resolveSelectiveFullPluginIds(params: {

112+

entryResult: ProviderDiscoveryEntryResult;

113+

entryProviders: ProviderPlugin[];

114+

env: NodeJS.ProcessEnv;

115+

}): string[] {

116+

const staticOnlyEntryPluginIds = params.entryProviders

117+

.filter((provider) => !hasLiveProviderDiscoveryHook(provider))

118+

.map((provider) => provider.pluginId)

119+

.filter((pluginId): pluginId is string => typeof pluginId === "string" && pluginId !== "");

120+

const missingEntryCredentialPluginIds = params.entryResult.pluginRecords

121+

.filter((plugin) => !params.entryResult.entryPluginIds.has(plugin.id))

122+

.filter((plugin) => hasProviderAuthEnvCredential(plugin, params.env))

123+

.map((plugin) => plugin.id);

124+

return dedupeSorted([...staticOnlyEntryPluginIds, ...missingEntryCredentialPluginIds]);

89125

}

9012691127

export function resolvePluginDiscoveryProvidersRuntime(params: {

@@ -97,19 +133,35 @@ export function resolvePluginDiscoveryProvidersRuntime(params: {

97133

requireCompleteDiscoveryEntryCoverage?: boolean;

98134

discoveryEntriesOnly?: boolean;

99135

}): ProviderPlugin[] {

136+

const env = params.env ?? process.env;

100137

const entryResult = resolveProviderDiscoveryEntryPlugins(params);

101138

if (params.discoveryEntriesOnly === true) {

102139

return entryResult.providers;

103140

}

104-

if (

105-

entryResult.complete &&

106-

entryResult.providers.length > 0 &&

107-

entryResult.providers.every(hasLiveProviderDiscoveryHook)

108-

) {

109-

return entryResult.providers;

141+

const liveEntryProviders = entryResult.providers.filter(hasLiveProviderDiscoveryHook);

142+

if (entryResult.complete && liveEntryProviders.length === entryResult.providers.length) {

143+

return liveEntryProviders;

144+

}

145+

if (params.onlyPluginIds === undefined && entryResult.providers.length > 0) {

146+

const fullPluginIds = resolveSelectiveFullPluginIds({

147+

entryResult,

148+

entryProviders: entryResult.providers,

149+

env,

150+

});

151+

const fullProviders =

152+

fullPluginIds.length > 0

153+

? resolvePluginProviders({

154+

...params,

155+

env,

156+

onlyPluginIds: fullPluginIds,

157+

bundledProviderAllowlistCompat: true,

158+

})

159+

: [];

160+

return [...liveEntryProviders, ...fullProviders];

110161

}

111162

return resolvePluginProviders({

112163

...params,

164+

env,

113165

bundledProviderAllowlistCompat: true,

114166

});

115167

}