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

    Interface ExpertBridgeResult

    Result of an expert execution.

    interface ExpertBridgeResult {
        success: boolean;
        text: string;
        expertType: BuiltInExpertType;
        durationMs: number;
        error?: string;
        cli?: "claude" | "gemini" | "codex" | "opencode";
    }
    Index

    Properties

    success: boolean
    text: string
    expertType: BuiltInExpertType
    durationMs: number
    error?: string
    cli?: "claude" | "gemini" | "codex" | "opencode"

    CLI that actually executed the task, resolved from the underlying CliResponse.model via getCliForModelId. Undefined when the bridge failed before dispatch (no adapters / circuit-open / rate-limit cap). Callers writing to OutcomeStore should use this rather than hardcoding a cli — see #2823 (#1154 regression).