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

推荐订阅源

Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
雷峰网
雷峰网
J
Java Code Geeks
G
Google Developers Blog
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
Vercel News
Vercel News
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
Y
Y Combinator Blog
博客园_首页
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
A
About on SuperTechFans
B
Blog
Microsoft Security Blog
Microsoft Security Blog

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
perf(agents): avoid full setup registry for runtime alias...
vincentkoc · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -232,6 +232,33 @@ export function listCliRuntimeProviderIds(

232232

].toSorted();

233233

}

234234
235+

export function resolveCliRuntimeCanonicalProvider(params: {

236+

runtime: string | undefined;

237+

config?: OpenClawConfig;

238+

env?: NodeJS.ProcessEnv;

239+

includeSetupRegistry?: boolean;

240+

}): string | undefined {

241+

const runtime = normalizeBackendKey(params.runtime ?? "");

242+

if (!runtime) {

243+

return undefined;

244+

}

245+

const runtimeBinding = listCliRuntimeModelBackendBindings().find(

246+

(binding) => binding.runtime === runtime,

247+

);

248+

if (runtimeBinding) {

249+

return runtimeBinding.provider;

250+

}

251+

if (params.includeSetupRegistry !== true) {

252+

return undefined;

253+

}

254+

const setupBackend = cliBackendsDeps.resolvePluginSetupCliBackend({

255+

backend: runtime,

256+

config: params.config,

257+

env: params.env,

258+

});

259+

return setupBackend ? resolveCliBackendModelProvider(setupBackend.backend) : undefined;

260+

}

261+
235262

export function resolveCliRuntimeModelBackendBinding(params: {

236263

provider: string | undefined;

237264

runtime: string | undefined;

@@ -253,11 +280,22 @@ export function resolveCliRuntimeModelBackendBinding(params: {

253280

if (!includeSetupRegistry) {

254281

return undefined;

255282

}

256-

return listCliRuntimeModelBackendBindings({

283+

const setupBackend = cliBackendsDeps.resolvePluginSetupCliBackend({

284+

backend: runtime,

257285

config: params.config,

258286

env: params.env,

259-

includeSetupRegistry: true,

260-

}).find((binding) => binding.provider === provider && binding.runtime === runtime);

287+

});

288+

if (!setupBackend) {

289+

return undefined;

290+

}

291+

const setupProvider = resolveCliBackendModelProvider(setupBackend.backend);

292+

return setupProvider === provider

293+

? {

294+

provider,

295+

runtime,

296+

...(setupBackend.pluginId ? { pluginId: setupBackend.pluginId } : {}),

297+

}

298+

: undefined;

261299

}

262300
263301

export function isCliRuntimeModelBackendForProvider(params: {

Original file line numberDiff line numberDiff line change

@@ -185,4 +185,39 @@ describe("areRuntimeModelRefsEquivalent", () => {

185185

}),

186186

).toBe(true);

187187

});

188+
189+

it("resolves one setup runtime alias without loading the full setup registry", () => {

190+

cliBackendsTesting.setDepsForTest({

191+

resolvePluginSetupCliBackend: ({ backend }) =>

192+

backend === "claude-cli"

193+

? {

194+

pluginId: "anthropic",

195+

backend: {

196+

id: "claude-cli",

197+

modelProvider: "anthropic",

198+

config: { command: "claude" },

199+

bundleMcp: false,

200+

},

201+

}

202+

: undefined,

203+

resolvePluginSetupRegistry: () => {

204+

throw new Error("setup registry should not load for a single runtime alias");

205+

},

206+

resolveRuntimeCliBackends: () => [],

207+

});

208+
209+

expect(

210+

areRuntimeModelRefsEquivalent("anthropic/claude-opus-4-7", "claude-cli/claude-opus-4-7", {

211+

config: {

212+

agents: {

213+

defaults: {

214+

cliBackends: {

215+

"claude-cli": { command: "claude" },

216+

},

217+

},

218+

},

219+

},

220+

}),

221+

).toBe(true);

222+

});

188223

});

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import {

55

isCliRuntimeModelBackendForProvider,

66

listCliRuntimeModelBackendBindings,

77

listCliRuntimeProviderIds,

8+

resolveCliRuntimeCanonicalProvider,

89

resolveCliRuntimeModelBackendBinding,

910

} from "./cli-backends.js";

1011

