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

    Interface PipelineTask

    A task decomposed by the PM, potentially with conditional approval requirements.

    interface PipelineTask {
        id: string;
        title: string;
        description: string;
        assignedTo: PipelineRole;
        status: "pending" | "rejected" | "review" | "in_progress" | "done";
        feedback?: string;
        implementation?: string;
        conditions?: readonly string[];
        caveats?: readonly string[];
    }
    Index

    Properties

    id: string
    title: string
    description: string
    assignedTo: PipelineRole
    status: "pending" | "rejected" | "review" | "in_progress" | "done"
    feedback?: string
    implementation?: string

    Implementation text from the code expert (surfaced for harness use).

    conditions?: readonly string[]

    Conditions required for task completion (from conditional_go vote).

    caveats?: readonly string[]

    Caveats/warnings associated with the task (from conditional_go vote).