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

    Interface PolicyEvaluation

    Result of sandbox policy evaluation.

    interface PolicyEvaluation {
        allowed: boolean;
        reason?: string;
        policyId: string;
        violations: readonly PolicyViolation[];
        configurationWarnings?: readonly string[];
    }
    Index

    Properties

    allowed: boolean

    Whether the operation is allowed.

    reason?: string

    Denial reason if not allowed.

    policyId: string

    Policy that was applied.

    violations: readonly PolicyViolation[]

    Violations found.

    configurationWarnings?: readonly string[]

    Configuration mismatches the executor surfaces to operators — capabilities declared in the policy but unenforceable because the corresponding allowlist is empty (e.g. process_spawn set but allowedCommands: []). Source: #2428 ask 1. Not security violations; informational only.