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

推荐订阅源

博客园 - 聂微东
Y
Y Combinator Blog
WordPress大学
WordPress大学
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
小众软件
小众软件
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
GbyAI
GbyAI
I
InfoQ
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
C
Check Point Blog
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
量子位
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - 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
fix: prepare bundled facade runtime deps · openclaw/openc...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -4,6 +4,10 @@ import path from "node:path";

44

import { fileURLToPath, pathToFileURL } from "node:url";

55

import { openBoundaryFileSync } from "../infra/boundary-file-read.js";

66

import { resolveBundledPluginsDir } from "../plugins/bundled-dir.js";

7+

import {

8+

isBuiltBundledPluginRuntimeRoot,

9+

prepareBundledPluginRuntimeRoot,

10+

} from "../plugins/bundled-runtime-root.js";

711

import {

812

getCachedPluginJitiLoader,

913

type PluginJitiLoaderCache,

@@ -170,54 +174,114 @@ export type FacadeModuleLocation = {

170174

boundaryRoot: string;

171175

};

172176177+

function resolveBuiltBundledPluginRoot(params: {

178+

modulePath: string;

179+

pluginId: string;

180+

}): string | null {

181+

const resolvedModulePath = path.resolve(params.modulePath);

182+

let currentDir = path.dirname(resolvedModulePath);

183+

while (true) {

184+

if (

185+

path.basename(currentDir) === params.pluginId &&

186+

isBuiltBundledPluginRuntimeRoot(currentDir)

187+

) {

188+

const relativePath = path.relative(currentDir, resolvedModulePath);

189+

if (!relativePath.startsWith("..") && !path.isAbsolute(relativePath)) {

190+

return currentDir;

191+

}

192+

}

193+

const parentDir = path.dirname(currentDir);

194+

if (parentDir === currentDir) {

195+

return null;

196+

}

197+

currentDir = parentDir;

198+

}

199+

}

200+201+

function prepareFacadeLocationForBundledRuntimeDeps(params: {

202+

location: FacadeModuleLocation;

203+

runtimeDeps?: {

204+

pluginId: string;

205+

env?: NodeJS.ProcessEnv;

206+

};

207+

}): FacadeModuleLocation {

208+

if (!params.runtimeDeps) {

209+

return params.location;

210+

}

211+

const pluginRoot = resolveBuiltBundledPluginRoot({

212+

modulePath: params.location.modulePath,

213+

pluginId: params.runtimeDeps.pluginId,

214+

});

215+

if (!pluginRoot) {

216+

return params.location;

217+

}

218+

const prepared = prepareBundledPluginRuntimeRoot({

219+

pluginId: params.runtimeDeps.pluginId,

220+

pluginRoot,

221+

modulePath: params.location.modulePath,

222+

...(params.runtimeDeps.env ? { env: params.runtimeDeps.env } : {}),

223+

});

224+

return {

225+

modulePath: prepared.modulePath,

226+

boundaryRoot: prepared.pluginRoot,

227+

};

228+

}

229+173230

export function loadFacadeModuleAtLocationSync<T extends object>(params: {

174231

location: FacadeModuleLocation;

175232

trackedPluginId: string | (() => string);

233+

runtimeDeps?: {

234+

pluginId: string;

235+

env?: NodeJS.ProcessEnv;

236+

};

176237

loadModule?: (modulePath: string) => T;

177238

}): T {

178-

const cached = loadedFacadeModules.get(params.location.modulePath);

239+

const location = prepareFacadeLocationForBundledRuntimeDeps({

240+

location: params.location,

241+

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

242+

});

243+

const cached = loadedFacadeModules.get(location.modulePath);

179244

if (cached) {

180245

return cached as T;

181246

}

182247183248

const opened = openBoundaryFileSync({

184-

absolutePath: params.location.modulePath,

185-

rootPath: params.location.boundaryRoot,

249+

absolutePath: location.modulePath,

250+

rootPath: location.boundaryRoot,

186251

boundaryLabel:

187-

params.location.boundaryRoot === getOpenClawPackageRoot()

252+

location.boundaryRoot === getOpenClawPackageRoot()

188253

? "OpenClaw package root"

189254

: (() => {

190255

const bundledDir = resolveBundledPluginsDir();

191-

return bundledDir &&

192-

path.resolve(params.location.boundaryRoot) === path.resolve(bundledDir)

256+

return bundledDir && path.resolve(location.boundaryRoot) === path.resolve(bundledDir)

193257

? "bundled plugin directory"

194258

: "plugin root";

195259

})(),

196260

rejectHardlinks: false,

197261

});

198262

if (!opened.ok) {

199-

throw new Error(`Unable to open bundled plugin public surface ${params.location.modulePath}`, {

263+

throw new Error(`Unable to open bundled plugin public surface ${location.modulePath}`, {

200264

cause: opened.error,

201265

});

202266

}

203267

fs.closeSync(opened.fd);

204268205269

const sentinel = {} as T;

206-

loadedFacadeModules.set(params.location.modulePath, sentinel);

270+

loadedFacadeModules.set(location.modulePath, sentinel);

207271208272

let loaded: T;

209273

try {

210274

loaded =

211-

params.loadModule?.(params.location.modulePath) ??

212-

(getJiti(params.location.modulePath)(params.location.modulePath) as T);

275+

params.loadModule?.(location.modulePath) ??

276+

(getJiti(location.modulePath)(location.modulePath) as T);

213277

Object.assign(sentinel, loaded);

214278

loadedFacadePluginIds.add(

215279

typeof params.trackedPluginId === "function"

216280

? params.trackedPluginId()

217281

: params.trackedPluginId,

218282

);

219283

} catch (err) {

220-

loadedFacadeModules.delete(params.location.modulePath);

284+

loadedFacadeModules.delete(location.modulePath);

221285

throw err;

222286

}

223287

@@ -240,6 +304,10 @@ export function loadBundledPluginPublicSurfaceModuleSync<T extends object>(param

240304

return loadFacadeModuleAtLocationSync({

241305

location,

242306

trackedPluginId: params.trackedPluginId ?? params.dirName,

307+

runtimeDeps: {

308+

pluginId: params.dirName,

309+

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

310+

},

243311

});

244312

}

245313

@@ -255,28 +323,37 @@ export async function loadBundledPluginPublicSurfaceModule<T extends object>(par

255323

`Unable to resolve bundled plugin public surface ${params.dirName}/${params.artifactBasename}`,

256324

);

257325

}

258-

const cached = loadedFacadeModules.get(location.modulePath);

326+

const preparedLocation = prepareFacadeLocationForBundledRuntimeDeps({

327+

location,

328+

runtimeDeps: {

329+

pluginId: params.dirName,

330+

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

331+

},

332+

});

333+

const cached = loadedFacadeModules.get(preparedLocation.modulePath);

259334

if (cached) {

260335

return cached as T;

261336

}

262337263338

const opened = openBoundaryFileSync({

264-

absolutePath: location.modulePath,

265-

rootPath: location.boundaryRoot,

339+

absolutePath: preparedLocation.modulePath,

340+

rootPath: preparedLocation.boundaryRoot,

266341

boundaryLabel:

267-

location.boundaryRoot === getOpenClawPackageRoot() ? "OpenClaw package root" : "plugin root",

342+

preparedLocation.boundaryRoot === getOpenClawPackageRoot()

343+

? "OpenClaw package root"

344+

: "plugin root",

268345

rejectHardlinks: false,

269346

});

270347

if (!opened.ok) {

271-

throw new Error(`Unable to open bundled plugin public surface ${location.modulePath}`, {

348+

throw new Error(`Unable to open bundled plugin public surface ${preparedLocation.modulePath}`, {

272349

cause: opened.error,

273350

});

274351

}

275352

fs.closeSync(opened.fd);

276353277354

try {

278-

const loaded = (await import(pathToFileURL(location.modulePath).href)) as T;

279-

loadedFacadeModules.set(location.modulePath, loaded);

355+

const loaded = (await import(pathToFileURL(preparedLocation.modulePath).href)) as T;

356+

loadedFacadeModules.set(preparedLocation.modulePath, loaded);

280357

loadedFacadePluginIds.add(

281358

typeof params.trackedPluginId === "function"

282359

? params.trackedPluginId()

@@ -285,7 +362,7 @@ export async function loadBundledPluginPublicSurfaceModule<T extends object>(par

285362

return loaded;

286363

} catch {

287364

return loadFacadeModuleAtLocationSync({

288-

location,

365+

location: preparedLocation,

289366

trackedPluginId: params.trackedPluginId ?? params.dirName,

290367

});

291368

}