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

    Interface SandboxResult

    Sandbox execution result.

    interface SandboxResult {
        success: boolean;
        exitCode: number;
        stdout: string;
        stderr: string;
        durationMs: number;
        resourceUsage: ResourceUsage;
        policyEvaluation: PolicyEvaluation;
    }
    Index

    Properties

    success: boolean

    Whether execution succeeded.

    exitCode: number

    Exit code from the command.

    stdout: string

    Standard output.

    stderr: string

    Standard error.

    durationMs: number

    Execution duration in milliseconds.

    resourceUsage: ResourceUsage

    Resource usage metrics.

    policyEvaluation: PolicyEvaluation

    Policy evaluation result.