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

推荐订阅源

D
Docker
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
M
MIT News - Artificial intelligence
腾讯CDC
B
Blog RSS Feed
H
Help Net Security
J
Java Code Geeks
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
博客园_首页
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
博客园 - Franky
B
Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 叶小钗
Martin Fowler
Martin Fowler

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
refactor: declare channel add flags in manifests · opencl...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -1,5 +1,6 @@

11

import type { Command } from "commander";

22

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

3+

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

34

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

45

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

56

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

@@ -35,6 +36,31 @@ function getOptionNames(command: Command): string[] {

3536

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

3637

}

373839+

function addChannelSetupOptions(command: Command): Command {

40+

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

41+

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

42+

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

43+

const rightOrder = right.order ?? Number.MAX_SAFE_INTEGER;

44+

return leftOrder === rightOrder

45+

? (left.id ?? "").localeCompare(right.id ?? "")

46+

: leftOrder - rightOrder;

47+

});

48+

for (const channel of channels) {

49+

for (const option of channel.cliAddOptions ?? []) {

50+

if (seenFlags.has(option.flags)) {

51+

continue;

52+

}

53+

seenFlags.add(option.flags);

54+

if (option.defaultValue !== undefined) {

55+

command.option(option.flags, option.description, option.defaultValue);

56+

} else {

57+

command.option(option.flags, option.description);

58+

}

59+

}

60+

}

61+

return command;

62+

}

63+3864

export function registerChannelsCli(program: Command) {

3965

const channelNames = formatCliChannelOptions();

4066

const channels = program

@@ -134,52 +160,29 @@ export function registerChannelsCli(program: Command) {

134160

});

135161

});

136162137-

channels

138-

.command("add")

139-

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

140-

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

141-

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

142-

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

143-

.option("--token <token>", "Bot token (Telegram/Discord)")

144-

.option("--private-key <key>", "Nostr private key (nsec... or hex)")

145-

.option("--token-file <path>", "Bot token file (Telegram)")

146-

.option("--bot-token <token>", "Slack bot token (xoxb-...)")

147-

.option("--app-token <token>", "Slack app token (xapp-...)")

148-

.option("--signal-number <e164>", "Signal account number (E.164)")

149-

.option("--cli-path <path>", "CLI path (signal-cli or imsg)")

150-

.option("--db-path <path>", "iMessage database path")

151-

.option("--service <service>", "iMessage service (imessage|sms|auto)")

152-

.option("--region <region>", "iMessage region (for SMS)")

153-

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

154-

.option("--http-url <url>", "Signal HTTP daemon base URL")

155-

.option("--http-host <host>", "Signal HTTP host")

156-

.option("--http-port <port>", "Signal HTTP port")

157-

.option("--webhook-path <path>", "Webhook path (Google Chat/BlueBubbles)")

158-

.option("--webhook-url <url>", "Google Chat webhook URL")

159-

.option("--audience-type <type>", "Google Chat audience type (app-url|project-number)")

160-

.option("--audience <value>", "Google Chat audience value (app URL or project number)")

161-

.option("--homeserver <url>", "Matrix homeserver URL")

162-

.option("--user-id <id>", "Matrix user ID")

163-

.option("--access-token <token>", "Matrix access token")

164-

.option("--password <password>", "Matrix password")

165-

.option("--device-name <name>", "Matrix device name")

166-

.option("--initial-sync-limit <n>", "Matrix initial sync limit")

167-

.option("--ship <ship>", "Tlon ship name (~sampel-palnet)")

168-

.option("--url <url>", "Tlon ship URL")

169-

.option("--relay-urls <list>", "Nostr relay URLs (comma-separated)")

170-

.option("--code <code>", "Tlon login code")

171-

.option("--group-channels <list>", "Tlon group channels (comma-separated)")

172-

.option("--dm-allowlist <list>", "Tlon DM allowlist (comma-separated ships)")

173-

.option("--auto-discover-channels", "Tlon auto-discover group channels")

174-

.option("--no-auto-discover-channels", "Disable Tlon auto-discovery")

175-

.option("--use-env", "Use env token (default account only)", false)

176-

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

177-

await runChannelsCommand(async () => {

178-

const { channelsAddCommand } = await loadChannelsCommands();

179-

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

180-

await channelsAddCommand(opts, defaultRuntime, { hasFlags });

181-

});

163+

addChannelSetupOptions(

164+

channels

165+

.command("add")

166+

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

167+

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

168+

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

169+

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

170+

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

171+

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

172+

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

173+

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

174+

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

175+

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

176+

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

177+

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

178+

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

179+

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

180+

await runChannelsCommand(async () => {

181+

const { channelsAddCommand } = await loadChannelsCommands();

182+

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

183+

await channelsAddCommand(opts, defaultRuntime, { hasFlags });

182184

});

185+

});

183186184187

channels

185188

.command("remove")