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

    Interface CorroborationResult

    Result of corroboration validation.

    interface CorroborationResult {
        satisfied: boolean;
        corroboratingSources: readonly (
            | { type: "repoFile"; path: string; line?: number; commit?: string }
            | {
                type: "issueComment";
                issueNumber: number;
                commentId: number;
                author: string;
                authorTrustTier: "1" | "2" | "3" | "4";
            }
            | {
                type: "ciResult";
                runId: number;
                status: "pass"
                | "fail";
                job: string;
            }
            | { type: "policyDoc"; path: string; section: string }
            | { type: "maintainerCommand"; username: string; commentId: number }
        )[];
        missing: readonly string[];
        actionType:
            | "GeneratePatchPlan"
            | "DraftReply"
            | "ProposeLabels"
            | "SummarizeIssue"
            | "ClassifyIssue"
            | "IdentifyDuplicates"
            | "RequestHumanApproval"
            | "RefuseAction"
            | "HandoffMessage";
    }
    Index

    Properties

    satisfied: boolean

    Whether corroboration requirements are satisfied.

    corroboratingSources: readonly (
        | { type: "repoFile"; path: string; line?: number; commit?: string }
        | {
            type: "issueComment";
            issueNumber: number;
            commentId: number;
            author: string;
            authorTrustTier: "1" | "2" | "3" | "4";
        }
        | { type: "ciResult"; runId: number; status: "pass"
        | "fail"; job: string }
        | { type: "policyDoc"; path: string; section: string }
        | { type: "maintainerCommand"; username: string; commentId: number }
    )[]

    Sources that contributed to corroboration.

    missing: readonly string[]

    Missing corroboration requirements (empty when satisfied).

    actionType:
        | "GeneratePatchPlan"
        | "DraftReply"
        | "ProposeLabels"
        | "SummarizeIssue"
        | "ClassifyIssue"
        | "IdentifyDuplicates"
        | "RequestHumanApproval"
        | "RefuseAction"
        | "HandoffMessage"

    Action type that was validated.