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

@@ -285,7 +285,7 @@ function createProfileContext(
if (await isReachable(600)) return;
// Relay server is up, but no attached tab yet. Prompt user to attach.
throw new Error(
`Chrome extension relay is running, but no tab is connected. Click the Clawdbot Chrome extension icon on a tab to attach it (profile "${profile.name}").`,
`Chrome extension relay is running, but no tab is connected. Click the Moltbot Chrome extension icon on a tab to attach it (profile "${profile.name}").`,
);
}
@@ -312,7 +312,7 @@ function createProfileContext(
// HTTP responds but WebSocket fails - port in use by something else
if (!profileState.running) {
throw new Error(
`Port ${profile.cdpPort} is in use for profile "${profile.name}" but not by clawdbot. ` +
`Port ${profile.cdpPort} is in use for profile "${profile.name}" but not by moltbot. ` +
`Run action=reset-profile profile=${profile.name} to kill the process.`,
);
}
@@ -351,7 +351,7 @@ function createProfileContext(
if (profile.driver === "extension") {
throw new Error(
`tab not found (no attached Chrome tabs for profile "${profile.name}"). ` +
"Click the Clawdbot Browser Relay toolbar icon on the tab you want to control (badge ON).",
"Click the Moltbot Browser Relay toolbar icon on the tab you want to control (badge ON).",
);
}
await openTab("about:blank");