refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -75,7 +75,7 @@ export async function resetCommand(runtime: RuntimeEnv, opts: ResetOptions) {
{
value: "config",
label: "Config only",
hint: "moltbot.json",
hint: "openclaw.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("moltbot onboard --install-daemon")}`);
runtime.log(`Next: ${formatCliCommand("openclaw 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("moltbot onboard --install-daemon")}`);
runtime.log(`Next: ${formatCliCommand("openclaw onboard --install-daemon")}`);
return;
}
}