chore: rename project to clawdbot

This commit is contained in:
Peter Steinberger
2026-01-04 14:32:47 +00:00
parent d48dc71fa4
commit 246adaa119
841 changed files with 4590 additions and 4328 deletions

View File

@@ -26,7 +26,7 @@ const webMocks = vi.hoisted(() => ({
vi.mock("../web/session.js", () => webMocks);
async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> {
const base = await fs.mkdtemp(join(tmpdir(), "clawdis-triggers-"));
const base = await fs.mkdtemp(join(tmpdir(), "clawdbot-triggers-"));
const previousHome = process.env.HOME;
process.env.HOME = base;
try {
@@ -580,7 +580,7 @@ describe("trigger handling", () => {
allowFrom: ["*"],
},
session: {
store: join(tmpdir(), `clawdis-session-test-${Date.now()}.json`),
store: join(tmpdir(), `clawdbot-session-test-${Date.now()}.json`),
},
},
);
@@ -619,7 +619,7 @@ describe("trigger handling", () => {
allowFrom: ["*"],
},
session: {
store: join(tmpdir(), `clawdis-session-test-${Date.now()}.json`),
store: join(tmpdir(), `clawdbot-session-test-${Date.now()}.json`),
},
},
);