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

    Interface WriteTextFileRequest

    Request to write content to a text file.

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

    interface WriteTextFileRequest {
        _meta?: { [k: string]: unknown };
        content: string;
        path: string;
        sessionId: string;
    }
    Index

    Properties

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

    Extension point for implementations

    content: string

    The text content to write to the file.

    path: string

    Absolute path to the file to write.

    sessionId: string

    The session ID for this request.