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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

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: add plugin install overrides · openclaw/openclaw@1f...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -27,8 +27,10 @@ vi.mock("../plugins/bundled-sources.js", () => ({

2727

}));

28282929

const installPluginFromNpmSpec = vi.hoisted(() => vi.fn());

30+

const installPluginFromNpmPackArchive = vi.hoisted(() => vi.fn());

3031

vi.mock("../plugins/install.js", () => ({

3132

installPluginFromNpmSpec,

33+

installPluginFromNpmPackArchive,

3234

}));

33353436

const installPluginFromClawHub = vi.hoisted(() => vi.fn());

@@ -86,6 +88,8 @@ function requireCapturedPrompt<T>(captured: T | undefined): T {

8688

describe("ensureOnboardingPluginInstalled", () => {

8789

beforeEach(() => {

8890

vi.clearAllMocks();

91+

delete process.env.OPENCLAW_ALLOW_PLUGIN_INSTALL_OVERRIDES;

92+

delete process.env.OPENCLAW_PLUGIN_INSTALL_OVERRIDES;

8993

withTimeout.mockImplementation(async <T>(promise: Promise<T>) => await promise);

9094

refreshPluginRegistryAfterConfigMutation.mockResolvedValue(undefined);

9195

});

@@ -125,6 +129,123 @@ describe("ensureOnboardingPluginInstalled", () => {

125129

expect(enablePluginInConfig).not.toHaveBeenCalled();

126130

});

127131132+

it("uses a guarded npm-pack install override for the matching plugin id", async () => {

133+

const archivePath = path.resolve("tmp/demo-plugin.tgz");

134+

process.env.OPENCLAW_ALLOW_PLUGIN_INSTALL_OVERRIDES = "1";

135+

process.env.OPENCLAW_PLUGIN_INSTALL_OVERRIDES = JSON.stringify({

136+

"other-plugin": "npm:@demo/other@1.0.0",

137+

"demo-plugin": `npm-pack:${archivePath}`,

138+

});

139+

installPluginFromNpmPackArchive.mockResolvedValue({

140+

ok: true,

141+

pluginId: "demo-plugin",

142+

targetDir: "/tmp/openclaw/extensions/demo-plugin",

143+

version: "1.2.3",

144+

manifestName: "@demo/plugin",

145+

npmTarballName: "demo-plugin-1.2.3.tgz",

146+

npmResolution: {

147+

name: "@demo/plugin",

148+

version: "1.2.3",

149+

resolvedSpec: "file:demo-plugin-1.2.3.tgz",

150+

integrity: "sha512-demo",

151+

shasum: "abc123",

152+

resolvedAt: "2026-05-09T00:00:00.000Z",

153+

},

154+

});

155+156+

const select = vi.fn(async () => "npm");

157+

const result = await ensureOnboardingPluginInstalled({

158+

cfg: {},

159+

entry: {

160+

pluginId: "demo-plugin",

161+

label: "Demo Plugin",

162+

install: {

163+

npmSpec: "@demo/plugin@1.2.3",

164+

},

165+

trustedSourceLinkedOfficialInstall: true,

166+

},

167+

prompter: {

168+

select,

169+

note: vi.fn(),

170+

progress: vi.fn(() => ({ update: vi.fn(), stop: vi.fn() })),

171+

} as never,

172+

runtime: { log: vi.fn() } as never,

173+

});

174+175+

expect(select).not.toHaveBeenCalled();

176+

expect(installPluginFromNpmSpec).not.toHaveBeenCalled();

177+

expect(installPluginFromNpmPackArchive).toHaveBeenCalledWith(

178+

expect.objectContaining({

179+

archivePath,

180+

expectedPluginId: "demo-plugin",

181+

}),

182+

);

183+

expect(installPluginFromNpmPackArchive.mock.calls[0]?.[0]).not.toHaveProperty(

184+

"trustedSourceLinkedOfficialInstall",

185+

);

186+

expect(recordPluginInstall).toHaveBeenCalledWith(expect.anything(), {

187+

pluginId: "demo-plugin",

188+

source: "npm",

189+

spec: "file:demo-plugin-1.2.3.tgz",

190+

sourcePath: archivePath,

191+

installPath: "/tmp/openclaw/extensions/demo-plugin",

192+

version: "1.2.3",

193+

artifactKind: "npm-pack",

194+

artifactFormat: "tgz",

195+

npmIntegrity: "sha512-demo",

196+

npmShasum: "abc123",

197+

npmTarballName: "demo-plugin-1.2.3.tgz",

198+

});

199+

expect(result.status).toBe("installed");

200+

});

201+202+

it("uses a guarded npm install override without official-trust flags", async () => {

203+

process.env.OPENCLAW_ALLOW_PLUGIN_INSTALL_OVERRIDES = "1";

204+

process.env.OPENCLAW_PLUGIN_INSTALL_OVERRIDES = JSON.stringify({

205+

codex: "npm:@openclaw/codex@2026.5.8",

206+

"other-plugin": "npm-pack:/tmp/other.tgz",

207+

});

208+

installPluginFromNpmSpec.mockResolvedValue({

209+

ok: true,

210+

pluginId: "codex",

211+

targetDir: "/tmp/openclaw/extensions/codex",

212+

version: "2026.5.8",

213+

npmResolution: {

214+

name: "@openclaw/codex",

215+

version: "2026.5.8",

216+

resolvedSpec: "@openclaw/codex@2026.5.8",

217+

},

218+

});

219+220+

await ensureOnboardingPluginInstalled({

221+

cfg: {},

222+

entry: {

223+

pluginId: "codex",

224+

label: "Codex",

225+

install: {

226+

npmSpec: "@openclaw/codex",

227+

},

228+

trustedSourceLinkedOfficialInstall: true,

229+

},

230+

prompter: {

231+

select: vi.fn(async () => "npm"),

232+

note: vi.fn(),

233+

progress: vi.fn(() => ({ update: vi.fn(), stop: vi.fn() })),

234+

} as never,

235+

runtime: { log: vi.fn() } as never,

236+

});

237+238+

expect(installPluginFromNpmSpec).toHaveBeenCalledWith(

239+

expect.not.objectContaining({ trustedSourceLinkedOfficialInstall: true }),

240+

);

241+

expect(installPluginFromNpmSpec).toHaveBeenCalledWith(

242+

expect.objectContaining({

243+

spec: "@openclaw/codex@2026.5.8",

244+

expectedPluginId: "codex",

245+

}),

246+

);

247+

});

248+128249

it("installs and records ClawHub provider plugins with source facts", async () => {

129250

installPluginFromClawHub.mockImplementation(async (params) => {

130251

params.logger?.info?.("Downloading demo-plugin from ClawHub…");