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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
L
LangChain Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
WordPress大学
WordPress大学
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky

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(providers): keep setup flow on cold metadata · opencl...
vincentkoc · 2026-04-26 · via Recent Commits to openclaw:main

@@ -2,13 +2,6 @@ import type { OpenClawConfig } from "../config/types.openclaw.js";

22

import { normalizePluginsConfig, resolveEffectiveEnableState } from "../plugins/config-state.js";

33

import { resolveManifestProviderAuthChoices } from "../plugins/provider-auth-choices.js";

44

import { resolveProviderInstallCatalogEntries } from "../plugins/provider-install-catalog.js";

5-

import {

6-

resolveProviderModelPickerEntries,

7-

resolveProviderWizardOptions,

8-

} from "../plugins/provider-wizard.js";

9-

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

10-

import type { ProviderPlugin } from "../plugins/types.js";

11-

import { normalizeOptionalString } from "../shared/string-coerce.js";

125

import type { FlowContribution, FlowOption } from "./types.js";

136

import { sortFlowContributionsByLabel } from "./types.js";

147

@@ -29,15 +22,7 @@ export type ProviderSetupFlowContribution = FlowContribution & {

2922

pluginId?: string;

3023

option: ProviderSetupFlowOption;

3124

onboardingScopes?: ProviderFlowScope[];

32-

source: "manifest" | "runtime" | "install-catalog";

33-

};

34-35-

export type ProviderModelPickerFlowContribution = FlowContribution & {

36-

kind: "provider";

37-

surface: "model-picker";

38-

providerId: string;

39-

option: ProviderModelPickerFlowEntry;

40-

source: "runtime";

25+

source: "manifest" | "install-catalog";

4126

};

42274328

function includesProviderFlowScope(

@@ -47,25 +32,6 @@ function includesProviderFlowScope(

4732

return scopes ? scopes.includes(scope) : scope === DEFAULT_PROVIDER_FLOW_SCOPE;

4833

}

493450-

function resolveProviderDocsById(params?: {

51-

config?: OpenClawConfig;

52-

workspaceDir?: string;

53-

env?: NodeJS.ProcessEnv;

54-

}): Map<string, string> {

55-

return new Map(

56-

resolvePluginProviders({

57-

config: params?.config,

58-

workspaceDir: params?.workspaceDir,

59-

env: params?.env,

60-

mode: "setup",

61-

})

62-

.filter((provider): provider is ProviderPlugin & { docsPath: string } =>

63-

Boolean(normalizeOptionalString(provider.docsPath)),

64-

)

65-

.map((provider) => [provider.id, normalizeOptionalString(provider.docsPath)!]),

66-

);

67-

}

68-6935

function resolveInstallCatalogProviderSetupFlowContributions(params?: {

7036

config?: OpenClawConfig;

7137

workspaceDir?: string;

@@ -174,100 +140,18 @@ export function resolveProviderSetupFlowContributions(params?: {

174140

scope?: ProviderFlowScope;

175141

}): ProviderSetupFlowContribution[] {

176142

const scope = params?.scope ?? DEFAULT_PROVIDER_FLOW_SCOPE;

177-

const docsByProvider = resolveProviderDocsById(params ?? {});

178143

const manifestContributions = resolveManifestProviderSetupFlowContributions({

179144

...params,

180145

scope,

181146

});

182147

const seenOptionValues = new Set(

183148

manifestContributions.map((contribution) => contribution.option.value),

184149

);

185-

const runtimeContributions = resolveProviderWizardOptions(params ?? {})

186-

.filter((option) => includesProviderFlowScope(option.onboardingScopes, scope))

187-

.filter((option) => !seenOptionValues.has(option.value))

188-

.map((option) =>

189-

Object.assign(

190-

{

191-

id: `provider:setup:${option.value}`,

192-

kind: `provider` as const,

193-

surface: `setup` as const,

194-

providerId: option.groupId,

195-

option: {

196-

value: option.value,

197-

label: option.label,

198-

...(option.hint ? { hint: option.hint } : {}),

199-

...(option.assistantPriority !== undefined

200-

? { assistantPriority: option.assistantPriority }

201-

: {}),

202-

...(option.assistantVisibility

203-

? { assistantVisibility: option.assistantVisibility }

204-

: {}),

205-

group: {

206-

id: option.groupId,

207-

label: option.groupLabel,

208-

...(option.groupHint ? { hint: option.groupHint } : {}),

209-

},

210-

...(docsByProvider.get(option.groupId)

211-

? { docs: { path: docsByProvider.get(option.groupId)! } }

212-

: {}),

213-

},

214-

},

215-

option.onboardingScopes ? { onboardingScopes: [...option.onboardingScopes] } : {},

216-

{ source: `runtime` as const },

217-

),

218-

);

219-

for (const contribution of runtimeContributions) {

220-

seenOptionValues.add(contribution.option.value);

221-

}

222150

const installCatalogContributions = resolveInstallCatalogProviderSetupFlowContributions({

223151

...params,

224152

scope,

225153

}).filter((contribution) => !seenOptionValues.has(contribution.option.value));

226-

return sortFlowContributionsByLabel([

227-

...manifestContributions,

228-

...runtimeContributions,

229-

...installCatalogContributions,

230-

]);

231-

}

232-233-

export function resolveProviderModelPickerFlowEntries(params?: {

234-

config?: OpenClawConfig;

235-

workspaceDir?: string;

236-

env?: NodeJS.ProcessEnv;

237-

}): ProviderModelPickerFlowEntry[] {

238-

return resolveProviderModelPickerFlowContributions(params).map(

239-

(contribution) => contribution.option,

240-

);

241-

}

242-243-

export function resolveProviderModelPickerFlowContributions(params?: {

244-

config?: OpenClawConfig;

245-

workspaceDir?: string;

246-

env?: NodeJS.ProcessEnv;

247-

}): ProviderModelPickerFlowContribution[] {

248-

const docsByProvider = resolveProviderDocsById(params ?? {});

249-

return sortFlowContributionsByLabel(

250-

resolveProviderModelPickerEntries(params ?? {}).map((entry) => {

251-

const providerId = entry.value.startsWith("provider-plugin:")

252-

? entry.value.slice("provider-plugin:".length).split(":")[0]

253-

: entry.value;

254-

return {

255-

id: `provider:model-picker:${entry.value}`,

256-

kind: "provider" as const,

257-

surface: "model-picker" as const,

258-

providerId,

259-

option: {

260-

value: entry.value,

261-

label: entry.label,

262-

...(entry.hint ? { hint: entry.hint } : {}),

263-

...(docsByProvider.get(providerId)

264-

? { docs: { path: docsByProvider.get(providerId)! } }

265-

: {}),

266-

},

267-

source: "runtime" as const,

268-

};

269-

}),

270-

);

154+

return sortFlowContributionsByLabel([...manifestContributions, ...installCatalogContributions]);

271155

}

272156273157

export { includesProviderFlowScope };