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

    Interface StageOutput

    Result of executing a single pipeline stage.

    interface StageOutput {
        stateKey: string;
        value: unknown;
        durationMs: number;
        success: boolean;
        error?: string;
    }
    Index

    Properties

    stateKey: string

    The key to store this stage's output under in pipeline state.

    value: unknown

    The output value (stored in GraphState).

    durationMs: number

    Duration in milliseconds.

    success: boolean

    Whether the stage succeeded.

    error?: string

    Error message if failed.