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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
腾讯CDC
Y
Y Combinator Blog
L
LangChain Blog
B
Blog
U
Unit 42
P
Proofpoint News Feed
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
Vercel News
Vercel News
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗

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: simplify plugin dependency loading · openclaw/o...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -102,6 +102,7 @@ import {

102102

restoreMemoryPluginState,

103103

} from "./memory-state.js";

104104

import { unwrapDefaultModuleExport } from "./module-export.js";

105+

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

105106

import { withProfile } from "./plugin-load-profile.js";

106107

import {

107108

createPluginIdScopeSet,

@@ -455,10 +456,9 @@ function runPluginRegisterSync(

455456

}

456457

}

457458458-

function createPluginJitiLoader(options: Pick<PluginLoadOptions, "pluginSdkResolution">) {

459+

function createPluginModuleLoader(options: Pick<PluginLoadOptions, "pluginSdkResolution">) {

459460

const jitiLoaders: PluginJitiLoaderCache = new Map();

460-

return (modulePath: string) => {

461-

const tryNative = shouldPreferNativeJiti(modulePath);

461+

const loadWithJiti = (modulePath: string) => {

462462

return getCachedPluginJitiLoader({

463463

cache: jitiLoaders,

464464

modulePath,

@@ -471,13 +471,21 @@ function createPluginJitiLoader(options: Pick<PluginLoadOptions, "pluginSdkResol

471471

options.pluginSdkResolution,

472472

),

473473

pluginSdkResolution: options.pluginSdkResolution,

474-

// Source .ts runtime shims import sibling ".js" specifiers that only exist

475-

// after build. Disable native loading for source entries so Jiti rewrites

476-

// those imports against the source graph, while keeping native dist/*.js

477-

// loading for the canonical built module graph.

478-

tryNative,

474+

tryNative: false,

479475

});

480476

};

477+

return (modulePath: string): unknown => {

478+

if (shouldPreferNativeJiti(modulePath)) {

479+

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

480+

if (native.ok) {

481+

return native.moduleExport;

482+

}

483+

}

484+

// Source .ts runtime shims import sibling ".js" specifiers that only exist

485+

// after build. Jiti remains the dev/source fallback because it rewrites those

486+

// imports against the source graph and applies SDK aliases.

487+

return loadWithJiti(modulePath)(toSafeImportPath(modulePath));

488+

};

481489

}

482490483491

function resolveCanonicalDistRuntimeSource(source: string): string {

@@ -1241,8 +1249,8 @@ export function loadOpenClawPlugins(options: PluginLoadOptions = {}): PluginRegi

12411249

clearMemoryPluginState();

12421250

}

124312511244-

// Lazy: avoid creating the Jiti loader when all plugins are disabled (common in unit tests).

1245-

const getJiti = createPluginJitiLoader(options);

1252+

// Lazy: avoid creating module loaders when all plugins are disabled (common in unit tests).

1253+

const loadPluginModule = createPluginModuleLoader(options);

1246125412471255

let createPluginRuntimeFactory:

12481256

| ((options?: CreatePluginRuntimeOptions) => PluginRuntime)

@@ -1259,12 +1267,11 @@ export function loadOpenClawPlugins(options: PluginLoadOptions = {}): PluginRegi

12591267

if (!runtimeModulePath) {

12601268

throw new Error("Unable to resolve plugin runtime module");

12611269

}

1262-

const safeRuntimePath = toSafeImportPath(runtimeModulePath);

12631270

const runtimeModule = withProfile(

12641271

{ source: runtimeModulePath },

12651272

"runtime-module",

12661273

() =>

1267-

getJiti(runtimeModulePath)(safeRuntimePath) as {

1274+

loadPluginModule(runtimeModulePath) as {

12681275

createPluginRuntime?: (options?: CreatePluginRuntimeOptions) => PluginRuntime;

12691276

},

12701277

);

@@ -1715,7 +1722,6 @@ export function loadOpenClawPlugins(options: PluginLoadOptions = {}): PluginRegi

17151722

}

17161723

const safeSource = opened.path;

17171724

fs.closeSync(opened.fd);

1718-

const safeImportSource = toSafeImportPath(safeSource);

1719172517201726

let mod: OpenClawPluginModule | null = null;

17211727

try {

@@ -1727,7 +1733,7 @@ export function loadOpenClawPlugins(options: PluginLoadOptions = {}): PluginRegi

17271733

mod = withProfile(

17281734

{ pluginId: record.id, source: safeSource },

17291735

registrationMode,

1730-

() => getJiti(safeSource)(safeImportSource) as OpenClawPluginModule,

1736+

() => loadPluginModule(safeSource) as OpenClawPluginModule,

17311737

);

17321738

} catch (err) {

17331739

recordPluginError({

@@ -1801,13 +1807,12 @@ export function loadOpenClawPlugins(options: PluginLoadOptions = {}): PluginRegi

18011807

}

18021808

const safeRuntimeSource = runtimeOpened.path;

18031809

fs.closeSync(runtimeOpened.fd);

1804-

const safeRuntimeImportSource = toSafeImportPath(safeRuntimeSource);

18051810

let runtimeMod: OpenClawPluginModule | null = null;

18061811

try {

18071812

runtimeMod = withProfile(

18081813

{ pluginId: record.id, source: safeRuntimeSource },

18091814

"load-setup-runtime-entry",

1810-

() => getJiti(safeRuntimeSource)(safeRuntimeImportSource) as OpenClawPluginModule,

1815+

() => loadPluginModule(safeRuntimeSource) as OpenClawPluginModule,

18111816

);

18121817

} catch (err) {

18131818

recordPluginError({

@@ -2165,7 +2170,7 @@ export async function loadOpenClawPluginCliRegistry(

21652170

});

21662171

const logger = options.logger ?? defaultLogger();

21672172

const onlyPluginIdSet = createPluginIdScopeSet(onlyPluginIds);

2168-

const getJiti = createPluginJitiLoader(options);

2173+

const loadPluginModule = createPluginModuleLoader(options);

21692174

const { registry, registerCli } = createPluginRegistry({

21702175

logger,

21712176

runtime: {} as PluginRuntime,

@@ -2387,14 +2392,13 @@ export async function loadOpenClawPluginCliRegistry(

23872392

}

23882393

const safeSource = opened.path;

23892394

fs.closeSync(opened.fd);

2390-

const safeImportSource = toSafeImportPath(safeSource);

2391239523922396

let mod: OpenClawPluginModule | null = null;

23932397

try {

23942398

mod = withProfile(

23952399

{ pluginId: record.id, source: safeSource },

23962400

"cli-metadata",

2397-

() => getJiti(safeSource)(safeImportSource) as OpenClawPluginModule,

2401+

() => loadPluginModule(safeSource) as OpenClawPluginModule,

23982402

);

23992403

} catch (err) {

24002404

recordPluginError({