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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
量子位
S
SegmentFault 最新的问题
博客园 - 聂微东
博客园 - 【当耐特】
J
Java Code Geeks
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
V
V2EX
人人都是产品经理
人人都是产品经理
博客园 - Franky
罗磊的独立博客
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research

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
fix(canvas): guard native A2UI resources · openclaw/openc...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
1+

#!/usr/bin/env node

2+3+

// Keeps the native OpenClawKit Canvas A2UI resources in sync with the plugin-owned bundle.

4+

import { spawnSync } from "node:child_process";

5+

import fs from "node:fs/promises";

6+

import { tmpdir } from "node:os";

7+

import path from "node:path";

8+

import { fileURLToPath, pathToFileURL } from "node:url";

9+10+

const rootDir = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");

11+

const REQUIRED_RESOURCE_FILES = ["a2ui.bundle.js", "index.html"];

12+13+

export function getNativeA2uiResourcePaths(repoRoot = rootDir) {

14+

return {

15+

sourceDir: path.join(repoRoot, "extensions", "canvas", "src", "host", "a2ui"),

16+

nativeDir: path.join(

17+

repoRoot,

18+

"apps",

19+

"shared",

20+

"OpenClawKit",

21+

"Sources",

22+

"OpenClawKit",

23+

"Resources",

24+

"CanvasA2UI",

25+

),

26+

};

27+

}

28+29+

function normalizeRelativePath(filePath) {

30+

return filePath.split(path.sep).join("/");

31+

}

32+33+

async function listRelativeFiles(dir, baseDir = dir) {

34+

let entries;

35+

try {

36+

entries = await fs.readdir(dir, { withFileTypes: true });

37+

} catch (error) {

38+

if (error?.code === "ENOENT") {

39+

return [];

40+

}

41+

throw error;

42+

}

43+44+

const files = [];

45+

for (const entry of entries) {

46+

const entryPath = path.join(dir, entry.name);

47+

if (entry.isDirectory()) {

48+

files.push(...(await listRelativeFiles(entryPath, baseDir)));

49+

continue;

50+

}

51+

files.push(normalizeRelativePath(path.relative(baseDir, entryPath)));

52+

}

53+

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

54+

}

55+56+

function formatList(values) {

57+

return values.length === 0 ? "(none)" : values.map((value) => `- ${value}`).join("\n");

58+

}

59+60+

async function assertSourceResourcesExist(sourceDir) {

61+

const missing = [];

62+

for (const fileName of REQUIRED_RESOURCE_FILES) {

63+

try {

64+

await fs.stat(path.join(sourceDir, fileName));

65+

} catch (error) {

66+

if (error?.code === "ENOENT") {

67+

missing.push(fileName);

68+

continue;

69+

}

70+

throw error;

71+

}

72+

}

73+

if (missing.length > 0) {

74+

throw new Error(

75+

`Missing generated A2UI resources. Run "pnpm canvas:a2ui:bundle".\nMissing:\n${formatList(missing)}`,

76+

);

77+

}

78+

}

79+80+

export async function syncNativeA2uiResources({ sourceDir, nativeDir }) {

81+

await assertSourceResourcesExist(sourceDir);

82+

await fs.rm(nativeDir, { recursive: true, force: true });

83+

await fs.mkdir(nativeDir, { recursive: true });

84+

for (const fileName of REQUIRED_RESOURCE_FILES) {

85+

await fs.copyFile(path.join(sourceDir, fileName), path.join(nativeDir, fileName));

86+

}

87+

}

88+89+

export async function checkNativeA2uiResources({ sourceDir, nativeDir }) {

90+

await assertSourceResourcesExist(sourceDir);

91+

const actualFiles = await listRelativeFiles(nativeDir);

92+

const expectedFiles = [...REQUIRED_RESOURCE_FILES].toSorted((left, right) =>

93+

left.localeCompare(right),

94+

);

95+

const missing = expectedFiles.filter((fileName) => !actualFiles.includes(fileName));

96+

const unexpected = actualFiles.filter((fileName) => !expectedFiles.includes(fileName));

97+

if (missing.length > 0 || unexpected.length > 0) {

98+

throw new Error(

99+

[

100+

'Native A2UI resource tree is stale. Run "pnpm canvas:a2ui:native:sync".',

101+

`Missing:\n${formatList(missing)}`,

102+

`Unexpected:\n${formatList(unexpected)}`,

103+

].join("\n"),

104+

);

105+

}

106+107+

const mismatched = [];

108+

for (const fileName of expectedFiles) {

109+

const [source, native] = await Promise.all([

110+

fs.readFile(path.join(sourceDir, fileName)),

111+

fs.readFile(path.join(nativeDir, fileName)),

112+

]);

113+

if (!source.equals(native)) {

114+

mismatched.push(fileName);

115+

}

116+

}

117+

if (mismatched.length > 0) {

118+

throw new Error(

119+

`Native A2UI resources differ from generated source. Run "pnpm canvas:a2ui:native:sync".\nMismatched:\n${formatList(mismatched)}`,

120+

);

121+

}

122+

}

123+124+

function parseMode(argv) {

125+

const check = argv.includes("--check");

126+

const write = argv.includes("--write");

127+

if (check === write) {

128+

throw new Error("Usage: node scripts/sync-native-a2ui.mjs --check|--write");

129+

}

130+

return write ? "write" : "check";

131+

}

132+133+

function bundleA2ui(repoRoot = rootDir, env = process.env) {

134+

const result = spawnSync(process.execPath, ["scripts/bundle-a2ui.mjs"], {

135+

cwd: repoRoot,

136+

env,

137+

stdio: "inherit",

138+

});

139+

if (result.status !== 0) {

140+

throw new Error("A2UI bundling failed before native resource sync.");

141+

}

142+

}

143+144+

async function withFreshBundleCheckSource(sourceDir, run) {

145+

const tempDir = await fs.mkdtemp(path.join(tmpdir(), "openclaw-a2ui-native-check-"));

146+

try {

147+

const checkSourceDir = path.join(tempDir, "a2ui");

148+

await fs.mkdir(checkSourceDir, { recursive: true });

149+

await fs.copyFile(path.join(sourceDir, "index.html"), path.join(checkSourceDir, "index.html"));

150+

bundleA2ui(rootDir, {

151+

...process.env,

152+

OPENCLAW_A2UI_BUNDLE_OUT: path.join(checkSourceDir, "a2ui.bundle.js"),

153+

OPENCLAW_A2UI_BUNDLE_HASH_FILE: path.join(tempDir, ".bundle.hash"),

154+

});

155+

await run(checkSourceDir);

156+

} finally {

157+

await fs.rm(tempDir, { recursive: true, force: true });

158+

}

159+

}

160+161+

async function main() {

162+

const mode = parseMode(process.argv.slice(2));

163+

const paths = getNativeA2uiResourcePaths();

164+

if (mode === "write") {

165+

bundleA2ui();

166+

await syncNativeA2uiResources(paths);

167+

console.log("[canvas] native A2UI resources synced.");

168+

return;

169+

}

170+

await withFreshBundleCheckSource(paths.sourceDir, async (sourceDir) => {

171+

await checkNativeA2uiResources({ sourceDir, nativeDir: paths.nativeDir });

172+

});

173+

console.log("[canvas] native A2UI resources up to date.");

174+

}

175+176+

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

177+

await main().catch(

178+

/** @param {unknown} error */ (error) => {

179+

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

180+

process.exit(1);

181+

},

182+

);

183+

}