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

推荐订阅源

D
Docker
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
博客园 - 【当耐特】
量子位
博客园 - 叶小钗
有赞技术团队
有赞技术团队
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
博客园 - 司徒正美
爱范儿
爱范儿
美团技术团队
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
罗磊的独立博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
D
DataBreaches.Net
宝玉的分享
宝玉的分享

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: cache bundled runtime dep manifests · openclaw/open...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

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

1414

isWritableDirectory,

1515

resolveBundledRuntimeDependencyInstallRoot,

1616

resolveBundledRuntimeDepsNpmRunner,

17+

scanBundledPluginRuntimeDeps,

1718

type BundledRuntimeDepsInstallParams,

1819

} from "./bundled-runtime-deps.js";

1920

@@ -41,6 +42,30 @@ function writeInstalledPackage(rootDir: string, packageName: string, version: st

4142

);

4243

}

434445+

function writeBundledPluginPackage(params: {

46+

packageRoot: string;

47+

pluginId: string;

48+

deps: Record<string, string>;

49+

enabledByDefault?: boolean;

50+

channels?: string[];

51+

}): string {

52+

const pluginRoot = path.join(params.packageRoot, "dist", "extensions", params.pluginId);

53+

fs.mkdirSync(pluginRoot, { recursive: true });

54+

fs.writeFileSync(

55+

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

56+

JSON.stringify({ dependencies: params.deps }),

57+

);

58+

fs.writeFileSync(

59+

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

60+

JSON.stringify({

61+

id: params.pluginId,

62+

enabledByDefault: params.enabledByDefault === true,

63+

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

64+

}),

65+

);

66+

return pluginRoot;

67+

}

68+4469

function statfsFixture(params: {

4570

bavail: number;

4671

bsize?: number;

@@ -587,6 +612,116 @@ describe("installBundledRuntimeDeps", () => {

587612

});

588613

});

589614615+

describe("scanBundledPluginRuntimeDeps config policy", () => {

616+

function setupPolicyPackageRoot(): string {

617+

const packageRoot = makeTempDir();

618+

writeBundledPluginPackage({

619+

packageRoot,

620+

pluginId: "alpha",

621+

deps: { "alpha-runtime": "1.0.0" },

622+

enabledByDefault: true,

623+

});

624+

writeBundledPluginPackage({

625+

packageRoot,

626+

pluginId: "telegram",

627+

deps: { "telegram-runtime": "2.0.0" },

628+

channels: ["telegram"],

629+

});

630+

return packageRoot;

631+

}

632+633+

it.each([

634+

{

635+

name: "includes default-enabled bundled plugins",

636+

config: {},

637+

includeConfiguredChannels: false,

638+

expectedDeps: ["alpha-runtime@1.0.0"],

639+

},

640+

{

641+

name: "keeps default-enabled bundled plugins behind restrictive allowlists",

642+

config: { plugins: { allow: ["browser"] } },

643+

includeConfiguredChannels: false,

644+

expectedDeps: [],

645+

},

646+

{

647+

name: "does not let explicit plugin entries bypass restrictive allowlists",

648+

config: { plugins: { allow: ["browser"], entries: { alpha: { enabled: true } } } },

649+

includeConfiguredChannels: false,

650+

expectedDeps: [],

651+

},

652+

{

653+

name: "lets deny override default-enabled bundled plugins",

654+

config: { plugins: { deny: ["alpha"] } },

655+

includeConfiguredChannels: false,

656+

expectedDeps: [],

657+

},

658+

{

659+

name: "lets disabled entries override default-enabled bundled plugins",

660+

config: { plugins: { entries: { alpha: { enabled: false } } } },

661+

includeConfiguredChannels: false,

662+

expectedDeps: [],

663+

},

664+

{

665+

name: "lets explicit bundled channel enablement bypass restrictive allowlists",

666+

config: {

667+

plugins: { allow: ["browser"] },

668+

channels: { telegram: { enabled: true } },

669+

},

670+

includeConfiguredChannels: false,

671+

expectedDeps: ["telegram-runtime@2.0.0"],

672+

},

673+

{

674+

name: "keeps channel recovery behind restrictive allowlists",

675+

config: {

676+

plugins: { allow: ["browser"] },

677+

channels: { telegram: { botToken: "123:abc" } },

678+

},

679+

includeConfiguredChannels: true,

680+

expectedDeps: [],

681+

},

682+

{

683+

name: "includes configured channels during recovery without restrictive allowlists",

684+

config: { channels: { telegram: { botToken: "123:abc" } } },

685+

includeConfiguredChannels: true,

686+

expectedDeps: ["alpha-runtime@1.0.0", "telegram-runtime@2.0.0"],

687+

},

688+

{

689+

name: "lets explicit channel disable override recovery",

690+

config: { channels: { telegram: { botToken: "123:abc", enabled: false } } },

691+

includeConfiguredChannels: true,

692+

expectedDeps: ["alpha-runtime@1.0.0"],

693+

},

694+

])("$name", ({ config, includeConfiguredChannels, expectedDeps }) => {

695+

const result = scanBundledPluginRuntimeDeps({

696+

packageRoot: setupPolicyPackageRoot(),

697+

config,

698+

includeConfiguredChannels,

699+

});

700+701+

expect(result.deps.map((dep) => `${dep.name}@${dep.version}`)).toEqual(expectedDeps);

702+

expect(result.conflicts).toEqual([]);

703+

});

704+705+

it("reads each bundled plugin manifest once per runtime-deps scan", () => {

706+

const packageRoot = makeTempDir();

707+

const pluginRoot = writeBundledPluginPackage({

708+

packageRoot,

709+

pluginId: "alpha",

710+

deps: { "alpha-runtime": "1.0.0" },

711+

enabledByDefault: true,

712+

channels: ["alpha"],

713+

});

714+

const manifestPath = path.join(pluginRoot, "openclaw.plugin.json");

715+

const readFileSyncSpy = vi.spyOn(fs, "readFileSync");

716+717+

scanBundledPluginRuntimeDeps({ packageRoot, config: {} });

718+719+

expect(

720+

readFileSyncSpy.mock.calls.filter((call) => path.resolve(String(call[0])) === manifestPath),

721+

).toHaveLength(1);

722+

});

723+

});

724+590725

describe("ensureBundledPluginRuntimeDeps", () => {

591726

it("installs plugin-local runtime deps when one is missing", () => {

592727

const packageRoot = makeTempDir();