AutoBE
    Preparing search index...

    Interface IAutoBeDebugExecutionResult

    Result of the Claude Code CLI run performed by the Debug phase.

    interface IAutoBeDebugExecutionResult {
        arguments: string[];
        command: string;
        cwd: string;
        exitCode: number | null;
        report: IReport | null;
        signal: string | null;
        stderr: string;
        stdout: string;
        tokenUsage?: IAutoBeTokenUsageJson.IComponent;
    }
    Index

    Properties

    arguments: string[]

    Arguments passed to the executable.

    command: string

    Executable name used to start Claude Code.

    cwd: string

    Temporary rendered workspace where the command was executed.

    exitCode: number | null

    Process exit code, or null when the process did not exit normally.

    report: IReport | null

    Structured report requested from Claude Code.

    signal: string | null

    Process signal, or null when no signal terminated the process.

    stderr: string

    Captured standard error.

    stdout: string

    Captured standard output.

    Token usage parsed from Claude Code's JSON stdout.