google-drive

Search Google Drive files and create, upload, rename, move, or copy them through Fermix.

9|Updated Mar 31, 2026
One-click install
npx skills add https://github.com/tezra-io/fermix --skill google-drive-tezra-io
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: google-drive
Source: https://github.com/tezra-io/fermix/tree/main/apps/fermix_core/priv/plugins/google_drive/skills/google-drive
Command: npx skills add https://github.com/tezra-io/fermix --skill google-drive-tezra-io

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Google Drive files through chat requires switching to the Drive web interface for every small task. This Skill lets you search files and perform common organization actions directly through the Fermix Google Drive plugin without leaving your conversation. ## Core Features & Use Cases - File Search: Find files by name with google_drive_search_files, returning metadata like type, link, and modified time. - Create & Upload: Make folders with google_drive_create_folder and upload text files with google_drive_upload_file. - Organize Files: Rename, move, and copy files using google_drive_update_file, google_drive_move_file, and google_drive_copy_file. - Use Case: Ask to create a "Receipts 2026" folder, then search for an expense file and move it into that folder by passing the destination as add_parent_id and the current folder as remove_parent_id. ## Quick Start Ask the agent to find a file in Google Drive by name, for example: search Google Drive for my Q3 plan document.

Frequently Asked Questions about google-drive

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search for files in Google Drive from a chat agent?▼

Use the google_drive_search_files tool with a query argument to search by file name. It returns metadata including name, type, link, and modified time, with optional max_results and include_trashed parameters.

How to move a file between Google Drive folders?▼

First search for the file to get its id, then call google_drive_move_file with the destination folder as add_parent_id and the current folder as remove_parent_id. Passing both ensures the file relocates instead of living in two folders.

Can I delete or share Google Drive files with this plugin?▼

No, delete, trash, and share operations are not available. Those tools are withheld pending a runtime approval gate, so requests to delete or share should be declined rather than improvised.

Why does a Google Drive tool return a reauthorize error?▼

A reauthorize error means the required OAuth scope was not granted at sign-in. Search uses a read-only scope while create and edit tools use the drive scope; run fermix plugins auth reauthorize google_drive to grant the missing scope.

What are the limitations of Google Drive file uploads here?▼

Uploads support text content only via google_drive_upload_file, with an optional mime_type defaulting to text/plain. Binary upload, replacing an existing file's content, and exporting Google Docs, Sheets, or Slides are not supported.