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

    Interface PipelineTemplate

    A declarative pipeline template defining stages and their connections.

    interface PipelineTemplate {
        id: string;
        name: string;
        stages: readonly string[];
        edges?: readonly PipelineEdge[];
        dryRunStopAfter?: string;
    }
    Index

    Properties

    id: string

    Unique template identifier.

    name: string

    Human-readable name.

    stages: readonly string[]

    Ordered stage IDs (for simple linear pipelines).

    edges?: readonly PipelineEdge[]

    Edge overrides (for non-linear flows like vote→plan feedback loops).

    dryRunStopAfter?: string

    Stage IDs that can be skipped via dryRun.