Agent Skills
› outworked/outworked
› Google Drive
Google Drive
GitHub该技能提供Google Drive文件管理能力,支持搜索、读取、上传、列表展示、创建文件夹及分享文件。适用于需访问或操作云端文档内容的场景。
Trigger Scenarios
用户需要查找或浏览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


