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

    Interface WaveTaskResult

    Result of a single task execution.

    interface WaveTaskResult {
        taskId: string;
        success: boolean;
        output: string;
        truncated: boolean;
        originalLength: number;
        estimatedTokens: number;
        durationMs: number;
        error?: string;
    }
    Index

    Properties

    taskId: string

    Task ID this result belongs to.

    success: boolean

    Whether the task completed successfully.

    output: string

    The output text (truncated to maxOutputChars).

    truncated: boolean

    Whether the output was truncated.

    originalLength: number

    Original output length before truncation.

    estimatedTokens: number

    Estimated tokens consumed by this task.

    durationMs: number

    Duration of this task in ms.

    error?: string

    Error message if task failed.