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

    Interface WorkflowExecutionContext

    Full execution context for a running workflow. Tracks step results, variables, and provides input resolution. This is the comprehensive context used by the step executor.

    interface WorkflowExecutionContext {
        workflowId: string;
        executionId: string;
        inputs: Record<string, unknown>;
        stepResults: Map<string, StepResult>;
        variables: Map<string, unknown>;
        startedAt: Date;
        cancelled: boolean;
    }
    Index

    Properties

    workflowId: string

    Workflow definition ID

    executionId: string

    Unique execution instance ID

    inputs: Record<string, unknown>

    Initial workflow inputs

    stepResults: Map<string, StepResult>

    Results from completed steps (stepId -> result)

    variables: Map<string, unknown>

    Runtime variables set during execution

    startedAt: Date

    Execution start time

    cancelled: boolean

    Whether execution has been cancelled