/** * Coordinator commands: start, stop, status, reconcile * * CLI commands for managing the worker coordination system (PRD-018). * Named "coordinator" to emphasize tx provides coordination primitives, * not an orchestration framework - you own the orchestration loop. */ import { Effect } from "effect"; import { OrchestratorService } from "@jamesaphoenix/tx"; import { type Flags } from "../utils/parse.js"; export declare const coordinator: (pos: string[], flags: Flags) => Effect.Effect; //# sourceMappingURL=coordinator.d.ts.map