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

@@ -363,7 +363,7 @@ export async function statusCommand(
},
];
runtime.log(theme.heading("Clawdbot status"));
runtime.log(theme.heading("Moltbot status"));
runtime.log("");
runtime.log(theme.heading("Overview"));
runtime.log(
@@ -412,8 +412,8 @@ export async function statusCommand(
runtime.log(theme.muted(`… +${sorted.length - shown.length} more`));
}
}
runtime.log(theme.muted(`Full report: ${formatCliCommand("clawdbot security audit")}`));
runtime.log(theme.muted(`Deep probe: ${formatCliCommand("clawdbot security audit --deep")}`));
runtime.log(theme.muted(`Full report: ${formatCliCommand("moltbot security audit")}`));
runtime.log(theme.muted(`Deep probe: ${formatCliCommand("moltbot security audit --deep")}`));
runtime.log("");
runtime.log(theme.heading("Channels"));
@@ -569,11 +569,11 @@ export async function statusCommand(
runtime.log("");
}
runtime.log("Next steps:");
runtime.log(` Need to share? ${formatCliCommand("clawdbot status --all")}`);
runtime.log(` Need to debug live? ${formatCliCommand("clawdbot logs --follow")}`);
runtime.log(` Need to share? ${formatCliCommand("moltbot status --all")}`);
runtime.log(` Need to debug live? ${formatCliCommand("moltbot logs --follow")}`);
if (gatewayReachable) {
runtime.log(` Need to test channels? ${formatCliCommand("clawdbot status --deep")}`);
runtime.log(` Need to test channels? ${formatCliCommand("moltbot status --deep")}`);
} else {
runtime.log(` Fix reachability first: ${formatCliCommand("clawdbot gateway probe")}`);
runtime.log(` Fix reachability first: ${formatCliCommand("moltbot gateway probe")}`);
}
}