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

推荐订阅源

博客园 - Franky
U
Unit 42
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
量子位
IT之家
IT之家
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Recent Announcements
Recent Announcements
V
Visual Studio Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
雷峰网
雷峰网
博客园 - 聂微东
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
博客园 - 司徒正美
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏

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
fix(cli): fast-path bare channels help (#77659) · opencla...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main

@@ -1,24 +1,35 @@

11

import type { Command } from "commander";

22

import { danger } from "../globals.js";

3-

import { listBundledPackageChannelMetadata } from "../plugins/bundled-package-channel-metadata.js";

43

import { defaultRuntime } from "../runtime.js";

54

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

65

import { formatDocsLink } from "../terminal/links.js";

76

import { theme } from "../terminal/theme.js";

7+

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

88

import { runChannelLogin, runChannelLogout } from "./channel-auth.js";

99

import { formatCliChannelOptions } from "./channel-options.js";

1010

import { runCommandWithRuntime } from "./cli-utils.js";

1111

import { hasExplicitOptions } from "./command-options.js";

1212

import { formatHelpExamples } from "./help-format.js";

1313

import { applyParentDefaultHelpAction } from "./program/parent-default-help.js";

14+

import { normalizeWindowsArgv } from "./windows-argv.js";

14151516

type ChannelsCommandsModule = typeof import("../commands/channels.js");

17+

type BundledPackageChannelMetadataModule =

18+

typeof import("../plugins/bundled-package-channel-metadata.js");

16191720

const optionNamesRemove = ["channel", "account", "delete"] as const;

182122+

type RegisterChannelsCliOptions = {

23+

includeSetupOptions?: boolean;

24+

};

25+1926

const channelsCommandsLoader = createLazyImportLoader<ChannelsCommandsModule>(

2027

() => import("../commands/channels.js"),

2128

);

29+

const bundledPackageChannelMetadataLoader =

30+

createLazyImportLoader<BundledPackageChannelMetadataModule>(

31+

() => import("../plugins/bundled-package-channel-metadata.js"),

32+

);

22332334

function loadChannelsCommands(): Promise<ChannelsCommandsModule> {

2435

return channelsCommandsLoader.load();

@@ -39,7 +50,19 @@ function getOptionNames(command: Command): string[] {

3950

return command.options.map((option) => option.attributeName());

4051

}

415242-

function addChannelSetupOptions(command: Command): Command {

53+

function shouldRegisterChannelSetupOptions(

54+

argv: string[] = process.argv,

55+

options: RegisterChannelsCliOptions = {},

56+

): boolean {

57+

if (options.includeSetupOptions) {

58+

return true;

59+

}

60+

const { commandPath } = resolveCliArgvInvocation(normalizeWindowsArgv(argv));

61+

return commandPath[0] === "channels" && commandPath[1] === "add";

62+

}

63+64+

async function addChannelSetupOptions(command: Command): Promise<Command> {

65+

const { listBundledPackageChannelMetadata } = await bundledPackageChannelMetadataLoader.load();

4366

const seenFlags = new Set(command.options.map((option) => option.flags));

4467

const channels = listBundledPackageChannelMetadata().toSorted((left, right) => {

4568

const leftOrder = left.order ?? Number.MAX_SAFE_INTEGER;

@@ -64,7 +87,11 @@ function addChannelSetupOptions(command: Command): Command {

6487

return command;

6588

}

668967-

export function registerChannelsCli(program: Command) {

90+

export async function registerChannelsCli(

91+

program: Command,

92+

argv: string[] = process.argv,

93+

options: RegisterChannelsCliOptions = {},

94+

) {

6895

const channelNames = formatCliChannelOptions();

6996

const channels = program

7097

.command("channels")

@@ -163,27 +190,31 @@ export function registerChannelsCli(program: Command) {

163190

});

164191

});

165192166-

addChannelSetupOptions(

167-

channels

168-

.command("add")

169-

.description("Add or update a channel account")

170-

.option("--channel <name>", `Channel (${channelNames})`)

171-

.option("--account <id>", "Account id (default when omitted)")

172-

.option("--name <name>", "Display name for this account")

173-

.option("--token <token>", "Channel token or credential payload")

174-

.option("--token-file <path>", "Read channel token or credential payload from file")

175-

.option("--secret <secret>", "Channel shared secret")

176-

.option("--secret-file <path>", "Read channel shared secret from file")

177-

.option("--bot-token <token>", "Bot token")

178-

.option("--app-token <token>", "App token")

179-

.option("--password <password>", "Channel password or login secret")

180-

.option("--cli-path <path>", "Channel CLI path")

181-

.option("--url <url>", "Channel setup URL")

182-

.option("--base-url <url>", "Channel base URL")

183-

.option("--http-url <url>", "Channel HTTP service URL")

184-

.option("--auth-dir <path>", "Channel auth directory override")

185-

.option("--use-env", "Use env-backed credentials when supported", false),

186-

).action(async (opts, command) => {

193+

const addCommand = channels

194+

.command("add")

195+

.description("Add or update a channel account")

196+

.option("--channel <name>", `Channel (${channelNames})`)

197+

.option("--account <id>", "Account id (default when omitted)")

198+

.option("--name <name>", "Display name for this account")

199+

.option("--token <token>", "Channel token or credential payload")

200+

.option("--token-file <path>", "Read channel token or credential payload from file")

201+

.option("--secret <secret>", "Channel shared secret")

202+

.option("--secret-file <path>", "Read channel shared secret from file")

203+

.option("--bot-token <token>", "Bot token")

204+

.option("--app-token <token>", "App token")

205+

.option("--password <password>", "Channel password or login secret")

206+

.option("--cli-path <path>", "Channel CLI path")

207+

.option("--url <url>", "Channel setup URL")

208+

.option("--base-url <url>", "Channel base URL")

209+

.option("--http-url <url>", "Channel HTTP service URL")

210+

.option("--auth-dir <path>", "Channel auth directory override")

211+

.option("--use-env", "Use env-backed credentials when supported", false);

212+213+

if (shouldRegisterChannelSetupOptions(argv, options)) {

214+

await addChannelSetupOptions(addCommand);

215+

}

216+217+

addCommand.action(async (opts, command) => {

187218

await runChannelsCommand(async () => {

188219

const { channelsAddCommand } = await loadChannelsCommands();

189220

const hasFlags = hasExplicitOptions(command, getOptionNames(command));