Agent Client Protocol - v0.5.1
    Preparing search index...

    Interface TerminalOutputResponse

    Response containing the terminal output and exit status.

    interface TerminalOutputResponse {
        _meta?: { [k: string]: unknown };
        exitStatus?: TerminalExitStatus | null;
        output: string;
        truncated: boolean;
    }
    Index

    Properties

    _meta?: { [k: string]: unknown }

    Extension point for implementations

    exitStatus?: TerminalExitStatus | null

    Exit status if the command has completed.

    output: string

    The terminal output captured so far.

    truncated: boolean

    Whether the output was truncated due to byte limits.