@deskcreate/agentcraft
    Preparing search index...

    Interface AnalyticsHistorySnapshot

    interface AnalyticsHistorySnapshot {
        experimentPlans: readonly {
            createdAt: string;
            id: string;
            inputs: string[];
            provenance: { kind: "model" | "user" | "tool" | "file"; ref: string }[];
            sourceSkill: string;
            status:
                | "draft"
                | "reviewed"
                | "verified"
                | "blocked"
                | "published"
                | "archived";
            title?: string;
            type: string;
        }[];
        experimentResults: readonly ExperimentResult[];
        performanceReports: readonly {
            createdAt: string;
            id: string;
            inputs: string[];
            provenance: { kind: "model"
            | "user"
            | "tool"
            | "file"; ref: string }[];
            sourceSkill: string;
            status:
                | "draft"
                | "reviewed"
                | "verified"
                | "blocked"
                | "published"
                | "archived";
            title?: string;
            type: string;
        }[];
    }
    Index

    Properties

    experimentPlans: readonly {
        createdAt: string;
        id: string;
        inputs: string[];
        provenance: { kind: "model" | "user" | "tool" | "file"; ref: string }[];
        sourceSkill: string;
        status:
            | "draft"
            | "reviewed"
            | "verified"
            | "blocked"
            | "published"
            | "archived";
        title?: string;
        type: string;
    }[]
    experimentResults: readonly ExperimentResult[]
    performanceReports: readonly {
        createdAt: string;
        id: string;
        inputs: string[];
        provenance: { kind: "model" | "user" | "tool" | "file"; ref: string }[];
        sourceSkill: string;
        status:
            | "draft"
            | "reviewed"
            | "verified"
            | "blocked"
            | "published"
            | "archived";
        title?: string;
        type: string;
    }[]