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

推荐订阅源

F
Fortinet All Blogs
Last Week in AI
Last Week in AI
IT之家
IT之家
A
About on SuperTechFans
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
aimingoo的专栏
aimingoo的专栏
The Cloudflare Blog
Vercel News
Vercel News
博客园 - Franky
有赞技术团队
有赞技术团队
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
量子位
云风的 BLOG
云风的 BLOG
T
Tailwind CSS 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
perf: prefer package-local bundled plugin artifacts · ope...
steipete · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -6166,6 +6166,77 @@ module.exports = {

61666166

);

61676167

});

61686168
6169+

it("prefers package-local dist artifacts for bundled source checkout plugins", () => {

6170+

const repoRoot = makeTempDir();

6171+

const sourceDir = path.join(repoRoot, "extensions", "startup-package-artifact-test");

6172+

const runtimeDir = path.join(sourceDir, "dist");

6173+

mkdirSafe(sourceDir);

6174+

mkdirSafe(runtimeDir);

6175+

fs.writeFileSync(

6176+

path.join(sourceDir, "openclaw.plugin.json"),

6177+

JSON.stringify(

6178+

{

6179+

id: "startup-package-artifact-test",

6180+

configSchema: EMPTY_PLUGIN_SCHEMA,

6181+

},

6182+

null,

6183+

2,

6184+

),

6185+

"utf-8",

6186+

);

6187+

fs.writeFileSync(

6188+

path.join(sourceDir, "package.json"),

6189+

JSON.stringify(

6190+

{

6191+

openclaw: {

6192+

extensions: ["./index.ts"],

6193+

},

6194+

},

6195+

null,

6196+

2,

6197+

),

6198+

"utf-8",

6199+

);

6200+

fs.writeFileSync(

6201+

path.join(sourceDir, "index.ts"),

6202+

'throw new Error("source TS should not load during gateway startup");\n',

6203+

"utf-8",

6204+

);

6205+

fs.writeFileSync(

6206+

path.join(runtimeDir, "index.js"),

6207+

'module.exports = { id: "startup-package-artifact-test", register() {} };\n',

6208+

"utf-8",

6209+

);

6210+
6211+

const registry = withEnv(

6212+

{

6213+

OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(repoRoot, "extensions"),

6214+

OPENCLAW_TEST_TRUST_BUNDLED_PLUGINS_DIR: "1",

6215+

OPENCLAW_DISABLE_BUNDLED_PLUGINS: undefined,

6216+

},

6217+

() =>

6218+

loadOpenClawPlugins({

6219+

cache: false,

6220+

preferBuiltPluginArtifacts: true,

6221+

onlyPluginIds: ["startup-package-artifact-test"],

6222+

config: {

6223+

plugins: {

6224+

allow: ["startup-package-artifact-test"],

6225+

entries: {

6226+

"startup-package-artifact-test": {

6227+

enabled: true,

6228+

},

6229+

},

6230+

},

6231+

},

6232+

}),

6233+

);

6234+
6235+

expect(

6236+

registry.plugins.find((entry) => entry.id === "startup-package-artifact-test")?.status,

6237+

).toBe("loaded");

6238+

});

6239+
61696240

it("prefers package-local dist artifacts over workspace source TS when requested", () => {

61706241

useNoBundledPlugins();

61716242

const pluginDir = makeTempDir();

Original file line numberDiff line numberDiff line change

@@ -626,6 +626,31 @@ function shouldPreferPackageLocalDistRuntimeArtifact(source: string): boolean {

626626

}

627627

}

628628
629+

function resolvePackageLocalDistRuntimeArtifact(params: {

630+

source: string;

631+

rootDir: string;

632+

}): string | null {

633+

const relativeSource = path.relative(params.rootDir, params.source);

634+

if (

635+

!shouldPreferPackageLocalDistRuntimeArtifact(relativeSource) ||

636+

relativeSource === "" ||

637+

relativeSource.startsWith("..") ||

638+

path.isAbsolute(relativeSource)

639+

) {

640+

return null;

641+

}

642+

const artifactRoot = path.join(params.rootDir, "dist");

643+

for (const artifactRelativePath of listPackageLocalDistRuntimeArtifactRelativePaths(

644+

relativeSource,

645+

)) {

646+

const artifactSource = path.join(artifactRoot, artifactRelativePath);

647+

if (fs.existsSync(artifactSource)) {

648+

return safeRealpathOrResolve(artifactSource);

649+

}

650+

}

651+

return null;

652+

}

653+
629654

function resolvePreferredBuiltRuntimeArtifact(params: {

630655

source: string;

631656

rootDir: string;

@@ -638,28 +663,16 @@ function resolvePreferredBuiltRuntimeArtifact(params: {

638663

return { source, rootDir };

639664

}

640665

if (params.origin !== "bundled") {

641-

const relativeSource = path.relative(rootDir, source);

642-

if (

643-

shouldPreferPackageLocalDistRuntimeArtifact(relativeSource) &&

644-

relativeSource !== "" &&

645-

!relativeSource.startsWith("..") &&

646-

!path.isAbsolute(relativeSource)

647-

) {

648-

const artifactRoot = path.join(rootDir, "dist");

649-

for (const artifactRelativePath of listPackageLocalDistRuntimeArtifactRelativePaths(

650-

relativeSource,

651-

)) {

652-

const artifactSource = path.join(artifactRoot, artifactRelativePath);

653-

if (fs.existsSync(artifactSource)) {

654-

return {

655-

source: safeRealpathOrResolve(artifactSource),

656-

rootDir,

657-

};

658-

}

659-

}

666+

const artifactSource = resolvePackageLocalDistRuntimeArtifact({ source, rootDir });

667+

if (artifactSource) {

668+

return { source: artifactSource, rootDir };

660669

}

661670

return { source, rootDir };

662671

}

672+

const packageLocalArtifactSource = resolvePackageLocalDistRuntimeArtifact({ source, rootDir });

673+

if (packageLocalArtifactSource) {

674+

return { source: packageLocalArtifactSource, rootDir };

675+

}

663676

const extensionsDir = path.dirname(rootDir);

664677

if (path.basename(extensionsDir) !== "extensions") {

665678

return { source, rootDir };