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

推荐订阅源

Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler
I
InfoQ
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
The Cloudflare 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
fix(plugins): mirror core root-package deps used by core ...
maxpuppet · 2026-04-29 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import { spawn, spawnSync } from "node:child_process";

22

import { createHash } from "node:crypto";

33

import { EventEmitter } from "node:events";

44

import fs from "node:fs";

5+

import { Module } from "node:module";

56

import os from "node:os";

67

import path from "node:path";

78

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

@@ -2929,3 +2930,224 @@ describe("ensureBundledPluginRuntimeDeps", () => {

29292930

expect(fs.existsSync(path.join(pluginRoot, "node_modules", "zod", "package.json"))).toBe(true);

29302931

});

29312932

});

2933+2934+

describe("MIRRORED_CORE_RUNTIME_DEP_NAMES drift guard", () => {

2935+

// Intentionally not mirrored at runtime: build-only / type-only / TUI-only

2936+

// tooling and packages that resolve transitively through other mirrored deps.

2937+

// If you change this set, document why in the comment beside the entry.

2938+

const KNOWN_UNMIRRORED_BARE_IMPORTS = new Set<string>([

2939+

"@mariozechner/pi-tui", // TUI mode runs from npm-global, not the gateway runtime mirror

2940+

"chalk", // available transitively via mirrored deps

2941+

"file-type", // available transitively via mirrored deps

2942+

"global-agent", // proxy bootstrap, only loaded when HTTP_PROXY is set

2943+

"ipaddr.js", // available transitively via mirrored deps

2944+

"proxy-agent", // available transitively via mirrored deps

2945+

"qrcode", // type-only import in src/media/qr-runtime.ts

2946+

"typescript", // CLI/dev only (api-baseline, jiti-runtime-api)

2947+

]);

2948+2949+

function locateRepoRoot(): string {

2950+

let dir = path.resolve(import.meta.dirname);

2951+

for (let depth = 0; depth < 10; depth += 1) {

2952+

const candidate = path.join(dir, "package.json");

2953+

if (fs.existsSync(candidate)) {

2954+

try {

2955+

const data = JSON.parse(fs.readFileSync(candidate, "utf8")) as { name?: string };

2956+

if (data.name === "openclaw") {

2957+

return dir;

2958+

}

2959+

} catch {

2960+

// fall through

2961+

}

2962+

}

2963+

const parent = path.dirname(dir);

2964+

if (parent === dir) {

2965+

break;

2966+

}

2967+

dir = parent;

2968+

}

2969+

throw new Error("could not locate openclaw repo root from test file");

2970+

}

2971+2972+

function readPackageJsonDeps(packageJsonPath: string): Set<string> {

2973+

const out = new Set<string>();

2974+

if (!fs.existsSync(packageJsonPath)) {

2975+

return out;

2976+

}

2977+

let parsed: {

2978+

dependencies?: Record<string, string>;

2979+

optionalDependencies?: Record<string, string>;

2980+

};

2981+

try {

2982+

parsed = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));

2983+

} catch {

2984+

return out;

2985+

}

2986+

for (const name of Object.keys(parsed.dependencies ?? {})) {

2987+

out.add(name);

2988+

}

2989+

for (const name of Object.keys(parsed.optionalDependencies ?? {})) {

2990+

out.add(name);

2991+

}

2992+

return out;

2993+

}

2994+2995+

function collectExtensionOwnedDeps(repoRoot: string): Set<string> {

2996+

const out = new Set<string>();

2997+

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

2998+

if (!fs.existsSync(extensionsDir)) {

2999+

return out;

3000+

}

3001+

for (const entry of fs.readdirSync(extensionsDir, { withFileTypes: true })) {

3002+

if (!entry.isDirectory()) {

3003+

continue;

3004+

}

3005+

for (const name of readPackageJsonDeps(

3006+

path.join(extensionsDir, entry.name, "package.json"),

3007+

)) {

3008+

out.add(name);

3009+

}

3010+

}

3011+

return out;

3012+

}

3013+3014+

function walkCoreSourceFiles(repoRoot: string): string[] {

3015+

const srcDir = path.join(repoRoot, "src");

3016+

const files: string[] = [];

3017+

const queue: string[] = [srcDir];

3018+

while (queue.length > 0) {

3019+

const current = queue.shift();

3020+

if (!current) {

3021+

continue;

3022+

}

3023+

for (const entry of fs.readdirSync(current, { withFileTypes: true })) {

3024+

const full = path.join(current, entry.name);

3025+

if (entry.isDirectory()) {

3026+

if (entry.name === "node_modules" || entry.name.startsWith(".")) {

3027+

continue;

3028+

}

3029+

queue.push(full);

3030+

continue;

3031+

}

3032+

if (!entry.isFile()) {

3033+

continue;

3034+

}

3035+

if (

3036+

/\.test\.tsx?$/u.test(entry.name) ||

3037+

/\.e2e\.test\.tsx?$/u.test(entry.name) ||

3038+

/\.test-helpers?\.tsx?$/u.test(entry.name) ||

3039+

/\.test-fixture\.tsx?$/u.test(entry.name) ||

3040+

entry.name.endsWith(".d.ts") ||

3041+

!/\.(?:ts|tsx|cjs|mjs|js)$/u.test(entry.name)

3042+

) {

3043+

continue;

3044+

}

3045+

files.push(full);

3046+

}

3047+

}

3048+

return files;

3049+

}

