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

    Interface GraphNode

    A node in the workflow graph.

    interface GraphNode {
        id: string;
        handler: NodeHandler;
        timeout?: number;
        retries?: number;
        preconditions?: readonly PreconditionConfig[];
        verify?: NodeHook;
    }
    Index

    Properties

    id: string
    handler: NodeHandler
    timeout?: number
    retries?: number
    preconditions?: readonly PreconditionConfig[]

    Precondition hooks run before node execution (Issue #997).

    verify?: NodeHook

    Post-step verification hook run after node execution (Issue #994).