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

    Interface PipelineContext

    Read-only pipeline context passed to every stage.

    interface PipelineContext {
        executionId: string;
        task: string;
        templateId: string;
        state: Readonly<Record<string, unknown>>;
        sharedMemory: SharedMemoryStore;
    }
    Index

    Properties

    executionId: string

    Unique pipeline execution ID.

    task: string

    The original task/prompt that started the pipeline.

    templateId: string

    Pipeline template being executed.

    state: Readonly<Record<string, unknown>>

    Accumulated state from prior stages.

    sharedMemory: SharedMemoryStore

    Cross-stage knowledge store for discoveries, decisions, constraints (#1764).