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

    Interface PrReviewVote

    MCP exports - MCP server implementation Split from index.ts for file size compliance (Issue #285) Updated Issue #538: Added missing tool registration exports

    interface PrReviewVote {
        role: VoterRole;
        decision: PrReviewDecision;
        confidence: number;
        reasoning: string;
        findings: readonly Finding[];
        source: "error" | "llm" | "simulation";
        cli?: string;
        processingTimeMs: number;
        errorMessage?: string;
    }
    Index

    Properties

    role: VoterRole
    confidence: number
    reasoning: string

    Free-form reasoning from the voter — full text including the findings YAML block (which is also parsed into findings below).

    findings: readonly Finding[]

    Structured findings parsed from the voter's reasoning per #2225 + #2233 Child 3. Each Finding has a verification gate output and a derived verified boolean. Only verified findings can trigger request_changes — see aggregatePrDecisions.

    source: "error" | "llm" | "simulation"
    cli?: string
    processingTimeMs: number
    errorMessage?: string