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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
IT之家
IT之家
博客园 - 聂微东
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
小众软件
小众软件
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
量子位
月光博客
月光博客
博客园 - 【当耐特】
博客园 - 叶小钗

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 cli program helpers · openclaw/openclaw@98...
steipete · 2026-06-04 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1+

// Root Commander help, global options, banner, version, and example formatting.

12

import type { Command } from "commander";

23

import { formatDocsLink } from "../../../packages/terminal-core/src/links.js";

34

import { isRich, theme } from "../../../packages/terminal-core/src/theme.js";

@@ -92,6 +93,7 @@ export function configureProgramHelp(

9293

});

9394
9495

const formatHelpOutput = (str: string) => {

96+

// Commander emits plain section labels; decorate them after command-specific help renders.

9597

let output = str;

9698

const isRootHelp = new RegExp(

9799

`^Usage:\\s+${CLI_NAME_PATTERN}\\s+\\[options\\]\\s+\\[command\\]\\s*$`,

Original file line numberDiff line numberDiff line change

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

1+

// Parent-command default action helper that prints help with success exit status.

12

import type { Command } from "commander";

23
34

const parentDefaultHelpCommands = new WeakSet<Command>();

Original file line numberDiff line numberDiff line change

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

1+

// Commander registration for onboard setup flags and lazy onboard runtime execution.

12

import type { Command } from "commander";

23

import { formatDocsLink } from "../../../packages/terminal-core/src/links.js";

34

import { theme } from "../../../packages/terminal-core/src/theme.js";

@@ -63,6 +64,7 @@ function extractCliFlags(cliOption: string): string[] {

6364

}

6465
6566

function resolveOnboardAuthFlags(): OnboardAuthFlag[] {

67+

// Provider manifests can add auth flags; keep duplicate CLI aliases out of Commander.

6668

const seenCliFlags = new Set<string>();

6769

const flags: OnboardAuthFlag[] = [];

6870

for (const flag of [...CORE_ONBOARD_AUTH_FLAGS, ...resolveManifestProviderOnboardAuthFlags()]) {

Original file line numberDiff line numberDiff line change

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

1+

// Sub-CLI registry that lazily wires gateway, models, devices, plugins, and plugin commands.

12

import type { Command } from "commander";

23

import { createLazyImportLoader } from "../../shared/lazy-promise.js";

34

import { resolveCliArgvInvocation } from "../argv-invocation.js";

@@ -53,6 +54,7 @@ function shouldRegisterGatewayRunOnly(name: string, argv: string[]): boolean {

5354

}

5455
5556

async function registerGatewayRunOnly(program: Command): Promise<void> {

57+

// Hot path for `gateway run`: avoid loading the full gateway command tree.

5658

const { addGatewayRunCommand } = await import("../gateway-cli/run-command.js");

5759

removeCommandByName(program, "gateway");

5860

const gateway = addGatewayRunCommand(

Original file line numberDiff line numberDiff line change

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

1+

// Small interactive prompt helpers for CLI confirmations.

12

import { stdin as input, stdout as output } from "node:process";

23

import readline from "node:readline/promises";

34

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

Original file line numberDiff line numberDiff line change

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

1+

// Debug proxy runtime commands for capture sessions, validation, coverage, and blob reads.

12

import { spawn } from "node:child_process";

23

import { randomUUID } from "node:crypto";

34

import process from "node:process";

@@ -70,6 +71,7 @@ export async function runDebugProxyRunCommand(opts: {

7071

port?: number;

7172

commandArgs: string[];

7273

}) {

74+

// Each proxied child command gets its own capture session id for later query/filtering.

7375

if (opts.commandArgs.length === 0) {

7476

throw new Error("proxy run requires a command after --");

7577

}

Original file line numberDiff line numberDiff line change

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

1+

// Commander registration for debug proxy capture, validation, query, and blob commands.

12

import { InvalidArgumentError, type Command } from "commander";

23

import { parseStrictInteger } from "../infra/parse-finite-number.js";

34

import type { CaptureQueryPreset } from "../proxy-capture/types.js";

@@ -10,6 +11,7 @@ const proxyCliRuntimeLoader = createLazyImportLoader<ProxyCliRuntime>(

1011

);

1112
1213

async function loadProxyCliRuntime(): Promise<ProxyCliRuntime> {

14+

// Keep proxy CA/server/sqlite dependencies out of normal CLI startup.

1315

return await proxyCliRuntimeLoader.load();

1416

}

1517
Original file line numberDiff line numberDiff line change

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

1+

// QR/setup-code CLI for mobile/device pairing with local or remote Gateway credentials.

12

import type { Command } from "commander";

23

import { formatDocsLink } from "../../packages/terminal-core/src/links.js";

34

import { theme } from "../../packages/terminal-core/src/theme.js";

@@ -40,6 +41,7 @@ function shouldResolveLocalGatewayPasswordSecret(

4041

cfg: OpenClawConfig,

4142

env: NodeJS.ProcessEnv,

4243

): boolean {

44+

// Default/implicit password auth may require resolving a local SecretRef before encoding setup.

4345

if (trimToUndefined(env.OPENCLAW_GATEWAY_PASSWORD)) {

4446

return false;

4547

}

Original file line numberDiff line numberDiff line change

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

1+

// CLI respawn skip policy for help, interactive TTY commands, and foreground Gateway runs.

12

import { resolveCliArgvInvocation } from "./argv-invocation.js";

23

import { getCommandPositionalsWithRootOptions } from "./argv.js";

34
Original file line numberDiff line numberDiff line change

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

1+

// Cached startup metadata readers for precomputed root and subcommand help text.

12

import { readCliStartupMetadata } from "./startup-metadata.js";

23
34

export type PrecomputedSubcommandHelpName = "doctor" | "gateway" | "models" | "plugins";

@@ -21,6 +22,7 @@ function loadPrecomputedHelpText(

2122

cache: string | null | undefined,

2223

setCache: (value: string | null) => void,

2324

): string | null {

25+

// Missing metadata is expected in source checkouts; fall back to live Commander help.

2426

if (cache !== undefined) {

2527

return cache;

2628

}