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

@@ -19,7 +19,7 @@ import {
import { chunkText, resolveTextChunkLimit } from "../auto-reply/chunk.js";
import { normalizeThinkLevel } from "../auto-reply/thinking.js";
import type { CliDeps } from "../cli/deps.js";
import type { ClawdisConfig } from "../config/config.js";
import type { ClawdbotConfig } from "../config/config.js";
import {
DEFAULT_IDLE_MINUTES,
loadSessionStore,
@@ -57,7 +57,7 @@ function pickSummaryFromPayloads(
}
function resolveDeliveryTarget(
cfg: ClawdisConfig,
cfg: ClawdbotConfig,
jobPayload: {
channel?:
| "last"
@@ -128,7 +128,7 @@ function resolveDeliveryTarget(
}
function resolveCronSession(params: {
cfg: ClawdisConfig;
cfg: ClawdbotConfig;
sessionKey: string;
nowMs: number;
}) {
@@ -160,7 +160,7 @@ function resolveCronSession(params: {
}
export async function runCronIsolatedAgentTurn(params: {
cfg: ClawdisConfig;
cfg: ClawdbotConfig;
deps: CliDeps;
job: CronJob;
message: string;