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

推荐订阅源

Martin Fowler
Martin Fowler
V
Visual Studio Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
B
Blog
I
InfoQ
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
H
Help Net Security
博客园 - Franky
宝玉的分享
宝玉的分享
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家

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 onboarding helper comments · openclaw/open...
steipete · 2026-06-05 · via Recent Commits to openclaw:main

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

1+

/** Shared helpers for onboarding, reset, gateway checks, and wizard output. */

12

import fs from "node:fs/promises";

23

import path from "node:path";

34

import { inspect } from "node:util";

@@ -42,6 +43,7 @@ export { detectBinary };

4243

export { detectBrowserOpenSupport, openUrl, resolveBrowserOpenCommand };

4344

export { resolveControlUiLinks };

444546+

/** Handles Clack cancellation by exiting through the runtime. */

4547

export function guardCancel<T>(value: T | symbol, runtime: RuntimeEnv): T {

4648

if (isCancel(value)) {

4749

cancel(stylePromptTitle("Setup cancelled.") ?? "Setup cancelled.");

@@ -51,6 +53,7 @@ export function guardCancel<T>(value: T | symbol, runtime: RuntimeEnv): T {

5153

return value;

5254

}

535556+

/** Summarizes existing config values before onboarding overwrites or reuses them. */

5457

export function summarizeExistingConfig(config: OpenClawConfig): string {

5558

const rows: string[] = [];

5659

const defaults = config.agents?.defaults;

@@ -127,6 +130,7 @@ function formatGatewayBind(value: string | undefined): string | undefined {

127130

}

128131

}

129132133+

/** Normalizes gateway token prompts while rejecting JS stringification sentinels. */

130134

export function normalizeGatewayTokenInput(value: unknown): string {

131135

if (typeof value !== "string") {

132136

return "";

@@ -140,6 +144,7 @@ export function normalizeGatewayTokenInput(value: unknown): string {

140144

return trimmed;

141145

}

142146147+

/** Validates gateway password prompt input. */

143148

export function validateGatewayPasswordInput(value: unknown): string | undefined {

144149

if (typeof value !== "string") {

145150

return "Required";

@@ -154,6 +159,7 @@ export function validateGatewayPasswordInput(value: unknown): string | undefined

154159

return undefined;

155160

}

156161162+

/** Prints the onboarding banner. */

157163

export function printWizardHeader(runtime: RuntimeEnv) {

158164

const bannerWidth = 54;

159165

const icon = decorativeEmoji("🦞");

@@ -172,6 +178,7 @@ export function printWizardHeader(runtime: RuntimeEnv) {

172178

runtime.log(header);

173179

}

174180181+

/** Records wizard provenance metadata on config writes. */

175182

export function applyWizardMetadata(

176183

cfg: OpenClawConfig,

177184

params: { command: string; mode: OnboardMode },

@@ -191,6 +198,7 @@ export function applyWizardMetadata(

191198

};

192199

}

193200201+

/** Formats the no-GUI SSH tunnel hint for opening the Control UI remotely. */

194202

export function formatControlUiSshHint(params: {

195203

port: number;

196204

basePath?: string;

@@ -226,6 +234,7 @@ function resolveSshTargetHint(): string {

226234

return `${user}@${host}`;

227235

}

228236237+

/** Ensures workspace bootstrap files and session transcript directories exist. */

229238

export async function ensureWorkspaceAndSessions(

230239

workspaceDir: string,

231240

runtime: RuntimeEnv,

@@ -246,6 +255,7 @@ export async function ensureWorkspaceAndSessions(

246255

runtime.log(`Sessions OK: ${shortenHomePath(sessionsDir)}`);

247256

}

248257258+

/** Returns package manager choices offered by onboarding. */

249259

export function resolveNodeManagerOptions(): Array<{

250260

value: NodeManagerChoice;

251261

label: string;

@@ -257,6 +267,7 @@ export function resolveNodeManagerOptions(): Array<{

257267

];

258268

}

259269270+

/** Moves a path to Trash when it exists, logging a manual-delete fallback on failure. */

260271

export async function moveToTrash(pathname: string, runtime: RuntimeEnv): Promise<void> {

261272

if (!pathname) {

262273

return;

@@ -297,6 +308,7 @@ async function resolveMoveToTrashAllowedRoots(targetPath: string): Promise<strin

297308

return uniqueStrings(allowedRoots);

298309

}

299310311+

/** Deletes onboarding-managed state according to the selected reset scope. */

300312

export async function handleReset(scope: ResetScope, workspaceDir: string, runtime: RuntimeEnv) {

301313

await moveToTrash(resolveConfigPath(), runtime);

302314

if (scope === "config") {

@@ -316,6 +328,7 @@ export async function handleReset(scope: ResetScope, workspaceDir: string, runti

316328

}

317329

}

318330331+

/** Runs a single lightweight gateway probe for onboarding readiness checks. */

319332

export async function probeGatewayReachable(params: {

320333

url: string;

321334

token?: string;

@@ -340,6 +353,7 @@ export async function probeGatewayReachable(params: {

340353

}

341354

}

342355356+

/** Polls gateway reachability until success or deadline. */

343357

export async function waitForGatewayReachable(params: {

344358

url: string;

345359

token?: string;

@@ -395,4 +409,5 @@ function summarizeError(err: unknown): string {

395409

return line.length > 120 ? `${line.slice(0, 119)}…` : line;

396410

}

397411412+

/** Default workspace path shown by onboarding prompts. */

398413

export const DEFAULT_WORKSPACE = DEFAULT_AGENT_WORKSPACE_DIR;