ACP v2 TypeScript SDK — EXPERIMENTAL DRAFT - v1.3.0
    Preparing search index...

    Type Alias ToolCallLocationExperimental

    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: AbsolutePath;
        line?: number | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index

    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