refactor: rename setup wizard surfaces

This commit is contained in:
Peter Steinberger
2026-03-15 21:39:23 -07:00
parent 07d71d2b27
commit 656848dcd7
127 changed files with 617 additions and 622 deletions

View File

@@ -56,7 +56,7 @@ const coreEntries: CoreCliEntry[] = [
commands: [
{
name: "onboard",
description: "Interactive onboarding wizard for gateway, workspace, and skills",
description: "Interactive setup wizard for gateway, workspace, and skills",
hasSubcommands: false,
},
],

View File

@@ -12,7 +12,7 @@ export const CORE_CLI_COMMAND_DESCRIPTORS = [
},
{
name: "onboard",
description: "Interactive onboarding wizard for gateway, workspace, and skills",
description: "Interactive setup wizard for gateway, workspace, and skills",
hasSubcommands: false,
},
{

View File

@@ -20,7 +20,7 @@ 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("--wizard", "Run the interactive setup wizard", false)
.option("--non-interactive", "Run the wizard without prompts", false)
.option("--mode <mode>", "Wizard mode: local|remote")
.option("--remote-url <url>", "Remote Gateway WebSocket URL")