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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Vercel News
Vercel News
C
Check Point Blog
G
Google Developers Blog
博客园 - 司徒正美
量子位
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
A
About on SuperTechFans
美团技术团队
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
U
Unit 42

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
Add packed CLI smoke checks for release packaging (#70685...
Takhoffman · 2026-04-24 · via Recent Commits to openclaw:main

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

1010

realpathSync,

1111

rmSync,

1212

} from "node:fs";

13+

import { builtinModules } from "node:module";

1314

import { tmpdir } from "node:os";

1415

import { isAbsolute, join, relative } from "node:path";

1516

import { pathToFileURL } from "node:url";

@@ -20,9 +21,11 @@ import {

2021

collectBundledPluginRootRuntimeMirrorErrors,

2122

collectRootDistBundledRuntimeMirrors,

2223

collectRuntimeDependencySpecs,

24+

packageNameFromSpecifier,

2325

} from "./lib/bundled-plugin-root-runtime-mirrors.mjs";

2426

import { runInstalledWorkspaceBootstrapSmoke } from "./lib/workspace-bootstrap-smoke.mjs";

2527

import { parseReleaseVersion, resolveNpmCommandInvocation } from "./openclaw-npm-release-check.ts";

28+

import { createRequire } from "node:module";

26292730

type InstalledPackageJson = {

2831

version?: string;

@@ -47,6 +50,13 @@ const LEGACY_CONTEXT_ENGINE_UNRESOLVED_RUNTIME_MARKER =

4750

const PUBLISHED_BUNDLED_RUNTIME_SIDECAR_PATHS = BUNDLED_RUNTIME_SIDECAR_PATHS.filter(

4851

(relativePath) => listBundledPluginPackArtifacts().includes(relativePath),

4952

);

53+

const NODE_BUILTIN_MODULES = new Set(builtinModules.map((name) => name.replace(/^node:/u, "")));

54+

const MAX_INSTALLED_ROOT_PACKAGE_JSON_BYTES = 1024 * 1024;

55+

const MAX_INSTALLED_ROOT_DIST_JS_BYTES = 2 * 1024 * 1024;

56+

const MAX_INSTALLED_ROOT_DIST_JS_FILES = 5000;

57+

const ROOT_DIST_JAVASCRIPT_MODULE_FILE_RE = /\.(?:c|m)?js$/u;

58+

const require = createRequire(import.meta.url);

59+

const acorn = require("acorn") as typeof import("acorn");

50605161

export type PublishedInstallScenario = {

5262

name: string;

@@ -101,6 +111,7 @@ export function collectInstalledPackageErrors(params: {

101111

}

102112103113

errors.push(...collectInstalledContextEngineRuntimeErrors(params.packageRoot));

114+

errors.push(...collectInstalledRootDependencyManifestErrors(params.packageRoot));

104115

errors.push(...collectInstalledMirroredRootDependencyManifestErrors(params.packageRoot));

105116106117

return errors;

@@ -131,7 +142,7 @@ function listDistJavaScriptFiles(packageRoot: string): string[] {

131142

pending.push(entryPath);

132143

continue;

133144

}

134-

if (entry.isFile() && entry.name.endsWith(".js")) {

145+

if (entry.isFile() && ROOT_DIST_JAVASCRIPT_MODULE_FILE_RE.test(entry.name)) {

135146

files.push(entryPath);

136147

}

137148

}

@@ -154,6 +165,183 @@ export function collectInstalledContextEngineRuntimeErrors(packageRoot: string):

154165

return errors;

155166

}

156167168+

function listInstalledRootDistJavaScriptFiles(packageRoot: string): string[] {

169+

const distDir = join(packageRoot, "dist");

170+

if (!existsSync(distDir)) {

171+

return [];

172+

}

173+174+

const pending = [distDir];

175+

const files: string[] = [];

176+

while (pending.length > 0) {

177+

const currentDir = pending.pop();

178+

if (!currentDir) {

179+

continue;

180+

}

181+

for (const entry of readdirSync(currentDir, { withFileTypes: true })) {

182+

const entryPath = join(currentDir, entry.name);

183+

const relativePath = relative(distDir, entryPath).replaceAll("\\", "/");

184+

if (relativePath.startsWith("extensions/")) {

185+

continue;

186+

}

187+

if (entry.isDirectory()) {

188+

pending.push(entryPath);

189+

continue;

190+

}

191+

if (entry.isFile() && ROOT_DIST_JAVASCRIPT_MODULE_FILE_RE.test(entry.name)) {

192+

files.push(entryPath);

193+

}

194+

}

195+

}

196+197+

return files;

198+

}

199+200+

type ParsedImportSpecifiersResult =

201+

| { ok: true; specifiers: Set<string> }

202+

| { ok: false; error: string };

203+204+

function extractLiteralSpecifier(node: unknown): string | null {

205+

if (!node || typeof node !== "object") {

206+

return null;

207+

}

208+

const candidate = node as { type?: string; value?: unknown };

209+

if (candidate.type === "Literal" && typeof candidate.value === "string") {

210+

return candidate.value;

211+

}

212+

return null;

213+

}

214+215+

function extractJavaScriptImportSpecifiers(source: string): ParsedImportSpecifiersResult {

216+

const specifiers = new Set<string>();

217+

let program: unknown;

218+

try {

219+

program = acorn.parse(source, {

220+

allowHashBang: true,

221+

ecmaVersion: "latest",

222+

sourceType: "module",

223+

});

224+

} catch (error) {

225+

return { ok: false, error: formatErrorMessage(error) };

226+

}

227+228+

const visited = new Set<unknown>();

229+

const pending: unknown[] = [program];

230+

while (pending.length > 0) {

231+

const current = pending.pop();

232+

if (!current || typeof current !== "object" || visited.has(current)) {

233+

continue;

234+

}

235+

visited.add(current);

236+

const node = current as Record<string, unknown>;

237+

const nodeType = typeof node.type === "string" ? node.type : null;

238+239+

if (nodeType === "ImportDeclaration") {

240+

const specifier = extractLiteralSpecifier(node.source);

241+

if (specifier) {

242+

specifiers.add(specifier);

243+

}

244+

} else if (nodeType === "ExportAllDeclaration" || nodeType === "ExportNamedDeclaration") {

245+

const specifier = extractLiteralSpecifier(node.source);

246+

if (specifier) {

247+

specifiers.add(specifier);

248+

}

249+

} else if (nodeType === "ImportExpression") {

250+

const specifier = extractLiteralSpecifier(node.source);

251+

if (specifier) {

252+

specifiers.add(specifier);

253+

}

254+

} else if (nodeType === "CallExpression") {

255+

const callee = node.callee as { type?: string; name?: string } | undefined;

256+

const args = Array.isArray(node.arguments) ? node.arguments : [];

257+

if (callee?.type === "Identifier" && callee.name === "require" && args.length === 1) {

258+

const specifier = extractLiteralSpecifier(args[0]);

259+

if (specifier) {

260+

specifiers.add(specifier);

261+

}

262+

}

263+

}

264+265+

for (const value of Object.values(node)) {

266+

if (Array.isArray(value)) {

267+

pending.push(...value);

268+

} else if (value && typeof value === "object") {

269+

pending.push(value);

270+

}

271+

}

272+

}

273+274+

return { ok: true, specifiers };

275+

}

276+277+

export function collectInstalledRootDependencyManifestErrors(packageRoot: string): string[] {

278+

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

279+

if (!existsSync(packageJsonPath)) {

280+

return ["installed package is missing package.json."];

281+

}

282+

const packageJsonStat = lstatSync(packageJsonPath);

283+

if (!packageJsonStat.isFile() || packageJsonStat.size > MAX_INSTALLED_ROOT_PACKAGE_JSON_BYTES) {

284+

return [

285+

`installed package.json is invalid or exceeds ${MAX_INSTALLED_ROOT_PACKAGE_JSON_BYTES} bytes.`,

286+

];

287+

}

288+

let rootPackageJson: InstalledPackageJson;

289+

try {

290+

rootPackageJson = JSON.parse(readFileSync(packageJsonPath, "utf8")) as InstalledPackageJson;

291+

} catch (error) {

292+

return [`installed package.json could not be parsed: ${formatErrorMessage(error)}.`];

293+

}

294+

const declaredRuntimeDeps = new Set([

295+

...Object.keys(rootPackageJson.dependencies ?? {}),

296+

...Object.keys(rootPackageJson.optionalDependencies ?? {}),

297+

]);

298+

const distFiles = listInstalledRootDistJavaScriptFiles(packageRoot);

299+

if (distFiles.length > MAX_INSTALLED_ROOT_DIST_JS_FILES) {

300+

return [

301+

`installed package root dist contains ${distFiles.length} JavaScript files, exceeding the ${MAX_INSTALLED_ROOT_DIST_JS_FILES} file scan limit.`,

302+

];

303+

}

304+

const missingImporters = new Map<string, Set<string>>();

305+306+

for (const filePath of distFiles) {

307+

const fileStat = lstatSync(filePath);

308+

if (!fileStat.isFile() || fileStat.size > MAX_INSTALLED_ROOT_DIST_JS_BYTES) {

309+

const relativePath = relative(join(packageRoot, "dist"), filePath).replaceAll("\\", "/");

310+

return [

311+

`installed package root dist file '${relativePath}' is invalid or exceeds ${MAX_INSTALLED_ROOT_DIST_JS_BYTES} bytes.`,

312+

];

313+

}

314+

const source = readFileSync(filePath, "utf8");

315+

const relativePath = relative(join(packageRoot, "dist"), filePath).replaceAll("\\", "/");

316+

const parsedSpecifiers = extractJavaScriptImportSpecifiers(source);

317+

if (!parsedSpecifiers.ok) {

318+

return [

319+

`installed package root dist file '${relativePath}' could not be parsed for runtime dependency verification: ${parsedSpecifiers.error}.`,

320+

];

321+

}

322+

for (const specifier of parsedSpecifiers.specifiers) {

323+

const dependencyName = packageNameFromSpecifier(specifier);

324+

if (

325+

!dependencyName ||

326+

NODE_BUILTIN_MODULES.has(dependencyName) ||

327+

declaredRuntimeDeps.has(dependencyName)

328+

) {

329+

continue;

330+

}

331+

const importers = missingImporters.get(dependencyName) ?? new Set<string>();

332+

importers.add(relativePath);

333+

missingImporters.set(dependencyName, importers);

334+

}

335+

}

336+337+

return [...missingImporters.entries()]

338+

.map(([dependencyName, importers]) => {

339+

const importerList = [...importers].toSorted((left, right) => left.localeCompare(right));

340+

return `installed package root is missing declared runtime dependency '${dependencyName}' for dist importers: ${importerList.join(", ")}. Add it to package.json dependencies/optionalDependencies.`;

341+

})

342+

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

343+

}

344+157345

export function resolveInstalledBinaryPath(prefixDir: string, platform = process.platform): string {

158346

return platform === "win32"

159347

? join(prefixDir, "openclaw.cmd")