agentio-gdrive

Manages Google Drive files via the agentio CLI for listing, searching, uploading, and sharing.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-gdrive-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-gdrive
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-gdrive
Command: npx skills add https://github.com/plosson/agentio --skill agentio-gdrive-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Working with Google Drive from scripts, CI pipelines, or LLM agents normally requires writing OAuth flows and Drive API client code. This Skill exposes the full Drive workflow as plain agentio CLI commands, so an agent can list, search, download, upload, organize, and share files without any custom integration code. ## Core Features & Use Cases - File Discovery & Search: List files and folders, filter with Drive API query syntax, and run full-text search across file names and content. - Download & Export: Download binary files as-is or export Google Workspace files (Docs, Sheets, Slides) to PDF, DOCX, XLSX, CSV, PPTX, and more. - Upload & Organize: Upload files with optional conversion to native Google formats, plus copy, rename, move, mkdir, and trash operations. - Sharing & Permissions: List permissions and share files with users, groups, domains, or anyone-with-link at reader, commenter, or writer roles. - Use Case: In a scheduled GitHub Actions job, generate a report, upload it to a shared Drive folder with agentio gdrive put ./report.pdf --folder <id>, then share it with your team using agentio gdrive share. ## Quick Start Ask the agent to list your 20 most recently modified Google Drive files, then download a specific file by its ID or Drive URL to a local path.

Frequently Asked Questions about agentio-gdrive

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

FAQPage Schema
How do I upload a file to Google Drive from the command line?▼

Run agentio gdrive put with the local file path, optionally specifying a destination folder ID and custom name. Add --convert to turn DOCX, XLSX, or PPTX files into native Google Docs, Sheets, or Slides during upload.

How to export a Google Doc as PDF using a CLI?▼

Use agentio gdrive download with the file ID or URL, an output path, and --export pdf. Docs also export to docx, odt, txt, html, and rtf; Sheets export to xlsx, csv, pdf, ods, and tsv; Slides export to pptx, pdf, odp, and txt.

Can I search Google Drive file contents from the command line?▼

Yes, agentio gdrive search performs full-text search across both file names and content. You can filter results by MIME type with --type, restrict the search to a folder with --folder, and raise the result count with --limit.

Does agentio gdrive support sharing files with specific users?▼

Yes, agentio gdrive share creates permissions for specific users, groups, entire domains, or anyone with the link. You can set reader, commenter, or writer roles and optionally send a notification email with a custom message.

What happens when I trash a file with agentio gdrive?▼

The trash command moves the file to Google Drive's trash, where it stays recoverable for 30 days before Google deletes it permanently. The command accepts either a file ID or a full Drive URL.