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

推荐订阅源

博客园_首页
Y
Y Combinator Blog
Engineering at Meta
Engineering at Meta
D
Docker
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
腾讯CDC
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
MyScale Blog
MyScale Blog
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
test(plugins): add npm runtime build sweep · openclaw/ope...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -0,0 +1,112 @@

1+

#!/usr/bin/env node

2+3+

import fs from "node:fs";

4+

import path from "node:path";

5+

import { pathToFileURL } from "node:url";

6+

import {

7+

buildPluginNpmRuntime,

8+

resolvePluginNpmRuntimeBuildPlan,

9+

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

10+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+34+

function parseArgs(argv) {

35+

const packageDirs = [];

36+

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

37+

const arg = argv[index];

38+

if (arg === "--package") {

39+

const packageDir = argv[index + 1];

40+

if (!packageDir) {

41+

throw new Error("missing value for --package");

42+

}

43+

packageDirs.push(packageDir);

44+

index += 1;

45+

continue;

46+

}

47+

throw new Error(

48+

"usage: node scripts/check-plugin-npm-runtime-builds.mjs [--package extensions/<id> ...]",

49+

);

50+

}

51+

return { packageDirs };

52+

}

53+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+60+

export async function checkPluginNpmRuntimeBuilds(params = {}) {

61+

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

62+

const packageDirs =

63+

params.packageDirs?.length > 0

64+

? params.packageDirs

65+

: listPublishablePluginPackageDirs(repoRoot);

66+

const rows = [];

67+

for (const packageDir of packageDirs) {

68+

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

69+

if (!plan) {

70+

throw new Error(`${packageDir} did not produce a package-local runtime build plan`);

71+

}

72+

const result = await buildPluginNpmRuntime({

73+

repoRoot,

74+

packageDir,

75+

logLevel: params.logLevel ?? "warn",

76+

});

77+

const missing = listMissingRuntimeOutputs(result);

78+

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+

);

84+

}

85+

rows.push({

86+

pluginDir: result.pluginDir,

87+

entryCount: Object.keys(result.entry).length,

88+

copiedStaticAssets: result.copiedStaticAssets,

89+

});

90+

}

91+

return rows;

92+

}

93+94+

if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {

95+

try {

96+

const args = parseArgs(process.argv.slice(2));

97+

const rows = await checkPluginNpmRuntimeBuilds(args);

98+

console.log(`built ${rows.length} publishable plugin runtimes`);

99+

for (const row of rows) {

100+

console.log(

101+

[

102+

row.pluginDir,

103+

row.entryCount,

104+

row.copiedStaticAssets.length > 0 ? row.copiedStaticAssets.join(",") : "-",

105+

].join("\t"),

106+

);

107+

}

108+

} catch (error) {

109+

console.error(error instanceof Error ? error.message : String(error));

110+

process.exitCode = 1;

111+

}

112+

}