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

    Interface TaskSignals

    Input signals for workflow routing decisions. Combines explicit caller hints with SharedTaskAnalyzer output.

    interface TaskSignals {
        description: string;
        subtaskCount?: number;
        hasDependencies?: boolean;
        dependencyStructure?: DependencyStructure;
        requiresConsensus?: boolean;
        isNovel?: boolean;
        timeConstraint?: TimeConstraint;
        qualityRequirement?: QualityRequirement;
        forcePattern?: WorkflowPattern;
    }
    Index

    Properties

    description: string

    Natural language task description

    subtaskCount?: number

    Estimated number of subtasks (optional hint)

    hasDependencies?: boolean

    Whether subtasks depend on each other (optional hint)

    dependencyStructure?: DependencyStructure

    Dependency structure classification (optional hint)

    requiresConsensus?: boolean

    Whether multi-perspective consensus is needed

    isNovel?: boolean

    Whether this task type has been seen before

    timeConstraint?: TimeConstraint

    Time urgency

    qualityRequirement?: QualityRequirement

    Quality requirement level

    forcePattern?: WorkflowPattern

    Force a specific pattern (escape hatch per DevEx feedback)