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

    Interface IdentityStabilityReport

    interface IdentityStabilityReport {
        adversarialResilience: number;
        agentId: string;
        anomalies: IdentityAnomaly[];
        communicationConsistency: number;
        computedAt: number;
        crossModelDrift: number;
        crossSessionDrift: number;
        decisionConsistency: number;
        provenanceTag: string;
        stabilityIndex: number;
        valueConsistency: number;
        windowDays: number;
    }
    Index
    adversarialResilience: number
    agentId: string
    anomalies: IdentityAnomaly[]
    communicationConsistency: number
    computedAt: number
    crossModelDrift: number
    crossSessionDrift: number
    decisionConsistency: number
    provenanceTag: string

    Provenance tag identifying which agent and run produced this report — NOT a cryptographic signature. It is a plain identity:<agentId>:<ts> string with no key involved and nothing to verify against, so it cannot establish authenticity. Use src/crypto/signing for real signing.

    stabilityIndex: number
    valueConsistency: number
    windowDays: number