Agent Skills
› outworked/outworked
› Google Drive
Google Drive
GitHub提供 Google Drive 文件管理能力,支持搜索、读取、上传、创建文件夹及分享文件。适用于需要集成或操作 Google Drive 云存储资源的场景。
Trigger Scenarios
用户需要查找或浏览 Google Drive 中的文件
用户需要从 Google Drive 读取文档内容
用户需要将文本文件上传至 Google Drive
用户需要与他人共享 Google Drive 文件或文件夹
Install
npx skills add outworked/outworked --skill Google Drive -g -y
SKILL.md
Frontmatter
{
"auth": {
"type": "oauth2",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/drive"
],
"provider": "google"
},
"name": "Google Drive",
"emoji": "📁",
"tools": [
"drive:list",
"drive:search",
"drive:read",
"drive:upload",
"drive:create_folder",
"drive:share"
],
"runtime": "google-drive",
"description": "Search, read, upload, and share files in Google Drive"
}
Google Drive Skill
You can search, read, upload, and manage files in Google Drive.
Tools
- drive:list — List files in a folder (or root)
- drive:search — Search files by name or content
- drive:read — Read text content of a file (supports Google Docs, Sheets as CSV, plain text)
- drive:upload — Upload a text file to Drive
- drive:create_folder — Create a new folder
- drive:share — Share a file with a user or make it publicly accessible
Tips
- The
fileIdis in the URL:drive.google.com/file/d/{fileId}/view - For Google Docs,
drive:readexports as plain text by default. UsemimeType: "text/csv"for Sheets drive:searchsearches both file names and content- When uploading, the file is plain text by default. Set
mimeTypefor other formats drive:sharewithout an email creates a public "anyone with the link" share
Version History
- 89ed7b9 Current 2026-07-19 08:49


