/** * Miyabi Omega Command - Ω-System Execution Interface * * Exposes the Ω-System (Shunsuke World Model Logic) autonomous execution * engine through the CLI. * * Mathematical Foundation: Ω: I × W → R * 6-Stage Pipeline: E = θ₆ ∘ θ₅ ∘ θ₄ ∘ θ₃ ∘ θ₂ ∘ θ₁ */ import { Command } from 'commander'; export interface OmegaOptions { issue?: number; task?: string; agent?: string; learning?: boolean; timeout?: number; verbose?: boolean; json?: boolean; } /** * Create omega command */ export declare function createOmegaCommand(): Command; export default createOmegaCommand; //# sourceMappingURL=omega.d.ts.map