@pwngh/economy-lab
    Preparing search index...

    Type Alias AuditRecord

    One audit entry. Tier 1 means a guarded lever exists for the signature; tier 3 means the supervisor only reports or escalates. subject narrows the record to one saga id or watched signal name, null when the episode is composition-wide. detail carries the evidence and can hold bigint amounts — the JSONL sinks encode those as {"$bigint":"..."}.

    type AuditRecord = {
        at: number;
        detail: Record<string, unknown>;
        phase: AuditPhase;
        signature: SignatureName;
        subject: string | null;
        tier: 1 | 3;
    }
    Index
    at: number
    detail: Record<string, unknown>
    phase: AuditPhase
    signature: SignatureName
    subject: string | null
    tier: 1 | 3