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

推荐订阅源

博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
美团技术团队
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
有赞技术团队
有赞技术团队
GbyAI
GbyAI
宝玉的分享
宝玉的分享
腾讯CDC
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
月光博客
月光博客
MyScale Blog
MyScale Blog
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | 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(plugins): reuse compatible metadata snapshots · open...
steipete · 2026-05-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ Docs: https://docs.openclaw.ai

1414

- OpenAI/Codex media: advertise Codex audio transcription in runtime and manifest metadata and route active Codex chat models to the OpenAI transcription default instead of sending chat model ids to audio transcription. Thanks @vincentkoc.

1515

- Dependencies: refresh runtime and provider packages including Pi 0.73.0, ACPX adapters, OpenAI, Anthropic, Slack, and TypeScript native preview, while keeping the Bedrock runtime installer override pinned below the Windows ARM Node 24 npm resolver failure.

1616

- Agents/performance: pass the resolved workspace through BTW, compaction, embedded-run model generation, and PDF model setup so explicit agent-dir model refreshes can reuse the current workspace-scoped plugin metadata snapshot instead of falling back to cold plugin metadata scans. (#77519, #77532)

17+

- Plugins/performance: let unscoped model catalog and manifest-contract readers reuse the current workspace-compatible plugin metadata snapshot, avoiding repeated cold plugin metadata scans on hot control-plane paths while preserving env/config/workspace compatibility checks. (#77519, #77532)

1718

- Config/plugin auto-enable: prefer the claiming plugin manifest id over a built-in channel alias when auto-allowlisting a configured channel, so WeCom/Yuanbao-style aliases resolve to the installed plugin id. Thanks @Beandon13.

1819

- Plugins/active-memory: skip session-store channel entries that contain `:` when resolving the recall subagent's channel, so QQ c2c agent IDs (e.g. `c2c:10D4F7C2…`) and other scoped conversation IDs do not reach bundled-plugin `dirName` validation and crash the recall run. The same guard already applied to explicit `channelId` params (#76704); this extends it to store-derived channels. (#77396) Thanks @hclsys.

1920

- Secrets/external channel contracts: also look in `<rootDir>/dist/` when resolving the `secret-contract-api` sidecar, so npm-published externalized channel plugins (e.g. `@openclaw/discord` since 2026.5.2) whose compiled artifacts live under `dist/` actually contribute their channel SecretRef contracts to the runtime snapshot. Without this, env-backed `channels.discord.token` SecretRefs silently failed to resolve at gateway start on 2026.5.3, leaving the channel `not configured` even though #76449 had landed the generic external-contract loader. Thanks @mogglemoss.

Original file line numberDiff line numberDiff line change

@@ -662,6 +662,38 @@ describe("loadModelCatalog", () => {

662662

]);

663663

});

664664
665+

it("lets read-only manifest catalog reuse the current workspace-scoped snapshot", () => {

666+

loadManifestModelCatalog({

667+

config: {} as OpenClawConfig,

668+

fallbackToMetadataScan: false,

669+

});

670+
671+

expect(currentPluginMetadataSnapshotMock).toHaveBeenCalledWith(

672+

expect.objectContaining({

673+

allowWorkspaceScopedSnapshot: true,

674+

}),

675+

);

676+

expect(loadPluginMetadataSnapshotMock).not.toHaveBeenCalled();

677+

});

678+
679+

it("passes explicit env when checking current manifest catalog snapshot compatibility", () => {

680+

const env = { HOME: "/tmp/openclaw-model-catalog-env" } as NodeJS.ProcessEnv;

681+
682+

loadManifestModelCatalog({

683+

config: {} as OpenClawConfig,

684+

env,

685+

fallbackToMetadataScan: false,

686+

});

687+
688+

expect(currentPluginMetadataSnapshotMock).toHaveBeenCalledWith(

689+

expect.objectContaining({

690+

env,

691+

allowWorkspaceScopedSnapshot: true,

692+

}),

693+

);

694+

expect(loadPluginMetadataSnapshotMock).not.toHaveBeenCalled();

695+

});

696+
665697

