/** * Task Command * * Unified task management across GitHub and Linear. * Issues stay where they are — ralph-starter detects the platform * from the ID format and routes operations accordingly. */ type TaskSource = 'github' | 'linear' | 'all'; interface TaskCommandOptions { source?: TaskSource; project?: string; label?: string; status?: string; limit?: string; title?: string; body?: string; priority?: string; comment?: string; assignee?: string; } /** * Main task command dispatcher */ export declare function taskCommand(action: string | undefined, args: string[], options: TaskCommandOptions): Promise; export {}; //# sourceMappingURL=task.d.ts.map