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

@@ -2,11 +2,11 @@ import fs from "node:fs";
import path from "node:path";
import { resolveAgentWorkspaceDir, resolveDefaultAgentId } from "../../agents/agent-scope.js";
import type { ChannelPluginCatalogEntry } from "../../channels/plugins/catalog.js";
import type { ClawdbotConfig } from "../../config/config.js";
import type { MoltbotConfig } from "../../config/config.js";
import { createSubsystemLogger } from "../../logging/subsystem.js";
import { recordPluginInstall } from "../../plugins/installs.js";
import { enablePluginInConfig } from "../../plugins/enable.js";
import { loadClawdbotPlugins } from "../../plugins/loader.js";
import { loadMoltbotPlugins } from "../../plugins/loader.js";
import { installPluginFromNpmSpec } from "../../plugins/install.js";
import type { RuntimeEnv } from "../../runtime.js";
import type { WizardPrompter } from "../../wizard/prompts.js";
@@ -14,7 +14,7 @@ import type { WizardPrompter } from "../../wizard/prompts.js";
type InstallChoice = "npm" | "local" | "skip";
type InstallResult = {
cfg: ClawdbotConfig;
cfg: MoltbotConfig;
installed: boolean;
};
@@ -49,7 +49,7 @@ function resolveLocalPath(
return null;
}
function addPluginLoadPath(cfg: ClawdbotConfig, pluginPath: string): ClawdbotConfig {
function addPluginLoadPath(cfg: MoltbotConfig, pluginPath: string): MoltbotConfig {
const existing = cfg.plugins?.load?.paths ?? [];
const merged = Array.from(new Set([...existing, pluginPath]));
return {
@@ -95,7 +95,7 @@ async function promptInstallChoice(params: {
}
function resolveInstallDefaultChoice(params: {
cfg: ClawdbotConfig;
cfg: MoltbotConfig;
entry: ChannelPluginCatalogEntry;
localPath?: string | null;
}): InstallChoice {
@@ -114,7 +114,7 @@ function resolveInstallDefaultChoice(params: {
}
export async function ensureOnboardingPluginInstalled(params: {
cfg: ClawdbotConfig;
cfg: MoltbotConfig;
entry: ChannelPluginCatalogEntry;
prompter: WizardPrompter;
runtime: RuntimeEnv;
@@ -188,14 +188,14 @@ export async function ensureOnboardingPluginInstalled(params: {
}
export function reloadOnboardingPluginRegistry(params: {
cfg: ClawdbotConfig;
cfg: MoltbotConfig;
runtime: RuntimeEnv;
workspaceDir?: string;
}): void {
const workspaceDir =
params.workspaceDir ?? resolveAgentWorkspaceDir(params.cfg, resolveDefaultAgentId(params.cfg));
const log = createSubsystemLogger("plugins");
loadClawdbotPlugins({
loadMoltbotPlugins({
config: params.cfg,
workspaceDir,
cache: false,