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

    Interface LifecycleTransitionRecord

    interface LifecycleTransitionRecord {
        actor: string;
        actorRole: "operator" | "developer" | "deployer";
        controlsSatisfied: string[];
        fromStage:
            | "deprecated"
            | "development"
            | "staging"
            | "production"
            | "testing";
        note: string
        | null;
        toStage:
            | "deprecated"
            | "development"
            | "staging"
            | "production"
            | "testing";
        transitionId: string;
        ts: number;
    }
    Index
    actor: string
    actorRole: "operator" | "developer" | "deployer"
    controlsSatisfied: string[]
    fromStage: "deprecated" | "development" | "staging" | "production" | "testing"
    note: string | null
    toStage: "deprecated" | "development" | "staging" | "production" | "testing"
    transitionId: string
    ts: number