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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

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): share bundled runtime deps install scr...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -1,10 +1,14 @@

1-

import { spawnSync } from "node:child_process";

21

import { createHash } from "node:crypto";

32

import fs from "node:fs";

43

import path from "node:path";

54

import { performance } from "node:perf_hooks";

65

import { pathToFileURL } from "node:url";

76

import semverSatisfies from "semver/functions/satisfies.js";

7+

import {

8+

createBundledRuntimeDependencyInstallArgs,

9+

createBundledRuntimeDependencyInstallEnv,

10+

runBundledRuntimeDependencyNpmInstall,

11+

} from "./lib/bundled-runtime-deps-install.mjs";

812

import { resolveNpmRunner } from "./npm-runner.mjs";

9131014

const TRANSIENT_TEMP_REMOVE_ERROR_CODES = new Set(["EBUSY", "ENOTEMPTY", "EPERM"]);

@@ -905,39 +909,17 @@ function createRuntimeInstallManifest(pluginId, pinnedGroups) {

905909

}

906910907911

function runNpmInstall(params) {

908-

const npmEnv = {

909-

...(params.npmRunner.env ?? process.env),

910-

CI: "1",

911-

npm_config_audit: "false",

912-

npm_config_dry_run: "false",

913-

npm_config_fetch_retries: process.env.npm_config_fetch_retries ?? "5",

914-

npm_config_fetch_retry_maxtimeout: process.env.npm_config_fetch_retry_maxtimeout ?? "120000",

915-

npm_config_fetch_retry_mintimeout: process.env.npm_config_fetch_retry_mintimeout ?? "10000",

916-

npm_config_fetch_timeout: process.env.npm_config_fetch_timeout ?? "300000",

917-

npm_config_fund: "false",

918-

npm_config_legacy_peer_deps: "true",

919-

npm_config_loglevel: "error",

920-

npm_config_package_lock: "false",

921-

npm_config_progress: "false",

922-

npm_config_save: "false",

923-

npm_config_yes: "true",

924-

};

925-

const runSpawnSync = params.spawnSyncImpl ?? spawnSync;

926-

const result = runSpawnSync(params.npmRunner.command, params.npmRunner.args, {

912+

return runBundledRuntimeDependencyNpmInstall({

927913

cwd: params.cwd,

928-

encoding: "utf8",

929-

env: npmEnv,

930-

shell: params.npmRunner.shell,

914+

npmRunner: params.npmRunner,

915+

env: createBundledRuntimeDependencyInstallEnv(params.npmRunner.env ?? process.env, {

916+

ci: true,

917+

quiet: true,

918+

}),

919+

spawnSyncImpl: params.spawnSyncImpl,

931920

stdio: ["ignore", "pipe", "pipe"],

932921

timeout: params.timeoutMs ?? 5 * 60 * 1000,

933-

windowsHide: true,

934-

windowsVerbatimArguments: params.npmRunner.windowsVerbatimArguments,

935922

});

936-

if (result.status === 0) {

937-

return;

938-

}

939-

const output = [result.stderr, result.stdout].filter(Boolean).join("\n").trim();

940-

throw new Error(output || "npm install failed");

941923

}

942924943925

function resolveLegacyRuntimeDepsStampPath(pluginDir) {

@@ -1203,7 +1185,11 @@ function installPluginRuntimeDeps(params) {

12031185

runNpmInstall({

12041186

cwd: tempInstallDir,

12051187

npmRunner: resolveNpmRunner({

1206-

npmArgs: ["install", "--no-audit", "--no-fund", "--ignore-scripts", "--silent"],

1188+

npmArgs: createBundledRuntimeDependencyInstallArgs([], {

1189+

noAudit: true,

1190+

noFund: true,

1191+

silent: true,

1192+

}),

12071193

}),

12081194

});

12091195

}