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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio 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
feat(plugins): inspect persisted plugin index state · ope...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -3,6 +3,7 @@ import path from "node:path";

33

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

44

import type { PluginCandidate } from "./discovery.js";

55

import {

6+

inspectPersistedInstalledPluginIndex,

67

readPersistedInstalledPluginIndex,

78

refreshPersistedInstalledPluginIndex,

89

resolveInstalledPluginIndexStorePath,

@@ -111,6 +112,76 @@ describe("installed plugin index persistence", () => {

111112

await expect(readPersistedInstalledPluginIndex({ stateDir })).resolves.toBeNull();

112113

});

113114115+

it("inspects missing, fresh, and stale persisted index state without loading runtime", async () => {

116+

const stateDir = makeTempDir();

117+

const pluginDir = path.join(stateDir, "plugins", "demo");

118+

fs.mkdirSync(pluginDir, { recursive: true });

119+

const candidate = createCandidate(pluginDir);

120+

const env = {

121+

OPENCLAW_BUNDLED_PLUGINS_DIR: undefined,

122+

OPENCLAW_DISABLE_PLUGIN_DISCOVERY_CACHE: "1",

123+

OPENCLAW_DISABLE_PLUGIN_MANIFEST_CACHE: "1",

124+

OPENCLAW_VERSION: "2026.4.25",

125+

VITEST: "true",

126+

};

127+128+

await expect(

129+

inspectPersistedInstalledPluginIndex({ stateDir, candidates: [candidate], env }),

130+

).resolves.toMatchObject({

131+

state: "missing",

132+

refreshReasons: ["missing"],

133+

persisted: null,

134+

current: {

135+

plugins: [expect.objectContaining({ pluginId: "demo" })],

136+

},

137+

});

138+139+

const current = await refreshPersistedInstalledPluginIndex({

140+

reason: "manual",

141+

stateDir,

142+

candidates: [candidate],

143+

env,

144+

});

145+146+

await expect(

147+

inspectPersistedInstalledPluginIndex({ stateDir, candidates: [candidate], env }),

148+

).resolves.toMatchObject({

149+

state: "fresh",

150+

refreshReasons: [],

151+

persisted: current,

152+

current: {

153+

plugins: [expect.objectContaining({ pluginId: "demo" })],

154+

},

155+

});

156+157+

fs.writeFileSync(

158+

path.join(pluginDir, "openclaw.plugin.json"),

159+

JSON.stringify({

160+

id: "demo",

161+

name: "Demo",

162+

configSchema: { type: "object" },

163+

providers: ["demo", "demo-next"],

164+

}),

165+

"utf8",

166+

);

167+168+

await expect(

169+

inspectPersistedInstalledPluginIndex({ stateDir, candidates: [candidate], env }),

170+

).resolves.toMatchObject({

171+

state: "stale",

172+

refreshReasons: ["stale-manifest"],

173+

persisted: current,

174+

current: {

175+

plugins: [

176+

expect.objectContaining({

177+

pluginId: "demo",

178+

contributions: expect.objectContaining({ providers: ["demo", "demo-next"] }),

179+

}),

180+

],

181+

},

182+

});

183+

});

184+114185

it("refreshes and persists a rebuilt index without loading plugin runtime", async () => {

115186

const stateDir = makeTempDir();

116187

const pluginDir = path.join(stateDir, "plugins", "demo");