File: //lib/node_modules/openclaw/dist/register.onboard-CecLnbsc.js
import { Dt as theme, v as defaultRuntime } from "./entry.js";
import "./auth-profiles-BLqWs5Ho.js";
import "./agent-scope-BUKPOSoo.js";
import "./exec-G9-WTRVN.js";
import "./github-copilot-token-RNgXBxZS.js";
import "./host-env-security-DyQuUnEd.js";
import "./manifest-registry-BPlNBgie.js";
import "./config-DWx3SXRc.js";
import "./env-vars-iFkEK4MO.js";
import "./dock-DE75y38s.js";
import "./message-channel-CIQTys4Q.js";
import "./sessions-Dlc3fwqk.js";
import "./plugins-DZodvLr1.js";
import "./accounts-g8UOA9ZQ.js";
import "./accounts-iAP56FFD.js";
import "./accounts-B7WS3ElX.js";
import "./bindings-DieZWR44.js";
import "./logging-CFvkxgcX.js";
import "./paths-Dvmk_rXi.js";
import "./chat-envelope-BG_U_muK.js";
import "./client-BtjXMOD6.js";
import "./call-DQYruQvM.js";
import "./pairing-token-qLzAsGdq.js";
import "./net-BEAjYacy.js";
import "./ip-m9Sjsn1o.js";
import "./tailnet-BOWO-AaH.js";
import "./redact-CjuqjXFe.js";
import "./errors-DjnYuRJy.js";
import { t as formatDocsLink } from "./links-DNSoSnpZ.js";
import { n as runCommandWithRuntime } from "./cli-utils-DyGKoc5l.js";
import "./progress-NYYdD1uh.js";
import "./onboard-helpers-DOdss3HD.js";
import "./prompt-style-EoDyMHYF.js";
import "./note-BvX_qH_V.js";
import "./clack-prompter-DbBu50V1.js";
import "./runtime-guard-D09-7j7u.js";
import "./onboarding-86m3KvGR.js";
import "./logging-2pVgGvge.js";
import { t as ONBOARD_PROVIDER_AUTH_FLAGS } from "./onboard-provider-auth-flags-CCAFL3ar.js";
import { n as formatAuthChoiceChoicesForCli } from "./auth-choice-options-D-VsEvf5.js";
import { t as onboardCommand } from "./onboard-C7V7fB8k.js";
//#region src/cli/program/register.onboard.ts
function resolveInstallDaemonFlag(command, opts) {
if (!command || typeof command !== "object") return;
const getOptionValueSource = "getOptionValueSource" in command ? command.getOptionValueSource : void 0;
if (typeof getOptionValueSource !== "function") return;
if (getOptionValueSource.call(command, "skipDaemon") === "cli") return false;
if (getOptionValueSource.call(command, "installDaemon") === "cli") return Boolean(opts.installDaemon);
}
const AUTH_CHOICE_HELP = formatAuthChoiceChoicesForCli({
includeLegacyAliases: true,
includeSkip: true
});
function registerOnboardCommand(program) {
const command = program.command("onboard").description("Interactive wizard to set up the gateway, workspace, and skills").addHelpText("after", () => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/onboard", "docs.openclaw.ai/cli/onboard")}\n`).option("--workspace <dir>", "Agent workspace directory (default: ~/.openclaw/workspace)").option("--reset", "Reset config + credentials + sessions + workspace before running wizard").option("--non-interactive", "Run without prompts", false).option("--accept-risk", "Acknowledge that agents are powerful and full system access is risky (required for --non-interactive)", false).option("--flow <flow>", "Wizard flow: quickstart|advanced|manual").option("--mode <mode>", "Wizard mode: local|remote").option("--auth-choice <choice>", `Auth: ${AUTH_CHOICE_HELP}`).option("--token-provider <id>", "Token provider id (non-interactive; used with --auth-choice token)").option("--token <token>", "Token value (non-interactive; used with --auth-choice token)").option("--token-profile-id <id>", "Auth profile id (non-interactive; default: <provider>:manual)").option("--token-expires-in <duration>", "Optional token expiry duration (e.g. 365d, 12h)").option("--cloudflare-ai-gateway-account-id <id>", "Cloudflare Account ID").option("--cloudflare-ai-gateway-gateway-id <id>", "Cloudflare AI Gateway ID");
for (const providerFlag of ONBOARD_PROVIDER_AUTH_FLAGS) command.option(providerFlag.cliOption, providerFlag.description);
command.option("--custom-base-url <url>", "Custom provider base URL").option("--custom-api-key <key>", "Custom provider API key (optional)").option("--custom-model-id <id>", "Custom provider model ID").option("--custom-provider-id <id>", "Custom provider ID (optional; auto-derived by default)").option("--custom-compatibility <mode>", "Custom provider API compatibility: openai|anthropic (default: openai)").option("--gateway-port <port>", "Gateway port").option("--gateway-bind <mode>", "Gateway bind: loopback|tailnet|lan|auto|custom").option("--gateway-auth <mode>", "Gateway auth: token|password").option("--gateway-token <token>", "Gateway token (token auth)").option("--gateway-password <password>", "Gateway password (password auth)").option("--remote-url <url>", "Remote Gateway WebSocket URL").option("--remote-token <token>", "Remote Gateway token (optional)").option("--tailscale <mode>", "Tailscale: off|serve|funnel").option("--tailscale-reset-on-exit", "Reset tailscale serve/funnel on exit").option("--install-daemon", "Install gateway service").option("--no-install-daemon", "Skip gateway service install").option("--skip-daemon", "Skip gateway service install").option("--daemon-runtime <runtime>", "Daemon runtime: node|bun").option("--skip-channels", "Skip channel setup").option("--skip-skills", "Skip skills setup").option("--skip-health", "Skip health check").option("--skip-ui", "Skip Control UI/TUI prompts").option("--node-manager <name>", "Node manager for skills: npm|pnpm|bun").option("--json", "Output JSON summary", false);
command.action(async (opts, commandRuntime) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const installDaemon = resolveInstallDaemonFlag(commandRuntime, { installDaemon: Boolean(opts.installDaemon) });
const gatewayPort = typeof opts.gatewayPort === "string" ? Number.parseInt(opts.gatewayPort, 10) : void 0;
await onboardCommand({
workspace: opts.workspace,
nonInteractive: Boolean(opts.nonInteractive),
acceptRisk: Boolean(opts.acceptRisk),
flow: opts.flow,
mode: opts.mode,
authChoice: opts.authChoice,
tokenProvider: opts.tokenProvider,
token: opts.token,
tokenProfileId: opts.tokenProfileId,
tokenExpiresIn: opts.tokenExpiresIn,
anthropicApiKey: opts.anthropicApiKey,
openaiApiKey: opts.openaiApiKey,
mistralApiKey: opts.mistralApiKey,
openrouterApiKey: opts.openrouterApiKey,
kilocodeApiKey: opts.kilocodeApiKey,
aiGatewayApiKey: opts.aiGatewayApiKey,
cloudflareAiGatewayAccountId: opts.cloudflareAiGatewayAccountId,
cloudflareAiGatewayGatewayId: opts.cloudflareAiGatewayGatewayId,
cloudflareAiGatewayApiKey: opts.cloudflareAiGatewayApiKey,
moonshotApiKey: opts.moonshotApiKey,
kimiCodeApiKey: opts.kimiCodeApiKey,
geminiApiKey: opts.geminiApiKey,
zaiApiKey: opts.zaiApiKey,
xiaomiApiKey: opts.xiaomiApiKey,
qianfanApiKey: opts.qianfanApiKey,
minimaxApiKey: opts.minimaxApiKey,
syntheticApiKey: opts.syntheticApiKey,
veniceApiKey: opts.veniceApiKey,
togetherApiKey: opts.togetherApiKey,
huggingfaceApiKey: opts.huggingfaceApiKey,
opencodeZenApiKey: opts.opencodeZenApiKey,
xaiApiKey: opts.xaiApiKey,
litellmApiKey: opts.litellmApiKey,
volcengineApiKey: opts.volcengineApiKey,
byteplusApiKey: opts.byteplusApiKey,
customBaseUrl: opts.customBaseUrl,
customApiKey: opts.customApiKey,
customModelId: opts.customModelId,
customProviderId: opts.customProviderId,
customCompatibility: opts.customCompatibility,
gatewayPort: typeof gatewayPort === "number" && Number.isFinite(gatewayPort) ? gatewayPort : void 0,
gatewayBind: opts.gatewayBind,
gatewayAuth: opts.gatewayAuth,
gatewayToken: opts.gatewayToken,
gatewayPassword: opts.gatewayPassword,
remoteUrl: opts.remoteUrl,
remoteToken: opts.remoteToken,
tailscale: opts.tailscale,
tailscaleResetOnExit: Boolean(opts.tailscaleResetOnExit),
reset: Boolean(opts.reset),
installDaemon,
daemonRuntime: opts.daemonRuntime,
skipChannels: Boolean(opts.skipChannels),
skipSkills: Boolean(opts.skipSkills),
skipHealth: Boolean(opts.skipHealth),
skipUi: Boolean(opts.skipUi),
nodeManager: opts.nodeManager,
json: Boolean(opts.json)
}, defaultRuntime);
});
});
}
//#endregion
export { registerOnboardCommand };