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

@@ -2,7 +2,7 @@ import path from "node:path";
import { pathToFileURL } from "node:url";
import {
CONFIG_PATH_CLAWDIS,
CONFIG_PATH_CLAWDBOT,
type HookMappingConfig,
type HooksConfig,
} from "../config/config.js";
@@ -130,7 +130,7 @@ export function resolveHookMappings(
}
if (mappings.length === 0) return [];
const configDir = path.dirname(CONFIG_PATH_CLAWDIS);
const configDir = path.dirname(CONFIG_PATH_CLAWDBOT);
const transformsDir = hooks?.transformsDir
? resolvePath(configDir, hooks.transformsDir)
: configDir;