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

    Interface IPipelineStage

    A pipeline stage that can be compiled into a graph node.

    interface IPipelineStage {
        id: string;
        name: string;
        execute(context: PipelineContext): Promise<StageOutput>;
    }
    Index

    Properties

    Methods

    Properties

    id: string

    Unique stage identifier (used as graph node ID).

    name: string

    Human-readable stage name.

    Methods