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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
Engineering at Meta
Engineering at Meta
量子位
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
博客园 - 司徒正美
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
腾讯CDC
Jina AI
Jina AI
C
Check Point Blog
H
Help Net Security
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
爱范儿
爱范儿
I
InfoQ

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
fix(plugins): repair bundled deps on activation · opencla...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -1,7 +1,15 @@

11

#!/usr/bin/env -S node --import tsx

2233

import { execFileSync, execSync } from "node:child_process";

4-

import { existsSync, mkdtempSync, mkdirSync, readdirSync, readFileSync, rmSync } from "node:fs";

4+

import {

5+

existsSync,

6+

mkdtempSync,

7+

mkdirSync,

8+

readdirSync,

9+

readFileSync,

10+

rmSync,

11+

writeFileSync,

12+

} from "node:fs";

513

import { tmpdir } from "node:os";

614

import { join, resolve } from "node:path";

715

import { pathToFileURL } from "node:url";

@@ -211,7 +219,6 @@ export function createPackedBundledPluginPostinstallEnv(

211219

return {

212220

...env,

213221

OPENCLAW_DISABLE_BUNDLED_ENTRY_SOURCE_FALLBACK: "1",

214-

OPENCLAW_EAGER_BUNDLED_PLUGIN_DEPS: "1",

215222

};

216223

}

217224

@@ -238,20 +245,143 @@ export function collectInstalledBundledPluginRuntimeDepErrors(packageRoot: strin

238245

.toSorted((left, right) => left.localeCompare(right));

239246

}

240247241-

function assertInstalledBundledPluginRuntimeDepsResolved(packageRoot: string): void {

242-

const errors = collectInstalledBundledPluginRuntimeDepErrors(packageRoot);

243-

if (errors.length === 0) {

244-

return;

248+

function bundledRuntimeDependencySentinelPath(

249+

packageRoot: string,

250+

pluginId: string,

251+

dependencyName: string,

252+

): string {

253+

return join(

254+

packageRoot,

255+

"dist",

256+

"extensions",

257+

pluginId,

258+

"node_modules",

259+

...dependencyName.split("/"),

260+

"package.json",

261+

);

262+

}

263+264+

function bundledRuntimeDependencySentinelCandidates(

265+

packageRoot: string,

266+

pluginId: string,

267+

dependencyName: string,

268+

): string[] {

269+

const dependencyParts = dependencyName.split("/");

270+

return [

271+

bundledRuntimeDependencySentinelPath(packageRoot, pluginId, dependencyName),

272+

join(packageRoot, "dist", "extensions", "node_modules", ...dependencyParts, "package.json"),

273+

join(packageRoot, "node_modules", ...dependencyParts, "package.json"),

274+

];

275+

}

276+277+

function assertBundledRuntimeDependencyAbsent(params: {

278+

packageRoot: string;

279+

pluginId: string;

280+

dependencyName: string;

281+

}): void {

282+

const sentinelPath = bundledRuntimeDependencySentinelCandidates(

283+

params.packageRoot,

284+

params.pluginId,

285+

params.dependencyName,

286+

).find((candidate) => existsSync(candidate));

287+

if (sentinelPath) {

288+

throw new Error(

289+

`release-check: ${params.pluginId} runtime dependency ${params.dependencyName} was installed before plugin activation (${sentinelPath}).`,

290+

);

245291

}

246-

console.error("release-check: packed install is missing bundled plugin runtime dependencies:");

247-

for (const error of errors) {

248-

console.error(` - ${error}`);

292+

}

293+294+

function assertBundledRuntimeDependencyPresent(params: {

295+

packageRoot: string;

296+

pluginId: string;

297+

dependencyName: string;

298+

}): void {

299+

const sentinelPath = bundledRuntimeDependencySentinelCandidates(

300+

params.packageRoot,

301+

params.pluginId,

302+

params.dependencyName,

303+

).find((candidate) => existsSync(candidate));

304+

if (sentinelPath) {

305+

return;

249306

}

250307

throw new Error(

251-

"release-check: bundled plugin runtime dependencies were not installed after packed postinstall.",

308+

`release-check: ${params.pluginId} runtime dependency ${params.dependencyName} was not installed during plugin activation.`,

252309

);

253310

}

254311312+

function writePackedBundledPluginActivationConfig(homeDir: string): void {

313+

const configPath = join(homeDir, ".openclaw", "openclaw.json");

314+

mkdirSync(join(homeDir, ".openclaw"), { recursive: true });

315+

writeFileSync(

316+

configPath,

317+

`${JSON.stringify(

318+

{

319+

agents: {

320+

defaults: {

321+

model: { primary: "openai/gpt-4.1-mini" },

322+

},

323+

},

324+

channels: {

325+

feishu: {

326+

enabled: true,

327+

},

328+

},

329+

models: {

330+

providers: {

331+

openai: {

332+

apiKey: "sk-openclaw-release-check",

333+

baseUrl: "https://api.openai.com/v1",

334+

models: [],

335+

},

336+

},

337+

},

338+

plugins: {

339+

enabled: true,

340+

entries: {

341+

feishu: {

342+

enabled: true,

343+

},

344+

},

345+

},

346+

},

347+

null,

348+

2,

349+

)}\n`,

350+

"utf8",

351+

);

352+

}

353+354+

function runPackedBundledPluginActivationSmoke(packageRoot: string, tmpRoot: string): void {

355+

const lazyDeps = [

356+

{ pluginId: "browser", dependencyName: "playwright-core" },

357+

{ pluginId: "feishu", dependencyName: "@larksuiteoapi/node-sdk" },

358+

] as const;

359+360+

for (const dep of lazyDeps) {

361+

assertBundledRuntimeDependencyAbsent({ packageRoot, ...dep });

362+

}

363+364+

const homeDir = join(tmpRoot, "activation-home");

365+

mkdirSync(homeDir, { recursive: true });

366+

writePackedBundledPluginActivationConfig(homeDir);

367+

execFileSync(process.execPath, [join(packageRoot, "openclaw.mjs"), "plugins", "doctor"], {

368+

cwd: packageRoot,

369+

stdio: "inherit",

370+

env: {

371+

...process.env,

372+

HOME: homeDir,

373+

OPENAI_API_KEY: "sk-openclaw-release-check",

374+

OPENCLAW_DISABLE_BUNDLED_ENTRY_SOURCE_FALLBACK: "1",

375+

OPENCLAW_NO_ONBOARD: "1",

376+

OPENCLAW_SUPPRESS_NOTES: "1",

377+

},

378+

});

379+380+

for (const dep of lazyDeps) {

381+

assertBundledRuntimeDependencyPresent({ packageRoot, ...dep });

382+

}

383+

}

384+255385

function runPackedBundledChannelEntrySmoke(): void {

256386

const tmpRoot = mkdtempSync(join(tmpdir(), "openclaw-release-pack-smoke-"));

257387

try {

@@ -265,7 +395,7 @@ function runPackedBundledChannelEntrySmoke(): void {

265395266396

const packageRoot = join(resolveGlobalRoot(prefixDir, tmpRoot), "openclaw");

267397

runPackedBundledPluginPostinstall(packageRoot);

268-

assertInstalledBundledPluginRuntimeDepsResolved(packageRoot);

398+

runPackedBundledPluginActivationSmoke(packageRoot, tmpRoot);

269399

execFileSync(

270400

process.execPath,

271401

[