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

    Type Alias ClientCapabilities

    Capabilities supported by the client.

    Advertised during initialization to inform the agent about available features and methods.

    See protocol docs: Client Capabilities

    type ClientCapabilities = {
        _meta?: { [key: string]: unknown } | null;
        auth?: AuthCapabilities;
        elicitation?: ElicitationCapabilities | null;
        fs?: FileSystemCapabilities;
        nes?: ClientNesCapabilities | null;
        positionEncodings?: PositionEncodingKind[];
        terminal?: boolean;
    }
    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

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    Authentication capabilities supported by the client. Determines which authentication method types the agent may include in its InitializeResponse.

    elicitation?: ElicitationCapabilities | null

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    Elicitation capabilities supported by the client. Determines which elicitation modes the agent may use.

    File system capabilities supported by the client. Determines which file operations the agent can request.

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    NES (Next Edit Suggestions) capabilities supported by the client.

    positionEncodings?: PositionEncodingKind[]

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    The position encodings supported by the client, in order of preference.

    terminal?: boolean

    Whether the Client support all terminal* methods.