/** * Handoff management tool registrations. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { HandoffRecord } from "./handoff-registry.js"; import { DispatchJobsResult } from "./job-scheduler.js"; export interface HandoffSchedulerSyncResult { ok: boolean; job_id: string; enqueued: boolean; enqueue_reason?: string; tick: DispatchJobsResult; } export interface HandoffSchedulerBackfillResult { scanned: number; synced: number; enqueued: number; failures: { handoff_id: string; error: string; }[]; } export declare function syncHandoffIntoScheduler(record: HandoffRecord, options?: { owner?: string; now_iso?: string; }): Promise; export declare function backfillHandoffsIntoScheduler(options?: { owner?: string; now_iso?: string; }): Promise; export declare function registerHandoffTools(server: McpServer): void; //# sourceMappingURL=tools-handoff.d.ts.map