Agent Client Protocol - v0.2.0-alpha.8
    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 {
        line?: null | number;
        path: string;
    }
    Index

    Properties

    Properties

    line?: null | number

    Optional line number within the file.

    path: string

    The file path being accessed or modified.