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

推荐订阅源

爱范儿
爱范儿
量子位
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
J
Java Code Geeks
B
Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
Blog — PlanetScale
Blog — PlanetScale
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
A
About on SuperTechFans
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
H
Help Net Security
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
L
LangChain 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: reuse metadata for auth lookups · openclaw/openclaw...
shakkernerd · 2026-05-07 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -78,6 +78,7 @@ describe("resolveEnvApiKey provider auth aliases", () => {

7878

EXTERNAL_CLOUD_API_KEY: "secret",

7979

},

8080

workspaceDir: "/workspace",

81+

allowWorkspaceScopedSnapshot: true,

8182

});

8283

});

8384

});

Original file line numberDiff line numberDiff line change

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

11

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

2+

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

23

import { getCurrentPluginMetadataSnapshot } from "../plugins/current-plugin-metadata-snapshot.js";

34

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

45

import {

@@ -121,21 +122,24 @@ export function resolveProviderAuthAliasMap(

121122

}

122123

const config = params?.config ?? {};

123124

const snapshot =

124-

params?.workspaceDir !== undefined

125-

? (getCurrentPluginMetadataSnapshot({

126-

config,

127-

workspaceDir: params.workspaceDir,

128-

env,

129-

}) ??

130-

loadPluginMetadataSnapshot({

131-

config,

132-

workspaceDir: params.workspaceDir,

133-

env,

134-

}))

135-

: loadPluginMetadataSnapshot({

136-

config,

125+

getCurrentPluginMetadataSnapshot({

126+

config,

127+

...(params?.workspaceDir !== undefined ? { workspaceDir: params.workspaceDir } : {}),

128+

env,

129+

allowWorkspaceScopedSnapshot: true,

130+

}) ??

131+

(normalizePluginsConfig(config.plugins).loadPaths.length === 0

132+

? getCurrentPluginMetadataSnapshot({

133+

...(params?.workspaceDir !== undefined ? { workspaceDir: params.workspaceDir } : {}),

137134

env,

138-

});

135+

allowWorkspaceScopedSnapshot: true,

136+

})

137+

: undefined) ??

138+

loadPluginMetadataSnapshot({

139+

config,

140+

...(params?.workspaceDir !== undefined ? { workspaceDir: params.workspaceDir } : {}),

141+

env,

142+

});

139143

const preferredAliases = new Map<string, ProviderAuthAliasCandidate>();

140144

const aliases: Record<string, string> = Object.create(null) as Record<string, string>;

141145

for (const plugin of snapshot.plugins) {

Original file line numberDiff line numberDiff line change

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

11

import { resolveProviderAuthAliasMap } from "../agents/provider-auth-aliases.js";

22

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

3+

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

34

import { getCurrentPluginMetadataSnapshot } from "../plugins/current-plugin-metadata-snapshot.js";

45

import { isInstalledPluginEnabled } from "../plugins/installed-plugin-index.js";

56

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

@@ -128,10 +129,21 @@ function resolveProviderMetadataSnapshot(

128129

config,

129130

env,

130131

...(params?.workspaceDir !== undefined ? { workspaceDir: params.workspaceDir } : {}),

132+

allowWorkspaceScopedSnapshot: true,

131133

});

132134

if (current) {

133135

return current;

134136

}

137+

if (normalizePluginsConfig(config.plugins).loadPaths.length === 0) {

138+

const unscopedCurrent = getCurrentPluginMetadataSnapshot({

139+

env,

140+

...(params?.workspaceDir !== undefined ? { workspaceDir: params.workspaceDir } : {}),

141+

allowWorkspaceScopedSnapshot: true,

142+

});

143+

if (unscopedCurrent) {

144+

return unscopedCurrent;

145+

}

146+

}

135147

return loadPluginMetadataSnapshot({

136148

config,

137149

workspaceDir: params?.workspaceDir,

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

import { getCurrentPluginMetadataSnapshot } from "../plugins/current-plugin-metadata-snapshot.js";

12

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

23

import { loadPluginMetadataSnapshot } from "../plugins/plugin-metadata-snapshot.js";

34

import { loadChannelSecretContractApiForRecord } from "./channel-contract-api.js";

@@ -445,11 +446,19 @@ function loadSecretTargetRegistryFromPluginMetadata(params: {

445446

env: NodeJS.ProcessEnv;

446447

preferPersisted?: boolean;

447448

}): SecretTargetRegistryEntry[] {

448-

const plugins = loadPluginMetadataSnapshot({

449-

config: {},

450-

env: params.env,

451-

...(params.preferPersisted !== undefined ? { preferPersisted: params.preferPersisted } : {}),

452-

}).plugins;

449+

const plugins =

450+

(params.preferPersisted === false

451+

? undefined

452+

: getCurrentPluginMetadataSnapshot({

453+

env: params.env,

454+

allowWorkspaceScopedSnapshot: true,

455+

})

456+

)?.plugins ??

457+

loadPluginMetadataSnapshot({

458+

config: {},

459+

env: params.env,

460+

...(params.preferPersisted !== undefined ? { preferPersisted: params.preferPersisted } : {}),

461+

}).plugins;

453462

const bundledPlugins = plugins.filter((record) => record.origin === "bundled");

454463

const channelPlugins = plugins.filter((record) => record.channels.length > 0);

455464

return [