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

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

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
docs: document plugin install utilities · openclaw/opencl...
steipete · 2026-06-05 · via Recent Commits to openclaw:main

@@ -1,3 +1,9 @@

1+

/**

2+

* Onboarding plugin installation flow.

3+

*

4+

* It selects local, ClawHub, npm, or override install sources; records durable

5+

* install metadata; and enables plugins requested by setup workflows.

6+

*/

17

import fs from "node:fs";

28

import path from "node:path";

39

import { uniqueStrings } from "@openclaw/normalization-core/string-normalization";

@@ -50,6 +56,7 @@ type InstallPluginFromClawHubResult = Awaited<

5056

const ONBOARDING_PLUGIN_INSTALL_TIMEOUT_MS = 5 * 60 * 1000;

5157

const ONBOARDING_PLUGIN_INSTALL_WATCHDOG_TIMEOUT_MS = ONBOARDING_PLUGIN_INSTALL_TIMEOUT_MS + 5_000;

525859+

/** Catalog entry used by onboarding to offer or require a plugin install. */

5360

export type OnboardingPluginInstallEntry = {

5461

pluginId: string;

5562

label: string;

@@ -58,8 +65,10 @@ export type OnboardingPluginInstallEntry = {

5865

preferRemoteInstall?: boolean;

5966

};

606768+

/** Outcome status for a single onboarding plugin install attempt. */

6169

export type OnboardingPluginInstallStatus = "installed" | "skipped" | "failed" | "timed_out";

627071+

/** Config and status returned after attempting an onboarding plugin install. */

6372

export type OnboardingPluginInstallResult = {

6473

cfg: OpenClawConfig;

6574

installed: boolean;

@@ -74,6 +83,8 @@ function shouldFallbackClawHubToNpm(params: {

7483

if (!isOpenClawOrgNpmSpec(params.npmSpec)) {

7584

return false;

7685

}

86+

// Only official OpenClaw npm packages are safe fallback targets for ClawHub

87+

// availability failures; arbitrary npm fallbacks would change trust source.

7788

return (

7889

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

7990

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.VERSION_NOT_FOUND ||

@@ -238,6 +249,8 @@ function resolveLocalPath(params: {

238249

for (const candidate of candidates) {

239250

try {

240251

const resolved = fs.realpathSync(candidate);

252+

// Local plugin paths must stay inside the current repo/workspace roots so

253+

// catalog metadata cannot point setup at arbitrary filesystem locations.

241254

if (

242255

!bases.some((base) => {

243256

const realBase = resolveRealDirectory(base);

@@ -334,6 +347,8 @@ function resolveInstallDefaultChoice(params: {

334347

return "local";

335348

}

336349

const updateChannel = cfg.update?.channel;

350+

// Dev builds prefer checked-out local plugins; stable/beta prefer published

351+

// artifacts so installed records match the user's release channel.

337352

if (updateChannel === "dev") {

338353

return "local";

339354

}

@@ -411,6 +426,8 @@ async function promptInstallChoice(params: {

411426

realSources.push("local");

412427

}

413428

if (realSources.length === 1) {

429+

// Callers that already selected a plugin/channel can skip an extra prompt

430+

// when there is only one viable source.

414431

return realSources[0];

415432

}

416433

}

@@ -785,6 +802,8 @@ async function installPluginFromOverride(params: {

785802

runtime.log?.(

786803

`Using plugin install override for ${sanitizeTerminalText(entry.pluginId)} from ${PLUGIN_INSTALL_OVERRIDES_ENV} (${ALLOW_PLUGIN_INSTALL_OVERRIDES_ENV}=1).`,

787804

);

805+

// Overrides are explicit operator/developer input and intentionally bypass

806+

// catalog trust defaults while still recording the resulting install source.

788807

const installOutcome =

789808

params.override.kind === "npm"

790809

? await installPluginFromNpmSpecWithProgress({

@@ -965,6 +984,7 @@ async function installPluginFromClawHubSpecWithProgress(params: {

965984

}

966985

}

967986987+

/** Ensures an onboarding plugin is installed, enabled, and recorded in config. */

968988

export async function ensureOnboardingPluginInstalled(params: {

969989

cfg: OpenClawConfig;

970990

entry: OnboardingPluginInstallEntry;

@@ -978,6 +998,8 @@ export async function ensureOnboardingPluginInstalled(params: {

978998

let next = params.cfg;

979999

const installOverride = resolvePluginInstallOverride({ pluginId: entry.pluginId });

9801000

if (installOverride) {

1001+

// Any install override mutates config/install records, so guard it with the

1002+

// same write-mode check as normal installs.

9811003

assertConfigWriteAllowedInCurrentMode();

9821004

return await installPluginFromOverride({

9831005

cfg: next,

@@ -1053,6 +1075,8 @@ export async function ensureOnboardingPluginInstalled(params: {

10531075

assertConfigWriteAllowedInCurrentMode();

1054107610551077

if (choice === "local" && localPath) {

1078+

// Bundled plugin sources are already part of the host checkout; enabling is

1079+

// enough and no install record/load path should be added for that case.

10561080

const enableResult = await applyPluginEnablement({

10571081

cfg: next,

10581082

pluginId: entry.pluginId,

@@ -1164,6 +1188,8 @@ export async function ensureOnboardingPluginInstalled(params: {

11641188

};

11651189

}

116611901191+

// ClawHub package/version misses for official packages can recover through

1192+

// npm, but keep the operator in control before changing install source.

11671193

shouldTryNpm = await prompter.confirm({

11681194

message: t("wizard.plugins.useNpmPackageInstead", {

11691195

spec: sanitizeTerminalText(npmInstallSpec),

@@ -1274,6 +1300,8 @@ export async function ensureOnboardingPluginInstalled(params: {

12741300

);

1275130112761302

if (localPath) {

1303+

// If npm fails and a trusted local checkout exists, offer it as a recovery

1304+

// path instead of leaving setup stuck on the remote artifact.

12771305

const fallback = await prompter.confirm({

12781306

message: t("wizard.plugins.useLocalPluginPathInstead", {

12791307

path: sanitizeTerminalText(localPath),