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

    Type Alias GraphEdge

    GraphEdge:
        | { type: "fixed"; from: string; to: string; maxTraversals?: number }
        | {
            type: "conditional";
            from: string;
            router: (state: Readonly<GraphState>) => string;
            targets: readonly string[];
            maxTraversals?: number;
        }

    Edge types in the graph.