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

    Interface PreconditionConfig

    Configuration for a precondition hook. Preconditions run before node execution. If a required precondition fails, the node is skipped.

    interface PreconditionConfig {
        name: string;
        hook: NodeHook;
        required?: boolean;
    }
    Index

    Properties

    Properties

    name: string
    hook: NodeHook
    required?: boolean

    If true (default), failure prevents node execution.