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

    Interface ReadTextFileRequest

    Request to read content from a text file.

    Only available if the client supports the fs.readTextFile capability.

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

    Properties

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

    Extension point for implementations

    limit?: null | number

    Maximum number of lines to read.

    line?: null | number

    Line number to start reading from (1-based).

    path: string

    Absolute path to the file to read.

    sessionId: string

    The session ID for this request.