3050+3051+

function packageNameFromBareSpecifier(specifier: string): string | null {

3052+

if (

3053+

specifier.startsWith(".") ||

3054+

specifier.startsWith("/") ||

3055+

specifier.startsWith("node:") ||

3056+

specifier.startsWith("#")

3057+

) {

3058+

return null;

3059+

}

3060+

const [first, second] = specifier.split("/");

3061+

if (!first) {

3062+

return null;

3063+

}

3064+

return first.startsWith("@") && second ? `${first}/${second}` : first;

3065+

}

3066+3067+

// Match value imports (`import x from 'y'`, `import 'y'`, `require('y')`,

3068+

// `import('y')`) but skip `import type` to avoid noise from type-only imports.

3069+

const VALUE_IMPORT_PATTERNS = [

3070+

/(?:^|[;\n])\s*import\s+(?!type\b)(?:[^'"()]+?\s+from\s+)?["']([^"']+)["']/g,

3071+

/\brequire\s*\(\s*["']([^"']+)["']\s*\)/g,

3072+

/\bimport\s*\(\s*["']([^"']+)["']\s*\)/g,

3073+

] as const;

3074+3075+

it("every value-imported root-package dep in src/ is mirrored or owned by an extension", () => {

3076+

const repoRoot = locateRepoRoot();

3077+

const rootDeps = readPackageJsonDeps(path.join(repoRoot, "package.json"));

3078+

const extensionDeps = collectExtensionOwnedDeps(repoRoot);

3079+

const mirroredCore = new Set<string>([

3080+

"@agentclientprotocol/sdk",

3081+

"@lydell/node-pty",

3082+

"croner",

3083+

"dotenv",

3084+

"jiti",

3085+

"json5",

3086+

"jszip",

3087+

"markdown-it",

3088+

"semver",

3089+

"tar",

3090+

"tslog",

3091+

"web-push",

3092+

]);

3093+

const nodeBuiltins = new Set<string>(Module.builtinModules);

3094+3095+

const violations = new Map<string, string>();

3096+

for (const file of walkCoreSourceFiles(repoRoot)) {

3097+

const source = fs.readFileSync(file, "utf8");

3098+

const specifiers = new Set<string>();

3099+

for (const pattern of VALUE_IMPORT_PATTERNS) {

3100+

for (const match of source.matchAll(pattern)) {

3101+

if (match[1]) {

3102+

specifiers.add(match[1]);

3103+

}

3104+

}

3105+

}

3106+

for (const specifier of specifiers) {

3107+

const packageName = packageNameFromBareSpecifier(specifier);

3108+

if (!packageName) {

3109+

continue;

3110+

}

3111+

if (nodeBuiltins.has(packageName)) {

3112+

continue;

3113+

}

3114+

if (packageName === "openclaw" || packageName.startsWith("@openclaw/")) {

3115+

continue;

3116+

}

3117+

if (mirroredCore.has(packageName) || extensionDeps.has(packageName)) {

3118+

continue;

3119+

}

3120+

if (KNOWN_UNMIRRORED_BARE_IMPORTS.has(packageName)) {

3121+

continue;

3122+

}

3123+

if (!rootDeps.has(packageName)) {

3124+

// Not a root runtime dep; not our concern (could be a peer/dev import

3125+

// that resolves through some other path; the mirror does not own it).

3126+

continue;

3127+

}

3128+

if (!violations.has(packageName)) {

3129+

violations.set(packageName, path.relative(repoRoot, file).replaceAll(path.sep, "/"));

3130+

}

3131+

}

3132+

}

3133+3134+

if (violations.size > 0) {

3135+

const summary = [...violations.entries()]

3136+

.toSorted(([left], [right]) => left.localeCompare(right))

3137+

.map(([packageName, filePath]) => ` - ${packageName} (e.g. ${filePath})`)

3138+

.join("\n");

3139+

throw new Error(

3140+

[

3141+

"Bare imports found in src/ that are root-package runtime deps but are neither",

3142+

"in MIRRORED_CORE_RUNTIME_DEP_NAMES nor declared by any extension's package.json.",

3143+

"These will be missing from the runtime-deps mirror at gateway start and Node",

3144+

"will fail to resolve them. Either add the package to MIRRORED_CORE_RUNTIME_DEP_NAMES,",

3145+

"declare it under an owning extension's dependencies, or add it to",

3146+

"KNOWN_UNMIRRORED_BARE_IMPORTS in this test with a comment explaining why.",

3147+

"",

3148+

summary,

3149+

].join("\n"),

3150+

);

3151+

}

3152+

});

3153+

});