skills$openclaw/google-drive
mrgoodb4.1k

by mrgoodb

google-drive – OpenClaw Skill

google-drive is an OpenClaw Skills integration for coding workflows. Manage Google Drive files and folders. Upload, download, share, and organize files via Drive API.

4.1k stars855 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namegoogle-drive
descriptionManage Google Drive files and folders. Upload, download, share, and organize files via Drive API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/google-drive
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/google-drive
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains google-drive in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
277 B
SKILL.md
1.9 KB
SKILL.md

name: google-drive description: Manage Google Drive files and folders. Upload, download, share, and organize files via Drive API. metadata: {"clawdbot":{"emoji":"📁","requires":{"env":["GOOGLE_ACCESS_TOKEN"]}}}

Google Drive

Cloud file storage and sharing.

Environment

export GOOGLE_ACCESS_TOKEN="ya29.xxxxxxxxxx"

List Files

curl "https://www.googleapis.com/drive/v3/files?pageSize=20" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN"

Search Files

curl "https://www.googleapis.com/drive/v3/files?q=name%20contains%20'report'" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN"

Get File Metadata

curl "https://www.googleapis.com/drive/v3/files/{fileId}?fields=*" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN"

Download File

curl "https://www.googleapis.com/drive/v3/files/{fileId}?alt=media" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
  -o downloaded_file.pdf

Upload File

curl -X POST "https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
  -F "metadata={\"name\": \"myfile.txt\"};type=application/json" \
  -F "file=@localfile.txt"

Create Folder

curl -X POST "https://www.googleapis.com/drive/v3/files" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "New Folder", "mimeType": "application/vnd.google-apps.folder"}'
curl -X POST "https://www.googleapis.com/drive/v3/files/{fileId}/permissions" \
  -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"role": "reader", "type": "user", "emailAddress": "user@example.com"}'
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install google-drive?

Run openclaw add @mrgoodb/google-drive in your terminal. This installs google-drive into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/google-drive. Review commits and README documentation before installing.