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

    Interface FileSystemCapability

    File system capabilities supported by the client. Determines which file operations the agent can request.

    interface FileSystemCapability {
        _meta?: { [k: string]: unknown };
        readTextFile?: boolean;
        writeTextFile?: boolean;
    }
    Index

    Properties

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

    Extension point for implementations

    readTextFile?: boolean

    Whether the Client supports fs/read_text_file requests.

    writeTextFile?: boolean

    Whether the Client supports fs/write_text_file requests.