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

推荐订阅源

The Cloudflare Blog
U
Unit 42
F
Fortinet All Blogs
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Y
Y Combinator Blog
罗磊的独立博客
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
I
InfoQ
博客园 - 叶小钗
博客园 - 聂微东
Last Week in AI
Last Week in AI

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(plugins): centralize npm runtime package plannin...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -5,32 +5,11 @@ import path from "node:path";

55

import { pathToFileURL } from "node:url";

66

import {

77

buildPluginNpmRuntime,

8+

listPluginNpmRuntimeBuildOutputs,

9+

listPublishablePluginPackageDirs,

810

resolvePluginNpmRuntimeBuildPlan,

911

} from "./lib/plugin-npm-runtime-build.mjs";

1012
11-

function readJsonFile(filePath) {

12-

return JSON.parse(fs.readFileSync(filePath, "utf8"));

13-

}

14-
15-

function isPublishablePluginPackage(packageJson) {

16-

return packageJson.openclaw?.release?.publishToNpm === true;

17-

}

18-
19-

function listPublishablePluginPackageDirs(repoRoot) {

20-

const extensionsRoot = path.join(repoRoot, "extensions");

21-

return fs

22-

.readdirSync(extensionsRoot, { withFileTypes: true })

23-

.filter((entry) => entry.isDirectory())

24-

.map((entry) => path.join("extensions", entry.name))

25-

.filter((packageDir) => {

26-

const packageJsonPath = path.join(repoRoot, packageDir, "package.json");

27-

return (

28-

fs.existsSync(packageJsonPath) && isPublishablePluginPackage(readJsonFile(packageJsonPath))

29-

);

30-

})

31-

.toSorted((left, right) => left.localeCompare(right));

32-

}

33-
3413

