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

推荐订阅源

J
Java Code Geeks
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
Recent Announcements
Recent Announcements
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
The GitHub Blog
The GitHub Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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 update and agent cli helpers · openclaw/op...
steipete · 2026-06-04 · via Recent Commits to openclaw:main

@@ -1,3 +1,4 @@

1+

// Shared update command primitives for channel resolution, install roots, and subprocess steps.

12

import { spawnSync } from "node:child_process";

23

import fs from "node:fs/promises";

34

import os from "node:os";

@@ -56,6 +57,7 @@ export type UpdateWizardOptions = {

5657

const INVALID_TIMEOUT_ERROR = "--timeout must be a positive integer (seconds)";

5758

const MAX_SAFE_TIMEOUT_SECONDS = Math.floor(Number.MAX_SAFE_INTEGER / 1000);

585960+

/** Parse a CLI timeout in seconds, exiting through the runtime on invalid input. */

5961

export function parseTimeoutMsOrExit(timeout?: string): number | undefined | null {

6062

if (timeout === undefined) {

6163

return undefined;

@@ -76,6 +78,7 @@ const MAX_LOG_CHARS = 8000;

7678

export const DEFAULT_PACKAGE_NAME = "openclaw";

7779

const CORE_PACKAGE_NAMES = new Set([DEFAULT_PACKAGE_NAME]);

788081+

/** Normalize a CLI tag/version/spec into the npm target form accepted by update flows. */

7982

export function normalizeTag(value?: string | null): string | null {

8083

return normalizePackageTagInput(value, ["openclaw", DEFAULT_PACKAGE_NAME]);

8184

}

@@ -91,6 +94,7 @@ function normalizeVersionTag(tag: string): string | null {

91949295

export { readPackageName, readPackageVersion };

939697+

/** Resolve an npm dist-tag or explicit version into a concrete package version. */

9498

export async function resolveTargetVersion(

9599

tag: string,

96100

timeoutMs?: number,

@@ -106,6 +110,7 @@ export async function resolveTargetVersion(

106110

return res.version ?? null;

107111

}

108112113+

/** Return true when `root` is a local git checkout directory. */

109114

export async function isGitCheckout(root: string): Promise<boolean> {

110115

try {

111116

await fs.stat(path.join(root, ".git"));

@@ -120,6 +125,7 @@ async function isCorePackage(root: string): Promise<boolean> {

120125

return Boolean(name && CORE_PACKAGE_NAMES.has(name));

121126

}

122127128+

/** Return true only for existing directories with no entries. */

123129

export async function isEmptyDir(targetPath: string): Promise<boolean> {

124130

try {

125131

const entries = await fs.readdir(targetPath);

@@ -129,6 +135,7 @@ export async function isEmptyDir(targetPath: string): Promise<boolean> {

129135

}

130136

}

131137138+

/** Resolve the checkout path used by source-based self-update. */

132139

export function resolveGitInstallDir(): string {

133140

const override = process.env.OPENCLAW_GIT_DIR?.trim();

134141

if (override) {

@@ -145,6 +152,7 @@ function resolveDefaultGitDir(): string {

145152

return path.join(home, "openclaw");

146153

}

147154155+

/** Prefer the current Node executable, falling back to `node` when run through another shim. */

148156

export function resolveNodeRunner(): string {

149157

const base = normalizeLowercaseStringOrEmpty(path.basename(process.execPath));

150158

if (base === "node" || base === "node.exe") {

@@ -153,6 +161,7 @@ export function resolveNodeRunner(): string {

153161

return "node";

154162

}

155163164+

/** Locate the installed OpenClaw package root that should receive update operations. */

156165

export async function resolveUpdateRoot(): Promise<string> {

157166

return (

158167

(await resolveOpenClawPackageRoot({

@@ -163,6 +172,7 @@ export async function resolveUpdateRoot(): Promise<string> {

163172

);

164173

}

165174175+

/** Run one update subprocess and report bounded stdout/stderr tails to progress listeners. */

166176

export async function runUpdateStep(params: {

167177

name: string;

168178

argv: string[];

@@ -209,6 +219,7 @@ export async function runUpdateStep(params: {

209219

};

210220

}

211221222+

/** Ensure the configured source-update directory exists and points at an OpenClaw checkout. */

212223

export async function ensureGitCheckout(params: {

213224

dir: string;

214225

timeoutMs: number;

@@ -253,6 +264,7 @@ export async function ensureGitCheckout(params: {

253264

return null;

254265

}

255266267+

/** Detect the package manager that owns a global/package OpenClaw install. */

256268

export async function resolveGlobalManager(params: {

257269

root: string;

258270

installKind: "git" | "package" | "unknown";

@@ -279,6 +291,7 @@ const COMPLETION_CACHE_WRITE_TIMEOUT_MS = 30_000;

279291

const COMPLETION_CACHE_MANUAL_REFRESH_HINT =

280292

"Shell tab-completion may be stale; refresh manually with: openclaw completion --write-state";

281293294+

/** Best-effort refresh of shell completion state after a successful update. */

282295

export async function tryWriteCompletionCache(root: string, jsonMode: boolean): Promise<void> {

283296

const binPath = path.join(root, "openclaw.mjs");

284297

if (!(await pathExists(binPath))) {

@@ -322,6 +335,7 @@ export async function tryWriteCompletionCache(root: string, jsonMode: boolean):

322335

}

323336

}

324337338+

/** Adapter used by global-install detection helpers to execute bounded subprocess probes. */

325339

export function createGlobalCommandRunner(): CommandRunner {

326340

return async (argv, options) => {

327341

const res = await runCommandWithTimeout(argv, options);