/** * Noah — Cron Tool Handler * * BB Spec §6: Tool interface for fleet cron operations. * Agents and operators can query schedule, view history, * and manage non-constitutional jobs through this tool. */ import type { CronManager } from '../cron/cron-manager.js'; export interface NoahCronParams { action: 'list' | 'status' | 'history' | 'trigger' | 'enable' | 'disable'; jobId?: string; limit?: number; } export interface CronToolResponse { action: string; success: boolean; data: unknown; error?: string; } export declare function handleNoahCron(manager: CronManager, params: NoahCronParams): CronToolResponse; //# sourceMappingURL=noah-cron.d.ts.map