Agent Client Protocol - v1.2.1
    Preparing search index...

    Type Alias ClientSessionCapabilities

    Session-related capabilities supported by the client.

    type ClientSessionCapabilities = {
        configOptions?: SessionConfigOptionsCapabilities | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index
    configOptions?: SessionConfigOptionsCapabilities | null

    Config option capabilities supported by the client.

    Omitted or null both mean the client does not advertise support for any config option extensions.

    _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