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

    Interface StreamRecorderInit

    How a recorder is pointed at one dispatch.

    interface StreamRecorderInit {
        credential: RecordedCredential;
        dispatchAttempted?: () => boolean;
        headerEventId: string;
        now: () => number;
        pinned: PinnedRoute;
        requestDigest: string;
        secret: string | null;
        session: SessionService;
    }
    Index
    credential: RecordedCredential

    What the credentials seam said about the reference — never its value.

    dispatchAttempted?: () => boolean
    headerEventId: string
    now: () => number

    Injectable clock, so a duration in a signed row is testable.

    pinned: PinnedRoute

    The route this call pinned. Its adapter identity lands on the settlement row.

    requestDigest: string
    secret: string | null

    The value resolved for this request, held ONLY to scrub it back out of provider text before that text is signed. Never recorded, never returned.

    session: SessionService