/** * Miyabi Run Command - Simplified Execution Interface * * Steve Jobs Principle: "Simple can be harder than complex. * You have to work hard to get your thinking clean to make it simple." * * This command provides a unified, simple interface for all Miyabi operations. * One command. One voice. Maximum clarity. */ import { Command } from 'commander'; import { type ApprovalLevel } from '../utils/human-in-the-loop'; export interface RunOptions { issue?: number; task?: string; mode?: 'auto' | 'guided' | 'safe'; approval?: ApprovalLevel; verbose?: boolean; json?: boolean; } /** * Register the run command */ export declare function registerRunCommand(program: Command): void; //# sourceMappingURL=run.d.ts.map