refactor: rename clawdbot to moltbot with legacy compat

This commit is contained in:
Peter Steinberger
2026-01-27 12:19:58 +00:00
parent 83460df96f
commit 6d16a658e5
1839 changed files with 11250 additions and 11199 deletions

View File

@@ -75,7 +75,7 @@ export async function resetCommand(runtime: RuntimeEnv, opts: ResetOptions) {
{
value: "config",
label: "Config only",
hint: "clawdbot.json",
hint: "moltbot.json",
},
{
value: "config+creds+sessions",
@@ -144,7 +144,7 @@ export async function resetCommand(runtime: RuntimeEnv, opts: ResetOptions) {
for (const dir of sessionDirs) {
await removePath(dir, runtime, { dryRun, label: dir });
}
runtime.log(`Next: ${formatCliCommand("clawdbot onboard --install-daemon")}`);
runtime.log(`Next: ${formatCliCommand("moltbot onboard --install-daemon")}`);
return;
}
@@ -159,7 +159,7 @@ export async function resetCommand(runtime: RuntimeEnv, opts: ResetOptions) {
for (const workspace of workspaceDirs) {
await removePath(workspace, runtime, { dryRun, label: workspace });
}
runtime.log(`Next: ${formatCliCommand("clawdbot onboard --install-daemon")}`);
runtime.log(`Next: ${formatCliCommand("moltbot onboard --install-daemon")}`);
return;
}
}