/** * Noah — Default Fleet Cron Schedule * * BB Spec §6.2: Standard fleet operations schedule. * Amendment 4 (D-05): Mighty Mark is NOT scheduled by Noah. * Mark's health checks remain autonomous (survival paradox — * the system checking health can't depend on the system being healthy). * Noah can OBSERVE Mark's results but cannot SCHEDULE Mark's runs. * * All cron expressions are in UTC. Commander's timezone is America/Chicago (CT). * CDT = UTC-5 (Mar–Nov), CST = UTC-6 (Nov–Mar). * Current conversions assume CDT (UTC-5). */ import type { FleetCronJobDefinition } from './cron-types.js'; export declare const DEFAULT_FLEET_CRON_SCHEDULE: readonly FleetCronJobDefinition[]; export declare function getDefaultSchedule(): FleetCronJobDefinition[]; export declare function getConstitutionalJobs(): FleetCronJobDefinition[]; export declare function getScheduledAgentIds(): string[]; //# sourceMappingURL=default-schedule.d.ts.map