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

    Interface PreferenceSignal

    Explicit preference signal from human or AI feedback.

    interface PreferenceSignal {
        source: "human" | "ai" | "implicit";
        preferred: "claude" | "gemini" | "codex" | "opencode";
        rejected?: "claude" | "gemini" | "codex" | "opencode";
        reason?: string;
        confidence: number;
    }
    Index

    Properties

    source: "human" | "ai" | "implicit"

    Source of the preference

    preferred: "claude" | "gemini" | "codex" | "opencode"

    Preferred CLI for this task type

    rejected?: "claude" | "gemini" | "codex" | "opencode"

    Rejected CLI (if comparative preference)

    reason?: string

    Optional reasoning

    confidence: number

    Confidence in the preference (0-1)