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

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale 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
fix(providers): cache targeted runtime hook resolution · ...
obviyus · 2026-05-01 · via Recent Commits to openclaw:main

@@ -14,6 +14,22 @@ import type {

1414

ProviderWrapStreamFnContext,

1515

} from "./types.js";

161617+

const providerRuntimePluginCache = new WeakMap<

18+

OpenClawConfig,

19+

Map<string, ProviderPlugin | null>

20+

>();

21+22+

type ProviderRuntimePluginLookupParams = {

23+

provider: string;

24+

config?: OpenClawConfig;

25+

workspaceDir?: string;

26+

env?: NodeJS.ProcessEnv;

27+

applyAutoEnable?: boolean;

28+

bundledProviderAllowlistCompat?: boolean;

29+

bundledProviderVitestCompat?: boolean;

30+

installBundledRuntimeDeps?: boolean;

31+

};

32+1733

function matchesProviderId(provider: ProviderPlugin, providerId: string): boolean {

1834

const normalized = normalizeProviderId(providerId);

1935

if (!normalized) {

@@ -27,6 +43,33 @@ function matchesProviderId(provider: ProviderPlugin, providerId: string): boolea

2743

);

2844

}

294546+

function resolveProviderRuntimePluginCacheKey(params: ProviderRuntimePluginLookupParams): string {

47+

return JSON.stringify({

48+

provider: normalizeLowercaseStringOrEmpty(params.provider),

49+

plugins: params.config?.plugins,

50+

models: params.config?.models?.providers,

51+

workspaceDir: params.workspaceDir ?? "",

52+

applyAutoEnable: params.applyAutoEnable ?? null,

53+

bundledProviderAllowlistCompat: params.bundledProviderAllowlistCompat ?? null,

54+

bundledProviderVitestCompat: params.bundledProviderVitestCompat ?? null,

55+

installBundledRuntimeDeps: params.installBundledRuntimeDeps ?? null,

56+

});

57+

}

58+59+

function resolveProviderRuntimePluginCache(

60+

params: ProviderRuntimePluginLookupParams,

61+

): Map<string, ProviderPlugin | null> | undefined {

62+

if (!params.config || (params.env && params.env !== process.env)) {

63+

return undefined;

64+

}

65+

let cache = providerRuntimePluginCache.get(params.config);

66+

if (!cache) {

67+

cache = new Map();

68+

providerRuntimePluginCache.set(params.config, cache);

69+

}

70+

return cache;

71+

}

72+3073

function matchesProviderLiteralId(provider: ProviderPlugin, providerId: string): boolean {

3174

const normalized = normalizeLowercaseStringOrEmpty(providerId);

3275

return !!normalized && normalizeLowercaseStringOrEmpty(provider.id) === normalized;

@@ -51,7 +94,6 @@ export function resolveProviderPluginsForHooks(params: {

5194

workspaceDir,

5295

env,

5396

activate: false,

54-

cache: false,

5597

applyAutoEnable: params.applyAutoEnable,

5698

bundledProviderAllowlistCompat: params.bundledProviderAllowlistCompat ?? true,

5799

bundledProviderVitestCompat: params.bundledProviderVitestCompat ?? true,

@@ -65,7 +107,6 @@ export function resolveProviderPluginsForHooks(params: {

65107

workspaceDir,

66108

env,

67109

activate: false,

68-

cache: false,

69110

applyAutoEnable: params.applyAutoEnable,

70111

bundledProviderAllowlistCompat: params.bundledProviderAllowlistCompat ?? true,

71112

bundledProviderVitestCompat: params.bundledProviderVitestCompat ?? true,

@@ -74,21 +115,19 @@ export function resolveProviderPluginsForHooks(params: {

74115

return resolved;

75116

}

7611777-

export function resolveProviderRuntimePlugin(params: {

78-

provider: string;

79-

config?: OpenClawConfig;

80-

workspaceDir?: string;

81-

env?: NodeJS.ProcessEnv;

82-

applyAutoEnable?: boolean;

83-

bundledProviderAllowlistCompat?: boolean;

84-

bundledProviderVitestCompat?: boolean;

85-

installBundledRuntimeDeps?: boolean;

86-

}): ProviderPlugin | undefined {

118+

export function resolveProviderRuntimePlugin(

119+

params: ProviderRuntimePluginLookupParams,

120+

): ProviderPlugin | undefined {

121+

const cache = resolveProviderRuntimePluginCache(params);

122+

const cacheKey = cache ? resolveProviderRuntimePluginCacheKey(params) : "";

123+

if (cache?.has(cacheKey)) {

124+

return cache.get(cacheKey) ?? undefined;

125+

}

87126

const apiOwnerHint = resolveProviderConfigApiOwnerHint({

88127

provider: params.provider,

89128

config: params.config,

90129

});

91-

return resolveProviderPluginsForHooks({

130+

const plugin = resolveProviderPluginsForHooks({

92131

config: params.config,

93132

workspaceDir: params.workspaceDir ?? getActivePluginRegistryWorkspaceDirFromState(),

94133

env: params.env,

@@ -105,6 +144,8 @@ export function resolveProviderRuntimePlugin(params: {

105144

}

106145

return matchesProviderId(plugin, params.provider);

107146

});

147+

cache?.set(cacheKey, plugin ?? null);

148+

return plugin;

108149

}

109150110151

export function resolveProviderHookPlugin(params: {

@@ -140,7 +181,9 @@ export function resolveProviderExtraParamsForTransport(params: {

140181

env?: NodeJS.ProcessEnv;

141182

context: ProviderExtraParamsForTransportContext;

142183

}) {

143-

return resolveProviderHookPlugin(params)?.extraParamsForTransport?.(params.context) ?? undefined;

184+

return (

185+

resolveProviderRuntimePlugin(params)?.extraParamsForTransport?.(params.context) ?? undefined

186+

);

144187

}

145188146189

export function resolveProviderAuthProfileId(params: {

@@ -150,7 +193,7 @@ export function resolveProviderAuthProfileId(params: {

150193

env?: NodeJS.ProcessEnv;

151194

context: ProviderResolveAuthProfileIdContext;

152195

}): string | undefined {

153-

const resolved = resolveProviderHookPlugin(params)?.resolveAuthProfileId?.(params.context);

196+

const resolved = resolveProviderRuntimePlugin(params)?.resolveAuthProfileId?.(params.context);

154197

return typeof resolved === "string" && resolved.trim() ? resolved.trim() : undefined;

155198

}

156199

@@ -171,5 +214,5 @@ export function wrapProviderStreamFn(params: {

171214

env?: NodeJS.ProcessEnv;

172215

context: ProviderWrapStreamFnContext;

173216

}) {

174-

return resolveProviderHookPlugin(params)?.wrapStreamFn?.(params.context) ?? undefined;

217+

return resolveProviderRuntimePlugin(params)?.wrapStreamFn?.(params.context) ?? undefined;

175218

}