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

推荐订阅源

The Cloudflare Blog
L
LangChain Blog
WordPress大学
WordPress大学
V
V2EX
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
Recent Announcements
Recent Announcements
GbyAI
GbyAI
博客园 - 叶小钗
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
雷峰网
雷峰网
The GitHub Blog
The GitHub 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
refactor(plugins): declare static runtime assets in packa...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -1,42 +1,88 @@

11

import fs from "node:fs";

22

import path from "node:path";

334-

/**

5-

* Static, non-transpiled runtime assets referenced by built extension code.

6-

*

7-

* `dest` is the root-package dist path. Package-local runtime builds rewrite it

8-

* under the plugin package's own dist directory.

9-

*/

10-

export const STATIC_EXTENSION_ASSETS = [

11-

{

12-

src: "extensions/acpx/src/runtime-internals/mcp-proxy.mjs",

13-

dest: "dist/extensions/acpx/mcp-proxy.mjs",

14-

},

15-

{

16-

src: "extensions/acpx/src/runtime-internals/error-format.mjs",

17-

dest: "dist/extensions/acpx/error-format.mjs",

18-

},

19-

{

20-

src: "extensions/acpx/src/runtime-internals/mcp-command-line.mjs",

21-

dest: "dist/extensions/acpx/mcp-command-line.mjs",

22-

},

23-

{

24-

src: "extensions/diffs/assets/viewer-runtime.js",

25-

dest: "dist/extensions/diffs/assets/viewer-runtime.js",

26-

},

27-

];

4+

function toPosixPath(value) {

5+

return String(value ?? "").replaceAll("\\", "/");

6+

}

7+8+

function readJsonFile(filePath, fsImpl) {

9+

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

10+

}

11+12+

function normalizePackageRelativePath(value) {

13+

const normalized = toPosixPath(value)

14+

.trim()

15+

.replace(/^\.\/+/u, "");

16+

if (!normalized || normalized.startsWith("../") || normalized.includes("/../")) {

17+

return "";

18+

}

19+

return normalized;

20+

}

21+22+

function listExtensionPackageDirs(rootDir, fsImpl) {

23+

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

24+

if (!fsImpl.existsSync(extensionsRoot)) {

25+

return [];

26+

}

27+

return fsImpl

28+

.readdirSync(extensionsRoot, { withFileTypes: true })

29+

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

30+

.map((entry) => ({

31+

dirName: entry.name,

32+

packageDir: path.join(extensionsRoot, entry.name),

33+

}))

34+

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

35+

}

36+37+

function readPackageStaticAssetEntries(packageJson) {

38+

const entries = packageJson.openclaw?.build?.staticAssets;

39+

return Array.isArray(entries) ? entries : [];

40+

}

41+42+

export function discoverStaticExtensionAssets(params = {}) {

43+

const rootDir = params.rootDir ?? process.cwd();

44+

const fsImpl = params.fs ?? fs;

45+

const assets = [];

46+

for (const { dirName, packageDir } of listExtensionPackageDirs(rootDir, fsImpl)) {

47+

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

48+

if (!fsImpl.existsSync(packageJsonPath)) {

49+

continue;

50+

}

51+

const packageJson = readJsonFile(packageJsonPath, fsImpl);

52+

for (const entry of readPackageStaticAssetEntries(packageJson)) {

53+

const source = normalizePackageRelativePath(entry?.source);

54+

const output = normalizePackageRelativePath(entry?.output);

55+

if (!source || !output) {

56+

continue;

57+

}

58+

assets.push({

59+

pluginDir: dirName,

60+

src: toPosixPath(path.posix.join("extensions", dirName, source)),

61+

dest: toPosixPath(path.posix.join("dist", "extensions", dirName, output)),

62+

});

63+

}

64+

}

65+

return assets.toSorted((left, right) => left.dest.localeCompare(right.dest));

66+

}

28672968

export function listStaticExtensionAssetOutputs(params = {}) {

30-

const assets = params.assets ?? STATIC_EXTENSION_ASSETS;

69+

const assets = params.assets ?? discoverStaticExtensionAssets(params);

3170

return assets

3271

.map(({ dest }) => dest.replace(/\\/g, "/"))

3372

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

3473

}

357475+

export function listStaticExtensionAssetSources(params = {}) {

76+

const assets = params.assets ?? discoverStaticExtensionAssets(params);

77+

return assets

78+

.map(({ src }) => src.replace(/\\/g, "/"))

79+

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

80+

}

81+3682

export function copyStaticExtensionAssets(params = {}) {

3783

const rootDir = params.rootDir ?? process.cwd();

38-

const assets = params.assets ?? STATIC_EXTENSION_ASSETS;

3984

const fsImpl = params.fs ?? fs;

85+

const assets = params.assets ?? discoverStaticExtensionAssets({ rootDir, fs: fsImpl });

4086

const warn = params.warn ?? console.warn;

4187

for (const { src, dest } of assets) {

4288

const srcPath = path.join(rootDir, src);

@@ -52,8 +98,8 @@ export function copyStaticExtensionAssets(params = {}) {

52985399

export function copyStaticExtensionAssetsForPackage(params) {

54100

const rootDir = params.rootDir ?? process.cwd();

55-

const assets = params.assets ?? STATIC_EXTENSION_ASSETS;

56101

const fsImpl = params.fs ?? fs;

102+

const assets = params.assets ?? discoverStaticExtensionAssets({ rootDir, fs: fsImpl });

57103

const packagePrefix = `extensions/${params.pluginDir}/`;

58104

const rootDistPrefix = `dist/extensions/${params.pluginDir}/`;

59105

const copied = [];