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

    Type Alias SessionConfigOptionsCapabilities

    Session configuration option capabilities supported by the client.

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

    Whether the client supports boolean session configuration options.

    Optional. Omitted or null both mean the client does not advertise support. Supplying {} means agents may include type: "boolean" entries in configOptions, and the client may send session/set_config_option requests with type: "boolean" and a boolean value.

    _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