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

@@ -28,7 +28,7 @@ ${body ?? `# ${name}\n`}
describe("loadWorkspaceSkillEntries", () => {
it("handles an empty managed skills dir without throwing", async () => {
const workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-"));
const workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-"));
const managedDir = path.join(workspaceDir, ".managed");
await fs.mkdir(managedDir, { recursive: true });
@@ -41,14 +41,14 @@ describe("loadWorkspaceSkillEntries", () => {
});
it("includes plugin-shipped skills when the plugin is enabled", async () => {
const workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-"));
const workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-"));
const managedDir = path.join(workspaceDir, ".managed");
const bundledDir = path.join(workspaceDir, ".bundled");
const pluginRoot = path.join(workspaceDir, ".clawdbot", "extensions", "open-prose");
const pluginRoot = path.join(workspaceDir, ".openclaw", "extensions", "open-prose");
await fs.mkdir(path.join(pluginRoot, "skills", "prose"), { recursive: true });
await fs.writeFile(
path.join(pluginRoot, "moltbot.plugin.json"),
path.join(pluginRoot, "openclaw.plugin.json"),
JSON.stringify(
{
id: "open-prose",
@@ -80,14 +80,14 @@ describe("loadWorkspaceSkillEntries", () => {
});
it("excludes plugin-shipped skills when the plugin is not allowed", async () => {
const workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-"));
const workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-"));
const managedDir = path.join(workspaceDir, ".managed");
const bundledDir = path.join(workspaceDir, ".bundled");
const pluginRoot = path.join(workspaceDir, ".clawdbot", "extensions", "open-prose");
const pluginRoot = path.join(workspaceDir, ".openclaw", "extensions", "open-prose");
await fs.mkdir(path.join(pluginRoot, "skills", "prose"), { recursive: true });
await fs.writeFile(
path.join(pluginRoot, "moltbot.plugin.json"),
path.join(pluginRoot, "openclaw.plugin.json"),
JSON.stringify(
{
id: "open-prose",