Agent Armor API Reference
    Preparing search index...

    Interface CrossTurnThreat

    A threat that only emerges across multiple turns (cross-turn decomposition): a payload split across a turn boundary, or signal accumulated over turns. It has no single-string offset, so location is omitted and evidence carries one snippet; contributingTurns records which turns fed it.

    interface CrossTurnThreat {
        accumulatedConfidence: number;
        category: TrapCategory;
        confidence: number;
        contributingTurns: number[];
        description: string;
        detectorId: string;
        evidence: string;
        severity: Severity;
        source: ThreatSource;
        type: TrapType;
    }

    Hierarchy

    • Omit<Threat, "location">
      • CrossTurnThreat
    Index
    accumulatedConfidence: number

    Running confidence total that crossed the reporting threshold.

    category: TrapCategory

    Which category from the DeepMind taxonomy

    confidence: number

    How confident the detector is (0-1)

    contributingTurns: number[]

    Indices (into the scanned turn array) that contributed to this threat.

    description: string

    Human-readable description of the threat

    detectorId: string

    Which detector found this

    evidence: string

    The offending content snippet (truncated)

    severity: Severity

    How dangerous this threat is if exploited

    source: ThreatSource

    Where this threat was detected: pattern (regex), ml (classifier), or custom

    type: TrapType

    Specific trap type within the category