mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-21 05:32:53 +00:00
docs: rename onboarding user-facing wizard copy
Co-authored-by: Tak <contact-redacted@example.com>
This commit is contained in:
@@ -56,7 +56,7 @@ const coreEntries: CoreCliEntry[] = [
|
||||
commands: [
|
||||
{
|
||||
name: "onboard",
|
||||
description: "Interactive setup wizard for gateway, workspace, and skills",
|
||||
description: "Interactive onboarding for gateway, workspace, and skills",
|
||||
hasSubcommands: false,
|
||||
},
|
||||
],
|
||||
@@ -70,7 +70,7 @@ const coreEntries: CoreCliEntry[] = [
|
||||
{
|
||||
name: "configure",
|
||||
description:
|
||||
"Interactive setup wizard for credentials, channels, gateway, and agent defaults",
|
||||
"Interactive configuration for credentials, channels, gateway, and agent defaults",
|
||||
hasSubcommands: false,
|
||||
},
|
||||
],
|
||||
@@ -84,7 +84,7 @@ const coreEntries: CoreCliEntry[] = [
|
||||
{
|
||||
name: "config",
|
||||
description:
|
||||
"Non-interactive config helpers (get/set/unset/file/validate). Default: starts setup wizard.",
|
||||
"Non-interactive config helpers (get/set/unset/file/validate). Default: starts guided setup.",
|
||||
hasSubcommands: true,
|
||||
},
|
||||
],
|
||||
|
||||
@@ -12,18 +12,18 @@ export const CORE_CLI_COMMAND_DESCRIPTORS = [
|
||||
},
|
||||
{
|
||||
name: "onboard",
|
||||
description: "Interactive setup wizard for gateway, workspace, and skills",
|
||||
description: "Interactive onboarding for gateway, workspace, and skills",
|
||||
hasSubcommands: false,
|
||||
},
|
||||
{
|
||||
name: "configure",
|
||||
description: "Interactive setup wizard for credentials, channels, gateway, and agent defaults",
|
||||
description: "Interactive configuration for credentials, channels, gateway, and agent defaults",
|
||||
hasSubcommands: false,
|
||||
},
|
||||
{
|
||||
name: "config",
|
||||
description:
|
||||
"Non-interactive config helpers (get/set/unset/file/validate). Default: starts setup wizard.",
|
||||
"Non-interactive config helpers (get/set/unset/file/validate). Default: starts guided setup.",
|
||||
hasSubcommands: true,
|
||||
},
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ import { runCommandWithRuntime } from "../cli-utils.js";
|
||||
export function registerConfigureCommand(program: Command) {
|
||||
program
|
||||
.command("configure")
|
||||
.description("Interactive setup wizard for credentials, channels, gateway, and agent defaults")
|
||||
.description("Interactive configuration for credentials, channels, gateway, and agent defaults")
|
||||
.addHelpText(
|
||||
"after",
|
||||
() =>
|
||||
|
||||
@@ -63,7 +63,7 @@ function pickOnboardProviderAuthOptionValues(
|
||||
export function registerOnboardCommand(program: Command) {
|
||||
const command = program
|
||||
.command("onboard")
|
||||
.description("Interactive wizard to set up the gateway, workspace, and skills")
|
||||
.description("Interactive onboarding for the gateway, workspace, and skills")
|
||||
.addHelpText(
|
||||
"after",
|
||||
() =>
|
||||
@@ -72,7 +72,7 @@ export function registerOnboardCommand(program: Command) {
|
||||
.option("--workspace <dir>", "Agent workspace directory (default: ~/.openclaw/workspace)")
|
||||
.option(
|
||||
"--reset",
|
||||
"Reset config + credentials + sessions before running wizard (workspace only with --reset-scope full)",
|
||||
"Reset config + credentials + sessions before running onboard (workspace only with --reset-scope full)",
|
||||
)
|
||||
.option("--reset-scope <scope>", "Reset scope: config|config+creds+sessions|full")
|
||||
.option("--non-interactive", "Run without prompts", false)
|
||||
@@ -81,8 +81,8 @@ export function registerOnboardCommand(program: Command) {
|
||||
"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("--flow <flow>", "Onboard flow: quickstart|advanced|manual")
|
||||
.option("--mode <mode>", "Onboard mode: local|remote")
|
||||
.option("--auth-choice <choice>", `Auth: ${AUTH_CHOICE_HELP}`)
|
||||
.option(
|
||||
"--token-provider <id>",
|
||||
|
||||
@@ -20,9 +20,9 @@ export function registerSetupCommand(program: Command) {
|
||||
"--workspace <dir>",
|
||||
"Agent workspace directory (default: ~/.openclaw/workspace; stored as agents.defaults.workspace)",
|
||||
)
|
||||
.option("--wizard", "Run the interactive onboarding wizard", false)
|
||||
.option("--non-interactive", "Run the wizard without prompts", false)
|
||||
.option("--mode <mode>", "Wizard mode: local|remote")
|
||||
.option("--wizard", "Run interactive onboarding", false)
|
||||
.option("--non-interactive", "Run onboarding without prompts", false)
|
||||
.option("--mode <mode>", "Onboard mode: local|remote")
|
||||
.option("--remote-url <url>", "Remote Gateway WebSocket URL")
|
||||
.option("--remote-token <token>", "Remote Gateway token (optional)")
|
||||
.action(async (opts, command) => {
|
||||
|
||||
Reference in New Issue
Block a user