import { resolveModelRuntimePolicy } from "./model-runtime-policy.js";

@@ -53,14 +54,14 @@ function canonicalizeRuntimeAliasProvider(

5354

provider: string,

5455

options: RuntimeAliasComparisonOptions = {},

5556

): string {

56-

const normalized = normalizeProviderId(provider);

5757

return (

58-

listCliRuntimeModelBackendBindings({

58+

resolveCliRuntimeCanonicalProvider({

59+

runtime: provider,

5960

config: options.config,

6061

env: options.env,

6162

includeSetupRegistry:

6263

options.includeSetupRegistry ?? (options.config !== undefined || options.env !== undefined),

63-

}).find((binding) => binding.runtime === normalized)?.provider ?? provider

64+

}) ?? provider

6465

);

6566

}

6667
Original file line numberDiff line numberDiff line change

@@ -155,6 +155,7 @@ describe("fallback-state", () => {

155155

fallbackNoticeActiveModel: "claude-cli/claude-opus-4-7",

156156

fallbackNoticeReason: "selected model unavailable",

157157

},

158+

cfg: {},

158159

});

159160
160161

expect(resolved.fallbackActive).toBe(false);

@@ -164,6 +165,47 @@ describe("fallback-state", () => {

164165

expect(resolved.nextState.activeModel).toBeUndefined();

165166

});

166167
168+

it("does not repeat runtime alias comparison when persisted fallback refs match", () => {

169+

let setupBackendLookups = 0;

170+

cliBackendsTesting.setDepsForTest({

171+

resolvePluginSetupCliBackend: ({ backend }) => {

172+

setupBackendLookups += 1;

173+

return backend === "claude-cli"

174+

? {

175+

pluginId: "anthropic",

176+

backend: {

177+

id: "claude-cli",

178+

modelProvider: "anthropic",

179+

config: { command: "claude" },

180+

bundleMcp: false,

181+

},

182+

}

183+

: undefined;

184+

},

185+

resolvePluginSetupRegistry: () => {

186+

throw new Error("full setup registry should not load for a single runtime alias");

187+

},

188+

resolveRuntimeCliBackends: () => [],

189+

});

190+
191+

const resolved = resolveFallbackTransition({

192+

selectedProvider: "anthropic",

193+

selectedModel: "claude-opus-4-7",

194+

activeProvider: "claude-cli",

195+

activeModel: "claude-opus-4-7",

196+

attempts: [],

197+

state: {

198+

fallbackNoticeSelectedModel: "anthropic/claude-opus-4-7",

199+

fallbackNoticeActiveModel: "claude-cli/claude-opus-4-7",

200+

fallbackNoticeReason: "selected model unavailable",

201+

},

202+

cfg: {},

203+

});

204+
205+

expect(resolved.fallbackActive).toBe(false);

206+

expect(setupBackendLookups).toBe(2);

207+

});

208+
167209

it("does not build a fallback notice for equivalent CLI runtime aliases", () => {

168210

registerAnthropicCliBackendForTest();

169211
Original file line numberDiff line numberDiff line change

@@ -166,15 +166,20 @@ export function resolveFallbackTransition(params: {

166166

fallbackActive &&

167167

(previousState.selectedModel !== selectedModelRef ||

168168

previousState.activeModel !== activeModelRef);

169-

const previousStateWasRealFallback = Boolean(

170-

previousState.selectedModel &&

171-

previousState.activeModel &&

172-

!areRuntimeModelRefsEquivalent(

173-

previousState.selectedModel,

174-

previousState.activeModel,

175-

comparisonOptions,

176-

),

177-

);

169+

const previousStateMatchesCurrent =

170+

previousState.selectedModel === selectedModelRef &&

171+

previousState.activeModel === activeModelRef;

172+

const previousStateWasRealFallback = previousStateMatchesCurrent

173+

? fallbackActive

174+

: Boolean(

175+

previousState.selectedModel &&

176+

previousState.activeModel &&

177+

!areRuntimeModelRefsEquivalent(

178+

previousState.selectedModel,

179+

previousState.activeModel,

180+

comparisonOptions,

181+

),

182+

);

178183

const fallbackCleared = !fallbackActive && previousStateWasRealFallback;

179184

const reasonSummary = buildFallbackReasonSummary(params.attempts);

180185

const attemptSummaries = buildFallbackAttemptSummaries(params.attempts);