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

@@ -363,7 +363,7 @@ export async function statusCommand(
},
];
runtime.log(theme.heading("Moltbot status"));
runtime.log(theme.heading("OpenClaw 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("moltbot security audit")}`));
runtime.log(theme.muted(`Deep probe: ${formatCliCommand("moltbot security audit --deep")}`));
runtime.log(theme.muted(`Full report: ${formatCliCommand("openclaw security audit")}`));
runtime.log(theme.muted(`Deep probe: ${formatCliCommand("openclaw security audit --deep")}`));
runtime.log("");
runtime.log(theme.heading("Channels"));
@@ -560,8 +560,8 @@ export async function statusCommand(
}
runtime.log("");
runtime.log("FAQ: https://docs.molt.bot/faq");
runtime.log("Troubleshooting: https://docs.molt.bot/troubleshooting");
runtime.log("FAQ: https://docs.openclaw.ai/faq");
runtime.log("Troubleshooting: https://docs.openclaw.ai/troubleshooting");
runtime.log("");
const updateHint = formatUpdateAvailableHint(update);
if (updateHint) {
@@ -569,11 +569,11 @@ export async function statusCommand(
runtime.log("");
}
runtime.log("Next steps:");
runtime.log(` Need to share? ${formatCliCommand("moltbot status --all")}`);
runtime.log(` Need to debug live? ${formatCliCommand("moltbot logs --follow")}`);
runtime.log(` Need to share? ${formatCliCommand("openclaw status --all")}`);
runtime.log(` Need to debug live? ${formatCliCommand("openclaw logs --follow")}`);
if (gatewayReachable) {
runtime.log(` Need to test channels? ${formatCliCommand("moltbot status --deep")}`);
runtime.log(` Need to test channels? ${formatCliCommand("openclaw status --deep")}`);
} else {
runtime.log(` Fix reachability first: ${formatCliCommand("moltbot gateway probe")}`);
runtime.log(` Fix reachability first: ${formatCliCommand("openclaw gateway probe")}`);
}
}