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

推荐订阅源

WordPress大学
WordPress大学
B
Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Proofpoint News Feed
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
博客园 - 叶小钗
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
腾讯CDC
博客园 - Franky
博客园 - 聂微东
V
Visual Studio Blog
GbyAI
GbyAI
Martin Fowler
Martin Fowler
罗磊的独立博客
Y
Y Combinator 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
refactor: collapse plugin loader native fallbacks · openc...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -6,13 +6,8 @@ import { openBoundaryFileSync } from "../infra/boundary-file-read.js";

66

import { sameFileIdentity } from "../infra/file-identity.js";

77

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

88

import { getCachedPluginJitiLoader, type PluginJitiLoaderCache } from "./jiti-loader-cache.js";

9-

import { tryNativeRequireJavaScriptModule } from "./native-module-require.js";

109

import { resolveBundledPluginPublicSurfacePath } from "./public-surface-runtime.js";

11-

import {

12-

isBundledPluginExtensionPath,

13-

resolvePluginLoaderJitiTryNative,

14-

resolveLoaderPackageRoot,

15-

} from "./sdk-alias.js";

10+

import { resolvePluginLoaderJitiTryNative, resolveLoaderPackageRoot } from "./sdk-alias.js";

16111712

const OPENCLAW_PACKAGE_ROOT =

1813

resolveLoaderPackageRoot({

@@ -29,7 +24,6 @@ const publicSurfaceLocations = new Map<

2924

} | null

3025

>();

3126

const jitiLoaders: PluginJitiLoaderCache = new Map();

32-

const sharedBundledPublicSurfaceJitiLoaders: PluginJitiLoaderCache = new Map();

33273428

function isSourceArtifactPath(modulePath: string): boolean {

3529

switch (path.extname(modulePath).toLowerCase()) {

@@ -95,57 +89,23 @@ function resolvePublicSurfaceLocation(params: {

9589

}

96909791

function getJiti(modulePath: string) {

98-

const tryNative = resolvePluginLoaderJitiTryNative(modulePath, { preferBuiltDist: true });

99-

const sharedLoader = getSharedBundledPublicSurfaceJiti(modulePath, tryNative);

100-

if (sharedLoader) {

101-

return sharedLoader;

102-

}

103-

const loader = getCachedPluginJitiLoader({

92+

return getCachedPluginJitiLoader({

10493

cache: jitiLoaders,

10594

modulePath,

10695

importerUrl: import.meta.url,

10796

preferBuiltDist: true,

10897

jitiFilename: import.meta.url,

10998

});

110-

return loader;

11199

}

112100113101

function loadPublicSurfaceModule(modulePath: string): unknown {

114102

const tryNative = resolvePluginLoaderJitiTryNative(modulePath, { preferBuiltDist: true });

115-

if (tryNative) {

116-

const nativeModule = tryNativeRequireJavaScriptModule(modulePath, { allowWindows: true });

117-

if (nativeModule.ok) {

118-

return nativeModule.moduleExport;

119-

}

120-

}

121103

if (canUseSourceArtifactRequire({ modulePath, tryNative })) {

122104

return sourceArtifactRequire(modulePath);

123105

}

124106

return getJiti(modulePath)(modulePath);

125107

}

126108127-

function getSharedBundledPublicSurfaceJiti(modulePath: string, tryNative: boolean) {

128-

const bundledPluginsDir = resolveBundledPluginsDir();

129-

if (

130-

!isBundledPluginExtensionPath({

131-

modulePath,

132-

openClawPackageRoot: OPENCLAW_PACKAGE_ROOT,

133-

...(bundledPluginsDir ? { bundledPluginsDir } : {}),

134-

})

135-

) {

136-

return null;

137-

}

138-

const cacheKey = tryNative ? "bundled:native" : "bundled:source";

139-

return getCachedPluginJitiLoader({

140-

cache: sharedBundledPublicSurfaceJitiLoaders,

141-

modulePath,

142-

importerUrl: import.meta.url,

143-

jitiFilename: import.meta.url,

144-

cacheScopeKey: cacheKey,

145-

tryNative,

146-

});

147-

}

148-149109

// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic public artifact loaders use caller-supplied module surface types.

150110

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

151111

dirName: string;

@@ -157,21 +117,16 @@ export function loadBundledPluginPublicArtifactModuleSync<T extends object>(para

157117

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

158118

);

159119

}

160-

const preparedLocation = location;

161-

const cached =

162-

loadedPublicSurfaceModules.get(location.modulePath) ??

163-

loadedPublicSurfaceModules.get(preparedLocation.modulePath);

120+

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

164121

if (cached) {

165122

return cached as T;

166123

}

167124168125

const opened = openBoundaryFileSync({

169-

absolutePath: preparedLocation.modulePath,

170-

rootPath: preparedLocation.boundaryRoot,

126+

absolutePath: location.modulePath,

127+

rootPath: location.boundaryRoot,

171128

boundaryLabel:

172-

preparedLocation.boundaryRoot === OPENCLAW_PACKAGE_ROOT

173-

? "OpenClaw package root"

174-

: "plugin root",

129+

location.boundaryRoot === OPENCLAW_PACKAGE_ROOT ? "OpenClaw package root" : "plugin root",

175130

rejectHardlinks: true,

176131

});

177132

if (!opened.ok) {

@@ -193,15 +148,13 @@ export function loadBundledPluginPublicArtifactModuleSync<T extends object>(para

193148194149

const sentinel = {} as T;

195150

loadedPublicSurfaceModules.set(location.modulePath, sentinel);

196-

loadedPublicSurfaceModules.set(preparedLocation.modulePath, sentinel);

197151

loadedPublicSurfaceModules.set(validatedPath, sentinel);

198152

try {

199153

const loaded = loadPublicSurfaceModule(validatedPath) as T;

200154

Object.assign(sentinel, loaded);

201155

return sentinel;

202156

} catch (error) {

203157

loadedPublicSurfaceModules.delete(location.modulePath);

204-

loadedPublicSurfaceModules.delete(preparedLocation.modulePath);

205158

loadedPublicSurfaceModules.delete(validatedPath);

206159

throw error;

207160

}

@@ -218,5 +171,4 @@ export function resetBundledPluginPublicArtifactLoaderForTest(): void {

218171

loadedPublicSurfaceModules.clear();

219172

publicSurfaceLocations.clear();

220173

jitiLoaders.clear();

221-

sharedBundledPublicSurfaceJitiLoaders.clear();

222174

}