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

    Interface SubTask

    A subtask broken down from the main task.

    interface SubTask {
        id: string;
        parentTaskId: string;
        description: string;
        expectedOutput: string;
        dependencies: string[];
        priority: SubtaskPriority;
        status: SubtaskStatus;
        assignedRole?: AgentRole;
        complexity: number;
        requiredCapabilities: string[];
    }
    Index

    Properties

    id: string

    Unique subtask identifier

    parentTaskId: string

    Parent task ID

    description: string

    Description of what needs to be done

    expectedOutput: string

    Expected output format or type

    dependencies: string[]

    Dependencies on other subtasks (by ID)

    priority: SubtaskPriority

    Priority level

    Current status

    assignedRole?: AgentRole

    Assigned expert role (if any)

    complexity: number

    Estimated complexity (1-10)

    requiredCapabilities: string[]

    Required capabilities for this subtask