Agent Client Protocol - v0.12.0
    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 = {
        _meta?: { [key: string]: unknown } | null;
        line?: number | null;
        path: string;
    }
    Index

    Properties

    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

    line?: number | null

    Optional line number within the file.

    path: string

    The file path being accessed or modified.