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

    Type Alias WaitForTerminalExitResponse

    Response containing the exit status of a terminal command.

    type WaitForTerminalExitResponse = {
        _meta?: { [key: string]: unknown } | null;
        exitCode?: number | null;
        signal?: string | null;
    }
    Index

    Properties

    _meta?: { [key: string]: unknown } | null

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility

    exitCode?: number | null

    The process exit code (may be null if terminated by signal).

    signal?: string | null

    The signal that terminated the process (may be null if exited normally).