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

    Interface WaveExecutionResult

    Final result of the full wave execution.

    interface WaveExecutionResult {
        waves: readonly WaveResult[];
        allResults: readonly WaveTaskResult[];
        totalTokensUsed: number;
        totalDurationMs: number;
        aborted: boolean;
        abortReason?: string;
    }
    Index

    Properties

    waves: readonly WaveResult[]

    Results organized by wave.

    allResults: readonly WaveTaskResult[]

    All task results flat.

    totalTokensUsed: number

    Total estimated tokens consumed across all waves.

    totalDurationMs: number

    Total duration in ms.

    aborted: boolean

    Whether execution was aborted early (budget exceeded or failure).

    abortReason?: string

    Reason for abort, if aborted.