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,13 +2,13 @@ import fs from "node:fs/promises";
import path from "node:path";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { withTempHome as withTempHomeBase } from "../../test/helpers/temp-home.js";
import type { ClawdbotConfig } from "../config/config.js";
import type { MoltbotConfig } from "../config/config.js";
async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> {
return withTempHomeBase(fn, { prefix: "clawdbot-models-" });
return withTempHomeBase(fn, { prefix: "moltbot-models-" });
}
const MODELS_CONFIG: ClawdbotConfig = {
const MODELS_CONFIG: MoltbotConfig = {
models: {
providers: {
"custom-proxy": {
@@ -64,10 +64,10 @@ describe("models-config", () => {
try {
vi.resetModules();
const { ensureClawdbotModelsJson } = await import("./models-config.js");
const { ensureMoltbotModelsJson } = await import("./models-config.js");
const agentDir = path.join(home, "agent-empty");
const result = await ensureClawdbotModelsJson(
const result = await ensureMoltbotModelsJson(
{
models: { providers: {} },
},
@@ -99,12 +99,12 @@ describe("models-config", () => {
it("writes models.json for configured providers", async () => {
await withTempHome(async () => {
vi.resetModules();
const { ensureClawdbotModelsJson } = await import("./models-config.js");
const { resolveClawdbotAgentDir } = await import("./agent-paths.js");
const { ensureMoltbotModelsJson } = await import("./models-config.js");
const { resolveMoltbotAgentDir } = await import("./agent-paths.js");
await ensureClawdbotModelsJson(MODELS_CONFIG);
await ensureMoltbotModelsJson(MODELS_CONFIG);
const modelPath = path.join(resolveClawdbotAgentDir(), "models.json");
const modelPath = path.join(resolveMoltbotAgentDir(), "models.json");
const raw = await fs.readFile(modelPath, "utf8");
const parsed = JSON.parse(raw) as {
providers: Record<string, { baseUrl?: string }>;
@@ -119,12 +119,12 @@ describe("models-config", () => {
const prevKey = process.env.MINIMAX_API_KEY;
process.env.MINIMAX_API_KEY = "sk-minimax-test";
try {
const { ensureClawdbotModelsJson } = await import("./models-config.js");
const { resolveClawdbotAgentDir } = await import("./agent-paths.js");
const { ensureMoltbotModelsJson } = await import("./models-config.js");
const { resolveMoltbotAgentDir } = await import("./agent-paths.js");
await ensureClawdbotModelsJson({});
await ensureMoltbotModelsJson({});
const modelPath = path.join(resolveClawdbotAgentDir(), "models.json");
const modelPath = path.join(resolveMoltbotAgentDir(), "models.json");
const raw = await fs.readFile(modelPath, "utf8");
const parsed = JSON.parse(raw) as {
providers: Record<
@@ -153,12 +153,12 @@ describe("models-config", () => {
const prevKey = process.env.SYNTHETIC_API_KEY;
process.env.SYNTHETIC_API_KEY = "sk-synthetic-test";
try {
const { ensureClawdbotModelsJson } = await import("./models-config.js");
const { resolveClawdbotAgentDir } = await import("./agent-paths.js");
const { ensureMoltbotModelsJson } = await import("./models-config.js");
const { resolveMoltbotAgentDir } = await import("./agent-paths.js");
await ensureClawdbotModelsJson({});
await ensureMoltbotModelsJson({});
const modelPath = path.join(resolveClawdbotAgentDir(), "models.json");
const modelPath = path.join(resolveMoltbotAgentDir(), "models.json");
const raw = await fs.readFile(modelPath, "utf8");
const parsed = JSON.parse(raw) as {
providers: Record<