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

    Interface CliError

    CLI execution error.

    interface CliError {
        code: CliErrorCode;
        message: string;
        cli: "claude" | "gemini" | "codex" | "opencode";
        cause?: Error;
        retryable: boolean;
    }
    Index

    Properties

    Error code

    message: string

    Human-readable message

    cli: "claude" | "gemini" | "codex" | "opencode"

    CLI that produced the error

    cause?: Error

    Underlying error (if any)

    retryable: boolean

    Whether the error is retryable