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

    Interface AgentVoteSummary

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

    interface AgentVoteSummary {
        role: string;
        decision: "approve" | "reject" | "abstain";
        confidence: number;
        reasoning: string;
        simulated: boolean;
        error: boolean;
        modelUsed?: string;
        rejectionCategories?: readonly string[];
    }
    Index

    Properties

    role: string
    decision: "approve" | "reject" | "abstain"
    confidence: number
    reasoning: string
    simulated: boolean
    error: boolean

    True when this vote was generated from an error (Issue #815).

    modelUsed?: string

    Model used for this agent's vote (Issue #817).

    rejectionCategories?: readonly string[]

    Structured rejection categories for reject→refine→re-vote loops (Issue #1213).