mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
Verified: - pnpm install --frozen-lockfile - pnpm check - pnpm test -- --run src/cron/service.failure-alert.test.ts src/cli/cron-cli.test.ts src/gateway/protocol/cron-validators.test.ts Co-authored-by: 0xbrak <181251288+0xbrak@users.noreply.github.com> Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
158 lines
4.4 KiB
TypeScript
158 lines
4.4 KiB
TypeScript
import type { ChannelId } from "../channels/plugins/types.js";
|
|
|
|
export type CronSchedule =
|
|
| { kind: "at"; at: string }
|
|
| { kind: "every"; everyMs: number; anchorMs?: number }
|
|
| {
|
|
kind: "cron";
|
|
expr: string;
|
|
tz?: string;
|
|
/** Optional deterministic stagger window in milliseconds (0 keeps exact schedule). */
|
|
staggerMs?: number;
|
|
};
|
|
|
|
export type CronSessionTarget = "main" | "isolated";
|
|
export type CronWakeMode = "next-heartbeat" | "now";
|
|
|
|
export type CronMessageChannel = ChannelId | "last";
|
|
|
|
export type CronDeliveryMode = "none" | "announce" | "webhook";
|
|
|
|
export type CronDelivery = {
|
|
mode: CronDeliveryMode;
|
|
channel?: CronMessageChannel;
|
|
to?: string;
|
|
/** Explicit channel account id for multi-account setups (e.g. multiple Telegram bots). */
|
|
accountId?: string;
|
|
bestEffort?: boolean;
|
|
};
|
|
|
|
export type CronDeliveryPatch = Partial<CronDelivery>;
|
|
|
|
export type CronRunStatus = "ok" | "error" | "skipped";
|
|
export type CronDeliveryStatus = "delivered" | "not-delivered" | "unknown" | "not-requested";
|
|
|
|
export type CronUsageSummary = {
|
|
input_tokens?: number;
|
|
output_tokens?: number;
|
|
total_tokens?: number;
|
|
cache_read_tokens?: number;
|
|
cache_write_tokens?: number;
|
|
};
|
|
|
|
export type CronRunTelemetry = {
|
|
model?: string;
|
|
provider?: string;
|
|
usage?: CronUsageSummary;
|
|
};
|
|
|
|
export type CronRunOutcome = {
|
|
status: CronRunStatus;
|
|
error?: string;
|
|
/** Optional classifier for execution errors to guide fallback behavior. */
|
|
errorKind?: "delivery-target";
|
|
summary?: string;
|
|
sessionId?: string;
|
|
sessionKey?: string;
|
|
};
|
|
|
|
export type CronFailureAlert = {
|
|
after?: number;
|
|
channel?: CronMessageChannel;
|
|
to?: string;
|
|
cooldownMs?: number;
|
|
};
|
|
|
|
export type CronPayload =
|
|
| { kind: "systemEvent"; text: string }
|
|
| {
|
|
kind: "agentTurn";
|
|
message: string;
|
|
/** Optional model override (provider/model or alias). */
|
|
model?: string;
|
|
/** Optional per-job fallback models; overrides agent/global fallbacks when defined. */
|
|
fallbacks?: string[];
|
|
thinking?: string;
|
|
timeoutSeconds?: number;
|
|
allowUnsafeExternalContent?: boolean;
|
|
deliver?: boolean;
|
|
channel?: CronMessageChannel;
|
|
to?: string;
|
|
bestEffortDeliver?: boolean;
|
|
};
|
|
|
|
export type CronPayloadPatch =
|
|
| { kind: "systemEvent"; text?: string }
|
|
| {
|
|
kind: "agentTurn";
|
|
message?: string;
|
|
model?: string;
|
|
fallbacks?: string[];
|
|
thinking?: string;
|
|
timeoutSeconds?: number;
|
|
allowUnsafeExternalContent?: boolean;
|
|
deliver?: boolean;
|
|
channel?: CronMessageChannel;
|
|
to?: string;
|
|
bestEffortDeliver?: boolean;
|
|
};
|
|
|
|
export type CronJobState = {
|
|
nextRunAtMs?: number;
|
|
runningAtMs?: number;
|
|
lastRunAtMs?: number;
|
|
/** Preferred execution outcome field. */
|
|
lastRunStatus?: CronRunStatus;
|
|
/** Back-compat alias for lastRunStatus. */
|
|
lastStatus?: "ok" | "error" | "skipped";
|
|
lastError?: string;
|
|
lastDurationMs?: number;
|
|
/** Number of consecutive execution errors (reset on success). Used for backoff. */
|
|
consecutiveErrors?: number;
|
|
/** Last failure alert timestamp (ms since epoch) for cooldown gating. */
|
|
lastFailureAlertAtMs?: number;
|
|
/** Number of consecutive schedule computation errors. Auto-disables job after threshold. */
|
|
scheduleErrorCount?: number;
|
|
/** Explicit delivery outcome, separate from execution outcome. */
|
|
lastDeliveryStatus?: CronDeliveryStatus;
|
|
/** Delivery-specific error text when available. */
|
|
lastDeliveryError?: string;
|
|
/** Whether the last run's output was delivered to the target channel. */
|
|
lastDelivered?: boolean;
|
|
};
|
|
|
|
export type CronJob = {
|
|
id: string;
|
|
agentId?: string;
|
|
/** Origin session namespace for reminder delivery and wake routing. */
|
|
sessionKey?: string;
|
|
name: string;
|
|
description?: string;
|
|
enabled: boolean;
|
|
deleteAfterRun?: boolean;
|
|
createdAtMs: number;
|
|
updatedAtMs: number;
|
|
schedule: CronSchedule;
|
|
sessionTarget: CronSessionTarget;
|
|
wakeMode: CronWakeMode;
|
|
payload: CronPayload;
|
|
delivery?: CronDelivery;
|
|
failureAlert?: CronFailureAlert | false;
|
|
state: CronJobState;
|
|
};
|
|
|
|
export type CronStoreFile = {
|
|
version: 1;
|
|
jobs: CronJob[];
|
|
};
|
|
|
|
export type CronJobCreate = Omit<CronJob, "id" | "createdAtMs" | "updatedAtMs" | "state"> & {
|
|
state?: Partial<CronJobState>;
|
|
};
|
|
|
|
export type CronJobPatch = Partial<Omit<CronJob, "id" | "createdAtMs" | "state" | "payload">> & {
|
|
payload?: CronPayloadPatch;
|
|
delivery?: CronDeliveryPatch;
|
|
state?: Partial<CronJobState>;
|
|
};
|