Agent Skills
› outworked/outworked
› Google Drive
Google Drive
GitHub提供Google Drive文件管理功能,支持搜索、读取、上传、创建文件夹及分享文件。适用于需要集成云端存储操作的场景,如文档自动化处理或数据同步。
Trigger Scenarios
用户请求在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


