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

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
小众软件
小众软件
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
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
fix: allow trusted openclaw peer symlinks · openclaw/open...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -168,6 +168,18 @@ function setupPluginInstallDirs() {

168168

return { tmpDir, pluginDir, extensionsDir };

169169

}

170170171+

function writeMinimalPackagePlugin(pluginDir: string, name: string): void {

172+

fs.writeFileSync(

173+

path.join(pluginDir, "package.json"),

174+

JSON.stringify({

175+

name,

176+

version: "1.0.0",

177+

openclaw: { extensions: ["index.js"] },

178+

}),

179+

);

180+

fs.writeFileSync(path.join(pluginDir, "index.js"), "export {};\n");

181+

}

182+171183

function setupInstallPluginFromDirFixture(params?: {

172184

devDependencies?: Record<string, string>;

173185

optionalDependencies?: Record<string, string>;

@@ -1402,6 +1414,116 @@ describe("installPluginFromArchive", () => {

14021414

},

14031415

);

140414161417+

it.runIf(process.platform !== "win32")(

1418+

"allows package installs when node_modules/openclaw points at the host package root",

1419+

async () => {

1420+

const { pluginDir, extensionsDir, tmpDir } = setupPluginInstallDirs();

1421+

const hostRoot = path.join(tmpDir, "host-openclaw");

1422+

fs.mkdirSync(hostRoot, { recursive: true });

1423+

fs.writeFileSync(path.join(hostRoot, "package.json"), '{"name":"openclaw"}\n');

1424+

vi.mocked(resolveOpenClawPackageRootSync).mockReturnValue(hostRoot);

1425+

writeMinimalPackagePlugin(pluginDir, "openclaw-peer-plugin");

1426+1427+

const nodeModulesDir = path.join(pluginDir, "node_modules");

1428+

fs.mkdirSync(nodeModulesDir, { recursive: true });

1429+

fs.symlinkSync(hostRoot, path.join(nodeModulesDir, "openclaw"), "junction");

1430+1431+

const { result } = await installFromDirWithWarnings({ pluginDir, extensionsDir });

1432+1433+

expect(result.ok).toBe(true);

1434+

},

1435+

);

1436+1437+

it.runIf(process.platform !== "win32")(

1438+

"allows package installs when node_modules/.bin/openclaw points inside the host package root",

1439+

async () => {

1440+

const { pluginDir, extensionsDir, tmpDir } = setupPluginInstallDirs();

1441+

const hostRoot = path.join(tmpDir, "host-openclaw");

1442+

fs.mkdirSync(hostRoot, { recursive: true });

1443+

fs.writeFileSync(path.join(hostRoot, "package.json"), '{"name":"openclaw"}\n');

1444+

const hostBin = path.join(hostRoot, "openclaw.mjs");

1445+

fs.writeFileSync(hostBin, "#!/usr/bin/env node\n");

1446+

vi.mocked(resolveOpenClawPackageRootSync).mockReturnValue(hostRoot);

1447+

writeMinimalPackagePlugin(pluginDir, "openclaw-bin-peer-plugin");

1448+1449+

const binDir = path.join(pluginDir, "node_modules", ".bin");

1450+

fs.mkdirSync(binDir, { recursive: true });

1451+

fs.symlinkSync(hostBin, path.join(binDir, "openclaw"), "file");

1452+1453+

const { result } = await installFromDirWithWarnings({ pluginDir, extensionsDir });

1454+1455+

expect(result.ok).toBe(true);

1456+

},

1457+

);

1458+1459+

it.runIf(process.platform !== "win32")(

1460+

"fails package installs when node_modules/openclaw points outside the host package root",

1461+

async () => {

1462+

const { pluginDir, extensionsDir, tmpDir } = setupPluginInstallDirs();

1463+

const hostRoot = path.join(tmpDir, "host-openclaw");

1464+

const spoofedRoot = path.join(tmpDir, "spoofed-openclaw");

1465+

fs.mkdirSync(hostRoot, { recursive: true });

1466+

fs.mkdirSync(spoofedRoot, { recursive: true });

1467+

fs.writeFileSync(path.join(hostRoot, "package.json"), '{"name":"openclaw"}\n');

1468+

fs.writeFileSync(path.join(spoofedRoot, "package.json"), '{"name":"openclaw"}\n');

1469+

vi.mocked(resolveOpenClawPackageRootSync).mockReturnValue(hostRoot);

1470+

writeMinimalPackagePlugin(pluginDir, "spoofed-openclaw-peer-plugin");

1471+1472+

const nodeModulesDir = path.join(pluginDir, "node_modules");

1473+

fs.mkdirSync(nodeModulesDir, { recursive: true });

1474+

fs.symlinkSync(spoofedRoot, path.join(nodeModulesDir, "openclaw"), "junction");

1475+1476+

const { result } = await installFromDirWithWarnings({ pluginDir, extensionsDir });

1477+1478+

expect(result.ok).toBe(false);

1479+

if (!result.ok) {

1480+

expect(result.code).toBe(PLUGIN_INSTALL_ERROR_CODE.SECURITY_SCAN_FAILED);

1481+

expect(result.error).toContain("node_modules/openclaw");

1482+

}

1483+

},

1484+

);

1485+1486+

it.runIf(process.platform !== "win32")(

1487+

"fails package installs for nested or non-exact openclaw node_modules symlinks",

1488+

async () => {

1489+

const cases = [

1490+

{

1491+

pluginName: "nested-openclaw-peer-plugin",

1492+

relativePath: path.join("node_modules", "vendor", "node_modules", "openclaw"),

1493+

},

1494+

{

1495+

pluginName: "uppercase-openclaw-peer-plugin",

1496+

relativePath: path.join("node_modules", "OpenClaw"),

1497+

},

1498+

{

1499+

pluginName: "trailing-space-openclaw-peer-plugin",

1500+

relativePath: path.join("node_modules", "openclaw "),

1501+

},

1502+

] as const;

1503+1504+

for (const testCase of cases) {

1505+

const { pluginDir, extensionsDir, tmpDir } = setupPluginInstallDirs();

1506+

const hostRoot = path.join(tmpDir, "host-openclaw");

1507+

fs.mkdirSync(hostRoot, { recursive: true });

1508+

fs.writeFileSync(path.join(hostRoot, "package.json"), '{"name":"openclaw"}\n');

1509+

vi.mocked(resolveOpenClawPackageRootSync).mockReturnValue(hostRoot);

1510+

writeMinimalPackagePlugin(pluginDir, testCase.pluginName);

1511+1512+

const symlinkPath = path.join(pluginDir, testCase.relativePath);

1513+

fs.mkdirSync(path.dirname(symlinkPath), { recursive: true });

1514+

fs.symlinkSync(hostRoot, symlinkPath, "junction");

1515+1516+

const { result } = await installFromDirWithWarnings({ pluginDir, extensionsDir });

1517+1518+

expect(result.ok).toBe(false);

1519+

if (!result.ok) {

1520+

expect(result.code).toBe(PLUGIN_INSTALL_ERROR_CODE.SECURITY_SCAN_FAILED);

1521+

expect(result.error).toContain(testCase.relativePath);

1522+

}

1523+

}

1524+

},

1525+

);

1526+14051527

it("does not block package installs for blocked-looking names outside node_modules", async () => {

14061528

const { pluginDir, extensionsDir } = setupPluginInstallDirs();

14071529