function parseArgs(argv) {

3514

const packageDirs = [];

3615

for (let index = 0; index < argv.length; index += 1) {

@@ -51,18 +30,12 @@ function parseArgs(argv) {

5130

return { packageDirs };

5231

}

5332
54-

function listMissingRuntimeOutputs(plan) {

55-

return Object.keys(plan.entry)

56-

.map((entryKey) => path.join(plan.outDir, `${entryKey}.js`))

57-

.filter((filePath) => !fs.existsSync(filePath));

58-

}

59-
6033

export async function checkPluginNpmRuntimeBuilds(params = {}) {

6134

const repoRoot = path.resolve(params.repoRoot ?? ".");

6235

const packageDirs =

6336

params.packageDirs?.length > 0

6437

? params.packageDirs

65-

: listPublishablePluginPackageDirs(repoRoot);

38+

: listPublishablePluginPackageDirs({ repoRoot });

6639

const rows = [];

6740

for (const packageDir of packageDirs) {

6841

const plan = resolvePluginNpmRuntimeBuildPlan({ repoRoot, packageDir });

@@ -74,13 +47,12 @@ export async function checkPluginNpmRuntimeBuilds(params = {}) {

7447

packageDir,

7548

logLevel: params.logLevel ?? "warn",

7649

});

77-

const missing = listMissingRuntimeOutputs(result);

50+

const missing = listPluginNpmRuntimeBuildOutputs(result).filter(

51+

(runtimePath) =>

52+

!fs.existsSync(path.join(result.packageDir, runtimePath.replace(/^\.\//u, ""))),

53+

);

7854

if (missing.length > 0) {

79-

throw new Error(

80-

`${packageDir} missing built runtime outputs: ${missing

81-

.map((filePath) => path.relative(repoRoot, filePath))

82-

.join(", ")}`,

83-

);

55+

throw new Error(`${packageDir} missing built runtime outputs: ${missing.join(", ")}`);

8456

}

8557

rows.push({

8658

pluginDir: result.pluginDir,

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,10 @@ import fs from "node:fs";

33

import path from "node:path";

44

import { pathToFileURL } from "node:url";

55

import JSON5 from "json5";

6-

import { resolvePluginNpmRuntimeBuildPlan } from "./plugin-npm-runtime-build.mjs";

6+

import {

7+

listPluginNpmRuntimeBuildOutputs,

8+

resolvePluginNpmRuntimeBuildPlan,

9+

} from "./plugin-npm-runtime-build.mjs";

710
811

const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA_PATH =

912

"src/config/bundled-channel-config-metadata.generated.ts";

@@ -28,34 +31,8 @@ function packageRelativePathExists(packageDir, relativePath) {

2831

return fs.existsSync(path.join(packageDir, relativePath));

2932

}

3033
31-

function mergePackageFiles(packageDir, files) {

32-

const merged = new Set(

33-

Array.isArray(files) ? files.filter((entry) => typeof entry === "string") : [],

34-

);

35-

merged.add("dist/**");

36-

if (packageRelativePathExists(packageDir, "openclaw.plugin.json")) {

37-

merged.add("openclaw.plugin.json");

38-

}

39-

if (packageRelativePathExists(packageDir, "README.md")) {

40-

merged.add("README.md");

41-

}

42-

if (packageRelativePathExists(packageDir, "SKILL.md")) {

43-

merged.add("SKILL.md");

44-

}

45-

if (packageRelativePathExists(packageDir, "skills")) {

46-

merged.add("skills/**");

47-

}

48-

return [...merged];

49-

}

50-
51-

function listRuntimeBuildOutputs(plan) {

52-

return Object.keys(plan.entry)

53-

.map((entryKey) => `./dist/${entryKey}.js`)

54-

.toSorted((left, right) => left.localeCompare(right));

55-

}

56-
5734

function assertPluginNpmRuntimeBuildExists(plan) {

58-

const missing = listRuntimeBuildOutputs(plan).filter(

35+

const missing = listPluginNpmRuntimeBuildOutputs(plan).filter(

5936

(runtimePath) => !packageRelativePathExists(plan.packageDir, runtimePath.replace(/^\.\//u, "")),

6037

);

6138

if (missing.length > 0) {

@@ -98,7 +75,7 @@ export function resolveAugmentedPluginNpmPackageJson(params) {

9875
9976

const packageJson = {

10077

...plan.packageJson,

101-

files: mergePackageFiles(packageDir, plan.packageJson.files),

78+

files: plan.packageFiles,

10279

openclaw: {

10380

...plan.packageJson.openclaw,

10481

runtimeExtensions: plan.runtimeExtensions,

Original file line numberDiff line numberDiff line change

@@ -16,6 +16,10 @@ function readJsonFile(filePath) {

1616

return JSON.parse(fs.readFileSync(filePath, "utf8"));

1717

}

1818
19+

export function isPublishablePluginPackage(packageJson) {

20+

return packageJson.openclaw?.release?.publishToNpm === true;

21+

}

22+
1923

function normalizePackageEntry(value) {

2024

return typeof value === "string" ? value.trim().replaceAll("\\", "/") : "";

2125

}

@@ -64,6 +68,54 @@ function resolvePackageDir(repoRoot, packageDir) {

6468

return path.isAbsolute(packageDir) ? packageDir : path.resolve(repoRoot, packageDir);

6569

}

6670
71+

function packageRelativePathExists(packageDir, relativePath) {

72+

return fs.existsSync(path.join(packageDir, relativePath));

73+

}

74+
75+

export function listPublishablePluginPackageDirs(params = {}) {

76+

const repoRoot = path.resolve(params.repoRoot ?? ".");

77+

const extensionsRoot = path.join(repoRoot, "extensions");

78+

return fs

79+

.readdirSync(extensionsRoot, { withFileTypes: true })

80+

.filter((entry) => entry.isDirectory())

81+

.map((entry) => path.join("extensions", entry.name))

82+

.filter((packageDir) => {

83+

const packageJsonPath = path.join(repoRoot, packageDir, "package.json");

84+

return (

85+

fs.existsSync(packageJsonPath) && isPublishablePluginPackage(readJsonFile(packageJsonPath))

86+

);

87+

})

88+

.toSorted((left, right) => left.localeCompare(right));

89+

}

90+
91+

export function listPluginNpmRuntimeBuildOutputs(plan) {

92+

return Object.keys(plan.entry)

93+

.map((entryKey) => `./dist/${entryKey}.js`)

94+

.toSorted((left, right) => left.localeCompare(right));

95+

}

96+
97+

export function resolvePluginNpmRuntimePackageFiles(plan) {

98+

const merged = new Set(

99+

Array.isArray(plan.packageJson.files)

100+

? plan.packageJson.files.filter((entry) => typeof entry === "string")

101+

: [],

102+

);

103+

merged.add("dist/**");

104+

if (packageRelativePathExists(plan.packageDir, "openclaw.plugin.json")) {

105+

merged.add("openclaw.plugin.json");

106+

}

107+

if (packageRelativePathExists(plan.packageDir, "README.md")) {

108+

merged.add("README.md");

109+

}

110+

if (packageRelativePathExists(plan.packageDir, "SKILL.md")) {

111+

merged.add("SKILL.md");

112+

}

113+

if (packageRelativePathExists(plan.packageDir, "skills")) {

114+

merged.add("skills/**");

115+

}

116+

return [...merged];

117+

}

118+
67119

export function resolvePluginNpmRuntimeBuildPlan(params) {

68120

const repoRoot = path.resolve(params.repoRoot ?? ".");

69121

const packageDir = resolvePackageDir(repoRoot, params.packageDir);

@@ -72,7 +124,7 @@ export function resolvePluginNpmRuntimeBuildPlan(params) {

72124

return null;

73125

}

74126

const packageJson = readJsonFile(packageJsonPath);

75-

if (packageJson.openclaw?.release?.publishToNpm !== true) {

127+

if (!isPublishablePluginPackage(packageJson)) {

76128

return null;

77129

}

78130

@@ -96,7 +148,7 @@ export function resolvePluginNpmRuntimeBuildPlan(params) {

96148

]),

97149

);

98150
99-

return {

151+

const plan = {

100152

repoRoot,

101153

packageDir,

102154

pluginDir,

@@ -115,6 +167,11 @@ export function resolvePluginNpmRuntimeBuildPlan(params) {

115167

? toPackageRuntimeEntry(packageJson.openclaw.setupEntry)

116168

: undefined,

117169

};

170+

return {

171+

...plan,

172+

runtimeBuildOutputs: listPluginNpmRuntimeBuildOutputs(plan),

173+

packageFiles: resolvePluginNpmRuntimePackageFiles(plan),

174+

};

118175

}

119176
120177

export async function buildPluginNpmRuntime(params) {

Original file line numberDiff line numberDiff line change

@@ -1,37 +1,15 @@

1-

import fs from "node:fs";

21

import path from "node:path";

32

import { describe, expect, it } from "vitest";

4-

import { resolvePluginNpmRuntimeBuildPlan } from "../scripts/lib/plugin-npm-runtime-build.mjs";

3+

import {

4+

listPublishablePluginPackageDirs,

5+

resolvePluginNpmRuntimeBuildPlan,

6+

} from "../scripts/lib/plugin-npm-runtime-build.mjs";

57
68

const repoRoot = path.resolve(import.meta.dirname, "..");

79
8-

function readJsonFile(filePath: string): Record<string, unknown> {

9-

return JSON.parse(fs.readFileSync(filePath, "utf8")) as Record<string, unknown>;

10-

}

11-
12-

function isPublishablePluginPackage(packageJson: Record<string, unknown>): boolean {

13-

const openclaw = packageJson.openclaw as { release?: { publishToNpm?: unknown } } | undefined;

14-

return openclaw?.release?.publishToNpm === true;

15-

}

16-
17-

function listPublishablePluginPackageDirs(): string[] {

18-

const extensionsRoot = path.join(repoRoot, "extensions");

19-

return fs

20-

.readdirSync(extensionsRoot, { withFileTypes: true })

21-

.filter((dirent) => dirent.isDirectory())

22-

.map((dirent) => path.join(extensionsRoot, dirent.name))

23-

.filter((packageDir) => {

24-

const packageJsonPath = path.join(packageDir, "package.json");

25-

return (

26-

fs.existsSync(packageJsonPath) && isPublishablePluginPackage(readJsonFile(packageJsonPath))

27-

);

28-

})

29-

.toSorted((left, right) => left.localeCompare(right));

30-

}

31-
3210

describe("plugin npm runtime build planning", () => {

3311

it("plans package-local runtime entries for every publishable plugin package", () => {

34-

const packageDirs = listPublishablePluginPackageDirs();

12+

const packageDirs = listPublishablePluginPackageDirs({ repoRoot });

3513

expect(packageDirs.length).toBeGreaterThan(0);

3614
3715

const plans = packageDirs.map((packageDir) =>

@@ -46,6 +24,8 @@ describe("plugin npm runtime build planning", () => {

4624

for (const plan of plans) {

4725

expect(plan?.outDir).toBe(path.join(plan?.packageDir ?? "", "dist"));

4826

expect(plan?.runtimeExtensions.every((entry) => entry.startsWith("./dist/"))).toBe(true);

27+

expect(plan?.runtimeBuildOutputs.every((entry) => entry.startsWith("./dist/"))).toBe(true);

28+

expect(plan?.packageFiles).toContain("dist/**");

4929

}

5030

});

5131

@@ -75,5 +55,11 @@ describe("plugin npm runtime build planning", () => {

7555

"runtime-api": path.join(repoRoot, "extensions", "diffs", "runtime-api.ts"),

7656

}),

7757

);

58+

expect(diffsPlan?.packageFiles).toEqual([

59+

"dist/**",

60+

"openclaw.plugin.json",

61+

"README.md",

62+

"skills/**",

63+

]);

7864

});

7965

});