it("dedupes supplemental models against registry entries", async () => {

666698

mockSingleOpenAiCatalogModel();

667699

augmentCatalogMock.mockResolvedValueOnce([

Original file line numberDiff line numberDiff line change

@@ -123,7 +123,9 @@ export function loadManifestModelCatalog(params: {

123123

}): ModelCatalogEntry[] {

124124

const snapshot = getCurrentPluginMetadataSnapshot({

125125

config: params.config,

126+

env: params.env,

126127

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

128+

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

127129

});

128130

const resolvedSnapshot =

129131

snapshot ??

Original file line numberDiff line numberDiff line change

@@ -87,6 +87,19 @@ describe("current plugin metadata snapshot", () => {

8787

expect(getCurrentPluginMetadataSnapshot({ config })).toBeUndefined();

8888

});

8989
90+

it("can opt into reusing the stored workspace scope for unscoped control-plane readers", () => {

91+

const config = { plugins: { allow: ["demo"] } };

92+

const snapshot = createSnapshot({ config, workspaceDir: "/workspace/a" });

93+

setCurrentPluginMetadataSnapshot(snapshot, { config });

94+
95+

expect(

96+

getCurrentPluginMetadataSnapshot({

97+

config,

98+

allowWorkspaceScopedSnapshot: true,

99+

}),

100+

).toBe(snapshot);

101+

});

102+
90103

it("rejects a current snapshot when plugin load paths change", () => {

91104

const config = { plugins: { load: { paths: ["/plugins/one"] } } };

92105

const snapshot = createSnapshot({ config });

Original file line numberDiff line numberDiff line change

@@ -49,6 +49,7 @@ export function getCurrentPluginMetadataSnapshot(

4949

config?: OpenClawConfig;

5050

env?: NodeJS.ProcessEnv;

5151

workspaceDir?: string;

52+

allowWorkspaceScopedSnapshot?: boolean;

5253

} = {},

5354

): PluginMetadataSnapshot | undefined {

5455

const { snapshot: rawSnapshot, configFingerprint } = getCurrentPluginMetadataSnapshotState();

@@ -62,12 +63,15 @@ export function getCurrentPluginMetadataSnapshot(

6263

) {

6364

return undefined;

6465

}

66+

const requestedWorkspaceDir =

67+

params.workspaceDir ??

68+

(params.allowWorkspaceScopedSnapshot === true ? snapshot.workspaceDir : undefined);

6569

if (params.config) {

6670

const requestedConfigFingerprint = resolvePluginMetadataControlPlaneFingerprint(params.config, {

6771

env: params.env,

6872

index: snapshot.index,

6973

policyHash: snapshot.policyHash,

70-

workspaceDir: params.workspaceDir,

74+

workspaceDir: requestedWorkspaceDir,

7175

});

7276

if (configFingerprint && configFingerprint !== requestedConfigFingerprint) {

7377

return undefined;

@@ -76,12 +80,12 @@ export function getCurrentPluginMetadataSnapshot(

7680

return undefined;

7781

}

7882

}

79-

if (snapshot.workspaceDir !== undefined && params.workspaceDir === undefined) {

83+

if (snapshot.workspaceDir !== undefined && requestedWorkspaceDir === undefined) {

8084

return undefined;

8185

}

8286

if (

83-

params.workspaceDir !== undefined &&

84-

(snapshot.workspaceDir ?? "") !== (params.workspaceDir ?? "")

87+

requestedWorkspaceDir !== undefined &&

88+

(snapshot.workspaceDir ?? "") !== (requestedWorkspaceDir ?? "")

8589

) {

8690

return undefined;

8791

}

Original file line numberDiff line numberDiff line change

@@ -46,6 +46,51 @@ describe("loadManifestContractSnapshot", () => {

4646

expect(mocks.loadPluginMetadataSnapshot).not.toHaveBeenCalled();

4747

});

4848
49+

it("opts unscoped callers into the stored workspace-scoped snapshot", () => {

50+

const env = { HOME: "/home/snapshot" } as NodeJS.ProcessEnv;

51+

const current = {

52+

index: { plugins: [] },

53+

plugins: [],

54+

};

55+

mocks.getCurrentPluginMetadataSnapshot.mockReturnValue(current);

56+
57+

expect(loadManifestContractSnapshot({ config: {}, env })).toEqual({

58+

index: current.index,

59+

plugins: current.plugins,

60+

});

61+
62+

expect(mocks.getCurrentPluginMetadataSnapshot).toHaveBeenCalledWith({

63+

config: {},

64+

env,

65+

allowWorkspaceScopedSnapshot: true,

66+

});

67+

expect(mocks.loadPluginMetadataSnapshot).not.toHaveBeenCalled();

68+

});

69+
70+

it("normalizes omitted config before checking unscoped snapshot compatibility", () => {

71+

const env = { HOME: "/home/default-config" } as NodeJS.ProcessEnv;

72+

const snapshot = {

73+

index: { plugins: [{ pluginId: "demo" }] },

74+

plugins: [{ id: "demo" }],

75+

};

76+

mocks.loadPluginMetadataSnapshot.mockReturnValue(snapshot);

77+
78+

expect(loadManifestContractSnapshot({ env })).toEqual({

79+

index: snapshot.index,

80+

plugins: snapshot.plugins,

81+

});

82+
83+

expect(mocks.getCurrentPluginMetadataSnapshot).toHaveBeenCalledWith({

84+

config: {},

85+

env,

86+

allowWorkspaceScopedSnapshot: true,

87+

});

88+

expect(mocks.loadPluginMetadataSnapshot).toHaveBeenCalledWith({

89+

config: {},

90+

env,

91+

});

92+

});

93+
4994

it("falls back to the shared metadata snapshot loader", () => {

5095

const env = { HOME: "/home/fallback" } as NodeJS.ProcessEnv;

5196

const snapshot = {

Original file line numberDiff line numberDiff line change

@@ -96,17 +96,19 @@ export function loadManifestMetadataSnapshot(params: {

9696

workspaceDir?: string;

9797

env?: NodeJS.ProcessEnv;

9898

}): PluginMetadataSnapshot {

99+

const config = params.config ?? {};

99100

const env = params.env ?? process.env;

100101

const current = getCurrentPluginMetadataSnapshot({

101-

config: params.config,

102+

config,

102103

env,

103104

...(params.workspaceDir ? { workspaceDir: params.workspaceDir } : {}),

105+

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

104106

});

105107

if (current) {

106108

return current;

107109

}

108110

return loadPluginMetadataSnapshot({

109-

config: params.config ?? {},

111+

config,

110112

env,

111113

...(params.workspaceDir ? { workspaceDir: params.workspaceDir } : {}),

112114

});