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

    Type Alias SessionMode

    A mode the agent can operate in.

    See protocol docs: Session Modes

    type SessionMode = {
        id: SessionModeId;
        name: string;
        description?: string | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index

    Properties

    Stable identifier used to refer to this protocol object in later messages.

    name: string

    Human-readable name shown for this protocol object.

    description?: string | null

    Optional human-readable details shown with this protocol object.

    _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