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

    Type Alias ToolCallLocation

    A file location being accessed or modified by a tool.

    Enables clients to implement "follow-along" features that track which files the agent is working with in real-time.

    See protocol docs: Following the Agent

    type ToolCallLocation = {
        path: string;
        line?: number | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index
    path: string

    The absolute file path being accessed or modified.

    line?: number | null

    Optional line number within the file.

    _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