Reviewer Suggestion
    Preparing search index...

    Interface SuggestionResult

    Suggested reviewers, diagnostics, and captured request context.

    interface SuggestionResult {
        belowThreshold: ScoredCandidate[];
        context: RequestContext;
        partial: boolean;
        selected: ScoredCandidate[];
        warnings: Diagnostic[];
    }
    Index
    belowThreshold: ScoredCandidate[]

    Up to three eligible candidates with evidence below the score threshold.

    Captured request context; assignment always refreshes it before writing.

    partial: boolean

    True when optional collection produced warnings.

    selected: ScoredCandidate[]

    Ranked suggestions in stable score, normalized username, and ID order.

    warnings: Diagnostic[]

    Safe diagnostics for optional collection failures and truncated signals.