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

@@ -12,7 +12,7 @@ import {
normalizeUsage,
type UsageLike,
} from "../agents/usage.js";
import type { ClawdisConfig } from "../config/config.js";
import type { ClawdbotConfig } from "../config/config.js";
import {
resolveSessionTranscriptPath,
type SessionEntry,
@@ -21,7 +21,7 @@ import {
import { shortenHomePath } from "../utils.js";
import type { ThinkLevel, VerboseLevel } from "./thinking.js";
type AgentConfig = NonNullable<ClawdisConfig["agent"]>;
type AgentConfig = NonNullable<ClawdbotConfig["agent"]>;
type StatusArgs = {
agent: AgentConfig;
@@ -79,7 +79,7 @@ const readUsageFromSessionLog = (
model?: string;
}
| undefined => {
// Transcripts always live at: ~/.clawdis/sessions/<SessionId>.jsonl
// Transcripts always live at: ~/.clawdbot/sessions/<SessionId>.jsonl
if (!sessionId) return undefined;
const logPath = resolveSessionTranscriptPath(sessionId);
if (!fs.existsSync(logPath)) return undefined;
@@ -166,7 +166,7 @@ export function buildStatusMessage(args: StatusArgs): string {
const webLine = (() => {
if (args.webLinked === false) {
return "Web: not linked — run `clawdis login` to scan the QR.";
return "Web: not linked — run `clawdbot login` to scan the QR.";
}
const authAge = formatAge(args.webAuthAgeMs);
const heartbeat =