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

    Interface PropagationStep

    Result of propagating a fault through the agent graph

    interface PropagationStep {
        amplificationFactor: number;
        detected: boolean;
        edgeId: string;
        inputQuality: number;
        mitigated: boolean;
        narrative: string;
        outputQuality: number;
        sourceAgentId: string;
        stepIndex: number;
        targetAgentId: string;
    }
    Index
    amplificationFactor: number

    Error amplification factor (>1 means error grew)

    detected: boolean

    Was the fault detected by the target agent?

    edgeId: string
    inputQuality: number

    Input quality before this step (0-1)

    mitigated: boolean

    Was the fault mitigated?

    narrative: string

    Description of what happened

    outputQuality: number

    Output quality after processing (0-1)

    sourceAgentId: string
    stepIndex: number
    targetAgentId: string