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

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

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: avoid registry loads in hot tests · openclaw/opencl...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

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

1-

import { loadPluginManifestRegistryForPluginRegistry } from "../plugins/plugin-registry.js";

1+

import { listOpenClawPluginManifestMetadata } from "../plugins/manifest-metadata-scan.js";

22

import {

3+

normalizeLowercaseStringOrEmpty,

34

normalizeOptionalLowercaseString,

45

normalizeOptionalString,

56

} from "../shared/string-coerce.js";

@@ -224,57 +225,123 @@ function isManifestProviderEndpointClass(value: string): value is ProviderEndpoi

224225

return MANIFEST_PROVIDER_ENDPOINT_CLASSES.has(value as ProviderEndpointClass);

225226

}

226227228+

function isRecord(value: unknown): value is Record<string, unknown> {

229+

return Boolean(value) && typeof value === "object" && !Array.isArray(value);

230+

}

231+232+

function normalizeStringList(value: unknown): string[] {

233+

if (!Array.isArray(value)) {

234+

return [];

235+

}

236+

return value

237+

.map((entry) => normalizeOptionalString(entry))

238+

.filter((entry): entry is string => entry !== undefined);

239+

}

240+241+

function readManifestProviderEndpoints(

242+

manifest: Record<string, unknown>,

243+

): ManifestProviderEndpointCacheEntry[] {

244+

if (!Array.isArray(manifest.providerEndpoints)) {

245+

return [];

246+

}

247+

const entries: ManifestProviderEndpointCacheEntry[] = [];

248+

for (const rawEndpoint of manifest.providerEndpoints) {

249+

if (!isRecord(rawEndpoint)) {

250+

continue;

251+

}

252+

const endpointClassRaw = normalizeOptionalString(rawEndpoint.endpointClass);

253+

if (!endpointClassRaw || !isManifestProviderEndpointClass(endpointClassRaw)) {

254+

continue;

255+

}

256+

entries.push({

257+

endpointClass: endpointClassRaw,

258+

hosts: normalizeStringList(rawEndpoint.hosts).map((host) => host.toLowerCase()),

259+

hostSuffixes: normalizeStringList(rawEndpoint.hostSuffixes).map((host) => host.toLowerCase()),

260+

normalizedBaseUrls: normalizeStringList(rawEndpoint.baseUrls)

261+

.map((baseUrl) => normalizeComparableBaseUrl(baseUrl))

262+

.filter((baseUrl): baseUrl is string => baseUrl !== undefined),

263+

...(normalizeOptionalString(rawEndpoint.googleVertexRegion)

264+

? { googleVertexRegion: normalizeOptionalString(rawEndpoint.googleVertexRegion) }

265+

: {}),

266+

...(normalizeOptionalString(rawEndpoint.googleVertexRegionHostSuffix)

267+

? {

268+

googleVertexRegionHostSuffix: normalizeOptionalString(

269+

rawEndpoint.googleVertexRegionHostSuffix,

270+

),

271+

}

272+

: {}),

273+

});

274+

}

275+

return entries;

276+

}

277+278+

function readManifestProviderRequests(

279+

manifest: Record<string, unknown>,

280+

): Array<[string, ManifestProviderRequestCacheEntry]> {

281+

const providerRequest = manifest.providerRequest;

282+

if (!isRecord(providerRequest) || !isRecord(providerRequest.providers)) {

283+

return [];

284+

}

285+

const entries: Array<[string, ManifestProviderRequestCacheEntry]> = [];

286+

for (const [providerRaw, requestRaw] of Object.entries(providerRequest.providers)) {

287+

if (!isRecord(requestRaw)) {

288+

continue;

289+

}

290+

const provider = normalizeLowercaseStringOrEmpty(providerRaw);

291+

if (!provider) {

292+

continue;

293+

}

294+

const compatibilityFamily =

295+

normalizeOptionalString(requestRaw.compatibilityFamily) === "moonshot"

296+

? "moonshot"

297+

: undefined;

298+

const supportsStreamingUsage = isRecord(requestRaw.openAICompletions)

299+

? requestRaw.openAICompletions.supportsStreamingUsage

300+

: undefined;

301+

entries.push([

302+

provider,

303+

{

304+

...(normalizeOptionalString(requestRaw.family)

305+

? { family: normalizeOptionalString(requestRaw.family) }

306+

: {}),

307+

...(compatibilityFamily ? { compatibilityFamily } : {}),

308+

...(typeof supportsStreamingUsage === "boolean"

309+

? { supportsOpenAICompletionsStreamingUsageCompat: supportsStreamingUsage }

310+

: {}),

311+

},

312+

]);

313+

}

314+

return entries;

315+

}

