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

    Interface ISandboxExecutor

    Interface for sandbox executors.

    interface ISandboxExecutor {
        name: string;
        execute(
            command: string,
            args: readonly string[],
            options: SandboxExecutionOptions,
        ): Promise<SandboxResult>;
        validate(
            command: string,
            args: readonly string[],
            options: SandboxExecutionOptions,
        ): PolicyEvaluation;
    }
    Index

    Properties

    Methods

    Properties

    name: string

    Executor name for logging.

    Methods