nexus-agents - v2.80.0
    Preparing search index...

    Type Alias PipelineStageData

    PipelineStageData:
        | { type: "research"; text: string }
        | { type: "plan"; text: string; iterations: number }
        | {
            type: "vote";
            approved: boolean;
            conditional: boolean;
            conditions?: readonly string[];
            caveats?: readonly string[];
            iterations: number;
        }
        | { type: "decompose"; tasks: readonly PipelineTask[] }
        | { type: "implement"; tasks: readonly PipelineTask[] }
        | { type: "security"; passed: boolean }

    Discriminated union of stage data.