/** * Pipeline Command - Execute command pipelines * * Issue: #144 - Command Composition * Phase: 4 - Command Integration * * Usage: * miyabi pipeline "/agent-run | /review | /deploy" * miyabi pipeline --preset full-cycle --issue 123 * miyabi pipeline --dry-run "/review && /test" */ import { Command } from 'commander'; interface PipelineOptions { preset?: string; issue?: number; dryRun?: boolean; verbose?: boolean; json?: boolean; resume?: string; } /** * Execute pipeline command */ export declare function executePipeline(pipelineStr: string | undefined, options: PipelineOptions): Promise; /** * Register pipeline command with Commander */ export declare function registerPipelineCommand(program: Command): void; export default registerPipelineCommand; //# sourceMappingURL=pipeline.d.ts.map