nexus-agents - v2.80.0
    Preparing search index...

    Interface CliCircuitHealthStatus

    Health status for all CLIs with circuit state.

    interface CliCircuitHealthStatus {
        clis: readonly {
            name: "claude" | "gemini" | "codex" | "opencode";
            healthy: boolean;
            circuitState: "open" | "closed" | "half-open";
            failureCount: number;
            lastFailureTime: number | null;
        }[];
        systemHealthy: boolean;
        healthyCount: number;
        timestamp: number;
    }
    Index

    Properties

    clis: readonly {
        name: "claude" | "gemini" | "codex" | "opencode";
        healthy: boolean;
        circuitState: "open" | "closed" | "half-open";
        failureCount: number;
        lastFailureTime: number | null;
    }[]
    systemHealthy: boolean
    healthyCount: number
    timestamp: number