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

    Interface WorkflowStep

    Single step in a workflow.

    interface WorkflowStep {
        id: string;
        agent: AgentRole;
        action: string;
        inputs: Record<string, unknown>;
        dependsOn?: string[];
        parallel?: boolean;
        retries?: number;
        timeout?: number;
        condition?: string;
        contextBudget?: Partial<ContextBudget>;
    }
    Index

    Properties

    id: string

    Unique step identifier

    agent: AgentRole

    Agent role to execute this step

    action: string

    Action to perform

    inputs: Record<string, unknown>

    Inputs for the step

    dependsOn?: string[]

    Step dependencies (wait for these to complete)

    parallel?: boolean

    Execute in parallel with dependencies

    retries?: number

    Number of retry attempts

    timeout?: number

    Timeout in ms

    condition?: string

    Condition for execution

    contextBudget?: Partial<ContextBudget>

    Step-specific context budget override (merges with workflow default)