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

    Interface AgentSimReport

    interface AgentSimReport {
        agentId?: string;
        byCategory: Record<ScenarioCategory, { passed: number; total: number }>;
        coverageScore: number;
        criticalFailures: AgentSimResult[];
        failed: number;
        passed: number;
        passRate: number;
        readyForProduction: boolean;
        recommendations: string[];
        results: AgentSimResult[];
        runAt: Date;
        runId: string;
        totalScenarios: number;
    }
    Index
    agentId?: string
    byCategory: Record<ScenarioCategory, { passed: number; total: number }>
    coverageScore: number
    criticalFailures: AgentSimResult[]
    failed: number
    passed: number
    passRate: number
    readyForProduction: boolean
    recommendations: string[]
    results: AgentSimResult[]
    runAt: Date
    runId: string
    totalScenarios: number