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

    Type Alias TerminalExitStatus

    Exit status of a terminal command.

    type TerminalExitStatus = {
        _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).