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

@@ -1,7 +1,7 @@
import fs from "node:fs/promises";
import path from "node:path";
import { describe, expect, it } from "vitest";
import { LEGACY_MACOS_APP_SOURCES_DIR, MACOS_APP_SOURCES_DIR } from "../compat/legacy-names.js";
import { MACOS_APP_SOURCES_DIR } from "../compat/legacy-names.js";
import { CronPayloadSchema } from "../gateway/protocol/schema.js";
type SchemaLike = {
@@ -30,10 +30,7 @@ function extractCronChannels(schema: SchemaLike): string[] {
const UI_FILES = ["ui/src/ui/types.ts", "ui/src/ui/ui-types.ts", "ui/src/ui/views/cron.ts"];
const SWIFT_FILE_CANDIDATES = [
`${MACOS_APP_SOURCES_DIR}/GatewayConnection.swift`,
`${LEGACY_MACOS_APP_SOURCES_DIR}/GatewayConnection.swift`,
];
const SWIFT_FILE_CANDIDATES = [`${MACOS_APP_SOURCES_DIR}/GatewayConnection.swift`];
async function resolveSwiftFiles(cwd: string): Promise<string[]> {
const matches: string[] = [];

View File

@@ -5,7 +5,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";
import { withTempHome as withTempHomeBase } from "../../test/helpers/temp-home.js";
import type { CliDeps } from "../cli/deps.js";
import type { MoltbotConfig } from "../config/config.js";
import type { OpenClawConfig } from "../config/config.js";
import type { CronJob } from "./types.js";
vi.mock("../agents/pi-embedded.js", () => ({
@@ -22,11 +22,11 @@ import { runEmbeddedPiAgent } from "../agents/pi-embedded.js";
import { runCronIsolatedAgentTurn } from "./isolated-agent.js";
async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> {
return withTempHomeBase(fn, { prefix: "moltbot-cron-" });
return withTempHomeBase(fn, { prefix: "openclaw-cron-" });
}
async function writeSessionStore(home: string) {
const dir = path.join(home, ".clawdbot", "sessions");
const dir = path.join(home, ".openclaw", "sessions");
await fs.mkdir(dir, { recursive: true });
const storePath = path.join(dir, "sessions.json");
await fs.writeFile(
@@ -51,17 +51,17 @@ async function writeSessionStore(home: string) {
function makeCfg(
home: string,
storePath: string,
overrides: Partial<MoltbotConfig> = {},
): MoltbotConfig {
const base: MoltbotConfig = {
overrides: Partial<OpenClawConfig> = {},
): OpenClawConfig {
const base: OpenClawConfig = {
agents: {
defaults: {
model: "anthropic/claude-opus-4-5",
workspace: path.join(home, "clawd"),
workspace: path.join(home, "openclaw"),
},
},
session: { store: storePath, mainKey: "main" },
} as MoltbotConfig;
} as OpenClawConfig;
return { ...base, ...overrides };
}

View File

@@ -5,7 +5,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";
import { withTempHome as withTempHomeBase } from "../../test/helpers/temp-home.js";
import type { CliDeps } from "../cli/deps.js";
import type { MoltbotConfig } from "../config/config.js";
import type { OpenClawConfig } from "../config/config.js";
import { setActivePluginRegistry } from "../plugins/runtime.js";
import { createPluginRuntime } from "../plugins/runtime/index.js";
import { createTestRegistry } from "../test-utils/channel-plugins.js";
@@ -31,11 +31,11 @@ import { runEmbeddedPiAgent } from "../agents/pi-embedded.js";
import { runCronIsolatedAgentTurn } from "./isolated-agent.js";
async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> {
return withTempHomeBase(fn, { prefix: "moltbot-cron-" });
return withTempHomeBase(fn, { prefix: "openclaw-cron-" });
}
async function writeSessionStore(home: string) {
const dir = path.join(home, ".clawdbot", "sessions");
const dir = path.join(home, ".openclaw", "sessions");
await fs.mkdir(dir, { recursive: true });
const storePath = path.join(dir, "sessions.json");
await fs.writeFile(
@@ -60,17 +60,17 @@ async function writeSessionStore(home: string) {
function makeCfg(
home: string,
storePath: string,
overrides: Partial<MoltbotConfig> = {},
): MoltbotConfig {
const base: MoltbotConfig = {
overrides: Partial<OpenClawConfig> = {},
): OpenClawConfig {
const base: OpenClawConfig = {
agents: {
defaults: {
model: "anthropic/claude-opus-4-5",
workspace: path.join(home, "clawd"),
workspace: path.join(home, "openclaw"),
},
},
session: { store: storePath, mainKey: "main" },
} as MoltbotConfig;
} as OpenClawConfig;
return { ...base, ...overrides };
}

View File

@@ -5,7 +5,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";
import { withTempHome as withTempHomeBase } from "../../test/helpers/temp-home.js";
import type { CliDeps } from "../cli/deps.js";
import type { MoltbotConfig } from "../config/config.js";
import type { OpenClawConfig } from "../config/config.js";
import type { CronJob } from "./types.js";
vi.mock("../agents/pi-embedded.js", () => ({
@@ -22,11 +22,11 @@ import { runEmbeddedPiAgent } from "../agents/pi-embedded.js";
import { runCronIsolatedAgentTurn } from "./isolated-agent.js";
async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> {
return withTempHomeBase(fn, { prefix: "moltbot-cron-" });
return withTempHomeBase(fn, { prefix: "openclaw-cron-" });
}
async function writeSessionStore(home: string) {
const dir = path.join(home, ".clawdbot", "sessions");
const dir = path.join(home, ".openclaw", "sessions");
await fs.mkdir(dir, { recursive: true });
const storePath = path.join(dir, "sessions.json");
await fs.writeFile(
@@ -57,17 +57,17 @@ async function readSessionEntry(storePath: string, key: string) {
function makeCfg(
home: string,
storePath: string,
overrides: Partial<MoltbotConfig> = {},
): MoltbotConfig {
const base: MoltbotConfig = {
overrides: Partial<OpenClawConfig> = {},
): OpenClawConfig {
const base: OpenClawConfig = {
agents: {
defaults: {
model: "anthropic/claude-opus-4-5",
workspace: path.join(home, "clawd"),
workspace: path.join(home, "openclaw"),
},
},
session: { store: storePath, mainKey: "main" },
} as MoltbotConfig;
} as OpenClawConfig;
return { ...base, ...overrides };
}
@@ -182,7 +182,7 @@ describe("runCronIsolatedAgentTurn", () => {
const cfg = makeCfg(
home,
path.join(home, ".clawdbot", "agents", "{agentId}", "sessions", "sessions.json"),
path.join(home, ".openclaw", "agents", "{agentId}", "sessions", "sessions.json"),
{
agents: {
defaults: { workspace: path.join(home, "default-workspace") },

View File

@@ -1,6 +1,6 @@
import type { ChannelId } from "../../channels/plugins/types.js";
import { DEFAULT_CHAT_CHANNEL } from "../../channels/registry.js";
import type { MoltbotConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/config.js";
import {
loadSessionStore,
resolveAgentMainSessionKey,
@@ -14,7 +14,7 @@ import {
} from "../../infra/outbound/targets.js";
export async function resolveDeliveryTarget(
cfg: MoltbotConfig,
cfg: OpenClawConfig,
agentId: string,
jobPayload: {
channel?: "last" | ChannelId;

View File

@@ -38,7 +38,7 @@ import {
supportsXHighThinking,
} from "../../auto-reply/thinking.js";
import { createOutboundSendDeps, type CliDeps } from "../../cli/outbound-send-deps.js";
import type { MoltbotConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/config.js";
import { resolveSessionTranscriptPath, updateSessionStore } from "../../config/sessions.js";
import type { AgentDefaultsConfig } from "../../config/types.js";
import { registerAgentRunContext } from "../../infra/agent-events.js";
@@ -86,7 +86,7 @@ export type RunCronAgentTurnResult = {
};
export async function runCronIsolatedAgentTurn(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
deps: CliDeps;
job: CronJob;
message: string;
@@ -117,7 +117,7 @@ export async function runCronIsolatedAgentTurn(params: {
} else if (overrideModel) {
agentCfg.model = overrideModel;
}
const cfgWithAgentDefaults: MoltbotConfig = {
const cfgWithAgentDefaults: OpenClawConfig = {
...params.cfg,
agents: Object.assign({}, params.cfg.agents, { defaults: agentCfg }),
};

View File

@@ -1,10 +1,10 @@
import crypto from "node:crypto";
import type { MoltbotConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/config.js";
import { loadSessionStore, resolveStorePath, type SessionEntry } from "../../config/sessions.js";
export function resolveCronSession(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
sessionKey: string;
nowMs: number;
agentId: string;

View File

@@ -14,7 +14,7 @@ describe("cron run log", () => {
});
it("appends JSONL and prunes by line count", async () => {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-cron-log-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-cron-log-"));
const logPath = path.join(dir, "runs", "job-1.jsonl");
for (let i = 0; i < 10; i++) {
@@ -44,7 +44,7 @@ describe("cron run log", () => {
});
it("reads newest entries and filters by jobId", async () => {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-cron-log-read-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-cron-log-read-"));
const logPathA = path.join(dir, "runs", "a.jsonl");
const logPathB = path.join(dir, "runs", "b.jsonl");

View File

@@ -14,7 +14,7 @@ const noopLogger = {
};
async function makeStorePath() {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-cron-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-cron-"));
return {
storePath: path.join(dir, "cron", "jobs.json"),
cleanup: async () => {

View File

@@ -15,7 +15,7 @@ const noopLogger = {
};
async function makeStorePath() {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-cron-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-cron-"));
return {
storePath: path.join(dir, "cron", "jobs.json"),
cleanup: async () => {

View File

@@ -14,7 +14,7 @@ const noopLogger = {
};
async function makeStorePath() {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-cron-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-cron-"));
return {
storePath: path.join(dir, "cron", "jobs.json"),
cleanup: async () => {