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

    Interface TaskAnalysis

    Result of task analysis.

    interface TaskAnalysis {
        taskId: string;
        complexity: number;
        taskType: string;
        requirements: string[];
        risks: string[];
        needsDecomposition: boolean;
        approach: string;
        estimatedEffort: number;
        commitment?: TaskCommitment;
    }
    Index

    Properties

    taskId: string

    Task ID being analyzed

    complexity: number

    Overall complexity score (1-10)

    taskType: string

    Type of task (code, architecture, documentation, etc.)

    requirements: string[]

    Key requirements extracted from the task

    risks: string[]

    Identified risks or challenges

    needsDecomposition: boolean

    Whether task needs decomposition

    approach: string

    Recommended approach

    estimatedEffort: number

    Estimated total effort in relative units

    commitment?: TaskCommitment

    Commit-before-generate block (#1827). Forces the orchestrator to commit to a direction before dispatching workers, countering LLM mode-collapse toward safe defaults. Optional for backward compatibility with older analysis outputs.