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

    Interface IncompleteResult

    A typed partial result from a pipeline stage.

    interface IncompleteResult {
        stageId: string;
        partialOutput: unknown;
        missing: readonly string[];
        severity: IncompleteSeverity;
        justification: string;
        canProceed: boolean;
    }
    Index

    Properties

    stageId: string

    The stage that produced this result.

    partialOutput: unknown

    What was accomplished (may be partial).

    missing: readonly string[]

    What was NOT accomplished.

    Severity — determines downstream behavior.

    justification: string

    Why the stage couldn't fully complete.

    canProceed: boolean

    Whether downstream stages can proceed.