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

    Type Alias SessionCapabilities

    Session capabilities supported by the agent.

    As a baseline, all Agents MUST support session/new, session/prompt, session/cancel, and session/update.

    Optionally, they MAY support other session methods and notifications by specifying additional capabilities.

    Note: session/load is still handled by the top-level load_session capability. This will be unified in future versions of the protocol.

    See protocol docs: Session Capabilities

    type SessionCapabilities = {
        _meta?: { [key: string]: unknown } | null;
        fork?: SessionForkCapabilities | null;
        list?: SessionListCapabilities | null;
        resume?: SessionResumeCapabilities | 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

    UNSTABLE

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

    Whether the agent supports session/fork.

    UNSTABLE

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

    Whether the agent supports session/list.

    UNSTABLE

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

    Whether the agent supports session/resume.