ワンクリックで
google-drive-skill
Upload, download, list, and share Google Drive files. Supports folders, file search, and permission management.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Upload, download, list, and share Google Drive files. Supports folders, file search, and permission management.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | google-drive-skill |
| description | Upload, download, list, and share Google Drive files. Supports folders, file search, and permission management. |
| allowed-tools | google_drive |
| metadata | {"author":"opencompany","version":"1.0","category":"productivity"} |
Manage Google Drive files - upload, download, list, and share.
Consolidated Google Drive tool with operation parameter.
| Operation | Description | Required Fields |
|---|---|---|
upload | Upload a file to Drive | filename + (file_url or file_content) |
download | Download a file by ID | file_id |
list | List/search files | (none, defaults to root) |
share | Share a file with a user | file_id, email |
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "upload" |
| file_url | string | Yes* | URL of file to upload |
| file_content | string | Yes* | Base64 encoded file content |
| filename | string | Yes | Name for the uploaded file |
| folder_id | string | No | Destination folder ID (default: root) |
| mime_type | string | No | File MIME type (auto-detected if not provided) |
*Either file_url OR file_content is required.
Example - Upload from URL:
{
"operation": "upload",
"file_url": "https://example.com/report.pdf",
"filename": "Q4_Report.pdf",
"folder_id": "1abc123def456"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "download" |
| file_id | string | Yes | File ID to download |
| output_format | string | No | "base64" or "url" (default: base64) |
Example:
{
"operation": "download",
"file_id": "1xyz789abc"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "list" |
| folder_id | string | No | Folder ID (default: root) |
| query | string | No | Drive search query |
| max_results | integer | No | Maximum results (default: 20, max: 1000) |
| file_types | string | No | Filter: "all", "folder", "document", "spreadsheet", "image" |
| order_by | string | No | Sort order (default: "modifiedTime desc") |
Query Syntax:
name contains 'report' - Files with "report" in namemimeType = 'application/pdf' - PDF files onlymodifiedTime > '2024-01-01' - Recently modifiedtrashed = false - Exclude trashed filesExample - Search for PDFs:
{
"operation": "list",
"query": "name contains 'invoice' and mimeType = 'application/pdf'",
"max_results": 50
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "share" |
| file_id | string | Yes | File ID to share |
| string | Yes | Email address to share with | |
| role | string | No | "reader", "commenter", "writer" (default: reader) |
| send_notification | boolean | No | Send email notification (default: true) |
| message | string | No | Custom notification message |
Example:
{
"operation": "share",
"file_id": "1xyz789abc",
"email": "colleague@example.com",
"role": "writer"
}
| Type | MIME Type |
|---|---|
application/pdf | |
| Word | application/vnd.openxmlformats-officedocument.wordprocessingml.document |
| Excel | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet |
| PowerPoint | application/vnd.openxmlformats-officedocument.presentationml.presentation |
| Google Doc | application/vnd.google-apps.document |
| Google Sheet | application/vnd.google-apps.spreadsheet |
| Folder | application/vnd.google-apps.folder |
input-tools handle