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

    Function createDryRunHandler

    • Creates the default dry-run node handler for a subtask. Returns a placeholder string describing the subtask.

      Parameters

      • node: {
            id: string;
            description: string;
            type: "code" | "test" | "refactor" | "config" | "docs";
            complexity: "complex" | "simple" | "moderate" | "expert";
            capabilities: string[];
            dependsOn: string[];
            sourceRequirement?: string;
        }
        • id: string

          Unique identifier for this subtask

        • description: string

          Human-readable description of what this subtask does

        • type: "code" | "test" | "refactor" | "config" | "docs"

          The type of work

        • complexity: "complex" | "simple" | "moderate" | "expert"

          Estimated complexity

        • capabilities: string[]

          Required capabilities for the executing agent

        • dependsOn: string[]

          IDs of subtasks this depends on

        • OptionalsourceRequirement?: string

          Source requirement text that generated this subtask

      Returns (state: Readonly<GraphState>) => Promise<Partial<GraphState>>