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

推荐订阅源

云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 【当耐特】
H
Help Net Security
腾讯CDC
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
Y
Y Combinator Blog
C
Check Point 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: reduce runtime cache churn · openclaw/openclaw@5b6d03e
steipete · 2026-05-26 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import fs from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

44

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

5+

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

56

import {

67

clearCurrentPluginMetadataSnapshot,

78

resolvePluginMetadataControlPlaneFingerprint,

@@ -11,6 +12,7 @@ import { resolveInstalledPluginIndexPolicyHash } from "./installed-plugin-index-

1112

import type { InstalledPluginIndex } from "./installed-plugin-index.js";

1213

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

1314

import { normalizeProviderModelIdWithManifest } from "./manifest-model-id-normalization.js";

15+

import { clearPluginMetadataLifecycleCaches } from "./plugin-metadata-lifecycle.js";

1416

import type { PluginMetadataSnapshot } from "./plugin-metadata-snapshot.js";

1517

import { createEmptyPluginRegistry } from "./registry-empty.js";

1618

import { resetPluginRuntimeStateForTest, setActivePluginRegistry } from "./runtime.js";

@@ -87,8 +89,10 @@ function createCurrentSnapshot(params: {

8789

manifestHash: string;

8890

prefix: string;

8991

workspaceDir?: string;

92+

config?: OpenClawConfig;

9093

}): PluginMetadataSnapshot {

91-

const policyHash = resolveInstalledPluginIndexPolicyHash({});

94+

const config = params.config ?? {};

95+

const policyHash = resolveInstalledPluginIndexPolicyHash(config);

9296

const index: InstalledPluginIndex = {

9397

version: 1,

9498

hostContractVersion: "test-host",

@@ -119,15 +123,12 @@ function createCurrentSnapshot(params: {

119123

};

120124

return {

121125

policyHash,

122-

configFingerprint: resolvePluginMetadataControlPlaneFingerprint(

123-

{},

124-

{

125-

env: process.env,

126-

index,

127-

policyHash,

128-

workspaceDir: params.workspaceDir,

129-

},

130-

),

126+

configFingerprint: resolvePluginMetadataControlPlaneFingerprint(config, {

127+

env: process.env,

128+

index,

129+

policyHash,

130+

workspaceDir: params.workspaceDir,

131+

}),

131132

workspaceDir: params.workspaceDir,

132133

index,

133134

registryDiagnostics: [],

@@ -153,6 +154,17 @@ function normalizeDemoModel(modelId = "demo-model"): string | undefined {

153154

});

154155

}

155156157+

function normalizeDemoModelWithEnv(

158+

env: NodeJS.ProcessEnv,

159+

modelId = "demo-model",

160+

): string | undefined {

161+

return normalizeProviderModelIdWithManifest({

162+

provider: "demo",

163+

env,

164+

context: { provider: "demo", modelId },

165+

});

166+

}

167+156168

describe("manifest model id normalization", () => {

157169

beforeEach(() => {

158170

resetPluginRuntimeStateForTest();

@@ -234,6 +246,45 @@ describe("manifest model id normalization", () => {

234246

expect(normalizeDemoModel()).toBe("alpha/demo-model");

235247

});

236248249+

it("reuses current metadata when callers omit config", () => {

250+

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

251+

setCurrentPluginMetadataSnapshot(

252+

createCurrentSnapshot({

253+

manifestHash: "alpha",

254+

prefix: "alpha",

255+

config,

256+

}),

257+

{ config, env: process.env },

258+

);

259+260+

expect(normalizeDemoModel()).toBe("alpha/demo-model");

261+

});

262+263+

it("validates explicit env before reusing current metadata", () => {

264+

setCurrentPluginMetadataSnapshot(

265+

createCurrentSnapshot({

266+

manifestHash: "alpha",

267+

prefix: "alpha",

268+

}),

269+

{ config: {}, env: process.env },

270+

);

271+272+

const stateDir = makeTempDir();

273+

const pluginDir = path.join(stateDir, "extensions", "normalizer");

274+

writeInstallIndex({ stateDir, pluginDir });

275+

writeNormalizerManifest({ pluginDir, prefix: "bravo" });

276+277+

const env = {

278+

...process.env,

279+

OPENCLAW_STATE_DIR: stateDir,

280+

OPENCLAW_HOME: undefined,

281+

OPENCLAW_DISABLE_BUNDLED_PLUGINS: "1",

282+

OPENCLAW_BUNDLED_PLUGINS_DIR: undefined,

283+

};

284+285+

expect(normalizeDemoModelWithEnv(env)).toBe("bravo/demo-model");

286+

});

287+237288

it("reflects manifest edits and state-dir changes on the next lookup", () => {

238289

const stateDirA = makeTempDir();

239290

const pluginDirA = path.join(stateDirA, "extensions", "normalizer");

@@ -248,6 +299,7 @@ describe("manifest model id normalization", () => {

248299

expect(normalizeDemoModel()).toBe("alpha/demo-model");

249300250301

writeNormalizerManifest({ pluginDir: pluginDirA, prefix: "bravo-local" });

302+

clearPluginMetadataLifecycleCaches();

251303

expect(normalizeDemoModel()).toBe("bravo-local/demo-model");

252304253305

const stateDirB = makeTempDir();

@@ -256,6 +308,7 @@ describe("manifest model id normalization", () => {

256308

writeNormalizerManifest({ pluginDir: pluginDirB, prefix: "charlie" });

257309258310

process.env.OPENCLAW_STATE_DIR = stateDirB;

311+

clearPluginMetadataLifecycleCaches();

259312

expect(normalizeDemoModel()).toBe("charlie/demo-model");

260313

});

261314