mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 22:51:23 +00:00
refactor: rename clawdbot to moltbot with legacy compat
This commit is contained in:
@@ -15,30 +15,30 @@ type CommandOptions = Record<string, unknown>;
|
||||
|
||||
const SANDBOX_EXAMPLES = {
|
||||
main: [
|
||||
["clawdbot sandbox list", "List all sandbox containers."],
|
||||
["clawdbot sandbox list --browser", "List only browser containers."],
|
||||
["clawdbot sandbox recreate --all", "Recreate all containers."],
|
||||
["clawdbot sandbox recreate --session main", "Recreate a specific session."],
|
||||
["clawdbot sandbox recreate --agent mybot", "Recreate agent containers."],
|
||||
["clawdbot sandbox explain", "Explain effective sandbox config."],
|
||||
["moltbot sandbox list", "List all sandbox containers."],
|
||||
["moltbot sandbox list --browser", "List only browser containers."],
|
||||
["moltbot sandbox recreate --all", "Recreate all containers."],
|
||||
["moltbot sandbox recreate --session main", "Recreate a specific session."],
|
||||
["moltbot sandbox recreate --agent mybot", "Recreate agent containers."],
|
||||
["moltbot sandbox explain", "Explain effective sandbox config."],
|
||||
],
|
||||
list: [
|
||||
["clawdbot sandbox list", "List all sandbox containers."],
|
||||
["clawdbot sandbox list --browser", "List only browser containers."],
|
||||
["clawdbot sandbox list --json", "JSON output."],
|
||||
["moltbot sandbox list", "List all sandbox containers."],
|
||||
["moltbot sandbox list --browser", "List only browser containers."],
|
||||
["moltbot sandbox list --json", "JSON output."],
|
||||
],
|
||||
recreate: [
|
||||
["clawdbot sandbox recreate --all", "Recreate all containers."],
|
||||
["clawdbot sandbox recreate --session main", "Recreate a specific session."],
|
||||
["clawdbot sandbox recreate --agent mybot", "Recreate a specific agent (includes sub-agents)."],
|
||||
["clawdbot sandbox recreate --browser --all", "Recreate only browser containers."],
|
||||
["clawdbot sandbox recreate --all --force", "Skip confirmation."],
|
||||
["moltbot sandbox recreate --all", "Recreate all containers."],
|
||||
["moltbot sandbox recreate --session main", "Recreate a specific session."],
|
||||
["moltbot sandbox recreate --agent mybot", "Recreate a specific agent (includes sub-agents)."],
|
||||
["moltbot sandbox recreate --browser --all", "Recreate only browser containers."],
|
||||
["moltbot sandbox recreate --all --force", "Skip confirmation."],
|
||||
],
|
||||
explain: [
|
||||
["clawdbot sandbox explain", "Show effective sandbox config."],
|
||||
["clawdbot sandbox explain --session agent:main:main", "Explain a specific session."],
|
||||
["clawdbot sandbox explain --agent work", "Explain an agent sandbox."],
|
||||
["clawdbot sandbox explain --json", "JSON output."],
|
||||
["moltbot sandbox explain", "Show effective sandbox config."],
|
||||
["moltbot sandbox explain --session agent:main:main", "Explain a specific session."],
|
||||
["moltbot sandbox explain --agent work", "Explain an agent sandbox."],
|
||||
["moltbot sandbox explain --json", "JSON output."],
|
||||
],
|
||||
} as const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user