@archastro/sdk
    Preparing search index...

    Interface ComputerExecResult

    The result of executing a shell command on an agent's computer environment. Contains the captured output and the process exit code.

    interface ComputerExecResult {
        exit_code?: number;
        output?: string;
    }
    Index

    Properties

    Properties

    exit_code?: number

    The UNIX exit code returned by the process. 0 indicates success; any non-zero value indicates an error. null if the process did not terminate normally.

    output?: string

    The combined stdout and stderr output produced by the command. null if the command produced no output.