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

    Interface ClassifyResult

    Result of trust classification.

    interface ClassifyResult {
        trustTier: "1" | "2" | "3" | "4";
        userRole:
            | "unknown"
            | "owner"
            | "maintainer"
            | "collaborator"
            | "contributor"
            | "member";
        isAllowlisted: boolean;
        wasDowngraded: boolean;
        reason: string;
    }
    Index

    Properties

    trustTier: "1" | "2" | "3" | "4"

    Assigned trust tier.

    userRole:
        | "unknown"
        | "owner"
        | "maintainer"
        | "collaborator"
        | "contributor"
        | "member"

    GitHub user role.

    isAllowlisted: boolean

    Whether the user is on the maintainer allowlist.

    wasDowngraded: boolean

    Whether content triggered a trust downgrade.

    reason: string

    Reason for the assigned tier.