Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface PropagationResult

    interface PropagationResult {
        affectedNodes: {
            nodeId: string;
            nodeLabel: string;
            pathEdgeTypes: SemanticEdgeType[];
            pathLength: number;
            reason: string;
            riskScore: number;
        }[];
        blastRadius: number;
        chains: { path: string[]; totalRisk: number }[];
        sourceNodeId: string;
    }
    Index
    affectedNodes: {
        nodeId: string;
        nodeLabel: string;
        pathEdgeTypes: SemanticEdgeType[];
        pathLength: number;
        reason: string;
        riskScore: number;
    }[]

    All nodes affected with their risk scores

    blastRadius: number

    Blast radius as a fraction of total graph nodes

    chains: { path: string[]; totalRisk: number }[]

    Risk propagation chains

    sourceNodeId: string

    The node we started from