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

    Interface SecurityPolicyDecision

    Decision returned by the policy gate.

    interface SecurityPolicyDecision {
        allowed: boolean;
        requiresApproval: boolean;
        violations: readonly {
            rule: string;
            message: string;
            severity: "warn" | "block";
        }[];
        evaluatedAt: string;
    }
    Index

    Properties

    allowed: boolean

    Whether the action is allowed to proceed.

    requiresApproval: boolean

    Whether human approval is required before execution.

    violations: readonly {
        rule: string;
        message: string;
        severity: "warn" | "block";
    }[]

    All detected violations (blocking and warnings).

    evaluatedAt: string

    Timestamp of the evaluation (ISO 8601).