316+317+

function collectManifestProviderEndpoints(): ManifestProviderEndpointCacheEntry[] {

318+

const entries: ManifestProviderEndpointCacheEntry[] = [];

319+

for (const { manifest } of listOpenClawPluginManifestMetadata()) {

320+

entries.push(...readManifestProviderEndpoints(manifest));

321+

}

322+

return entries;

323+

}

324+325+

function collectManifestProviderRequests(): Map<string, ManifestProviderRequestCacheEntry> {

326+

const entries = new Map<string, ManifestProviderRequestCacheEntry>();

327+

for (const { manifest } of listOpenClawPluginManifestMetadata()) {

328+

for (const [provider, request] of readManifestProviderRequests(manifest)) {

329+

entries.set(provider, request);

330+

}

331+

}

332+

return entries;

333+

}

334+227335

function loadManifestProviderEndpointCache(): ManifestProviderEndpointCacheEntry[] {

228336

if (!manifestProviderEndpointCache) {

229-

const registry = loadPluginManifestRegistryForPluginRegistry({ includeDisabled: true });

230-

const entries: ManifestProviderEndpointCacheEntry[] = [];

231-

for (const plugin of registry.plugins) {

232-

for (const endpoint of plugin.providerEndpoints ?? []) {

233-

if (!isManifestProviderEndpointClass(endpoint.endpointClass)) {

234-

continue;

235-

}

236-

entries.push({

237-

endpointClass: endpoint.endpointClass,

238-

hosts: (endpoint.hosts ?? []).map((host) => host.toLowerCase()),

239-

hostSuffixes: (endpoint.hostSuffixes ?? []).map((host) => host.toLowerCase()),

240-

normalizedBaseUrls: (endpoint.baseUrls ?? [])

241-

.map((baseUrl) => normalizeComparableBaseUrl(baseUrl))

242-

.filter((baseUrl): baseUrl is string => baseUrl !== undefined),

243-

...(endpoint.googleVertexRegion

244-

? { googleVertexRegion: endpoint.googleVertexRegion }

245-

: {}),

246-

...(endpoint.googleVertexRegionHostSuffix

247-

? { googleVertexRegionHostSuffix: endpoint.googleVertexRegionHostSuffix }

248-

: {}),

249-

});

250-

}

251-

}

252-

manifestProviderEndpointCache = entries;

337+

manifestProviderEndpointCache = collectManifestProviderEndpoints();

253338

}

254339

return manifestProviderEndpointCache;

255340

}

256341257342

function loadManifestProviderRequestCache(): Map<string, ManifestProviderRequestCacheEntry> {

258343

if (!manifestProviderRequestCache) {

259-

const registry = loadPluginManifestRegistryForPluginRegistry({ includeDisabled: true });

260-

const entries = new Map<string, ManifestProviderRequestCacheEntry>();

261-

for (const plugin of registry.plugins) {

262-

for (const [provider, request] of Object.entries(plugin.providerRequest?.providers ?? {})) {

263-

entries.set(provider, {

264-

...(request.family ? { family: request.family } : {}),

265-

...(request.compatibilityFamily

266-

? { compatibilityFamily: request.compatibilityFamily }

267-

: {}),

268-

...(request.openAICompletions?.supportsStreamingUsage !== undefined

269-

? {

270-

supportsOpenAICompletionsStreamingUsageCompat:

271-

request.openAICompletions.supportsStreamingUsage,

272-

}

273-

: {}),

274-

});

275-

}

276-

}

277-

manifestProviderRequestCache = entries;

344+

manifestProviderRequestCache = collectManifestProviderRequests();

278345

}

279346

return manifestProviderRequestCache;

280347

}