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

    Interface VotingObservation

    Record of a single voting observation for correlation tracking.

    interface VotingObservation {
        proposalId: string;
        agentId: string;
        decision: "approve" | "reject" | "abstain";
        confidence: number;
        alignedWithOutcome: boolean;
        timestamp: Date;
    }
    Index

    Properties

    proposalId: string

    Unique proposal ID

    agentId: string

    Agent who cast the vote

    decision: "approve" | "reject" | "abstain"

    The vote decision

    confidence: number

    Confidence level (0-1)

    alignedWithOutcome: boolean

    Whether the vote aligned with the final outcome

    timestamp: Date

    Timestamp of the vote