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

    Interface WaveTask<T>

    A task to be executed in a wave.

    interface WaveTask<T = unknown> {
        id: string;
        description: string;
        input: T;
        dependencies: readonly string[];
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    id: string

    Unique identifier for this task.

    description: string

    Human-readable description of what this task does.

    input: T

    The input data for this task.

    dependencies: readonly string[]

    IDs of tasks that must complete before this one can start.