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

    Interface WaveResult

    Result of executing a single wave.

    interface WaveResult {
        waveIndex: number;
        results: readonly WaveTaskResult[];
        totalTokens: number;
        durationMs: number;
    }
    Index

    Properties

    waveIndex: number

    The wave index (0-based).

    results: readonly WaveTaskResult[]

    Results of all tasks in this wave.

    totalTokens: number

    Total estimated tokens consumed by this wave.

    durationMs: number

    Total duration of this wave in ms.