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

    Interface 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

    interface ToolCallLocation {
        _meta?: { [k: string]: unknown };
        line?: number | null;
        path: string;
    }
    Index

    Properties

    Properties

    _meta?: { [k: string]: unknown }

    Extension point for implementations

    line?: number | null

    Optional line number within the file.

    path: string

    The file path being accessed or modified.