← ClaudeAtlas

google-drivelisted

Read, search, upload, rename, move and delete Google Drive files / folders / shared content via the Drive v3 REST API. Use when the user mentions Drive files, "my drive", shared documents, Google Docs / Sheets / Slides, exporting / downloading a Drive file, searching by name / owner / folder, uploading a new file, renaming or moving files, or organising folders.
AceDataCloud/Skills · ★ 8 · AI & Automation · score 71
Install: claude install-skill AceDataCloud/Skills
Drive Google Drive via `curl + jq`. The user's OAuth bearer token is in `$GOOGLE_DRIVE_TOKEN`; every call needs it as `Authorization: Bearer $GOOGLE_DRIVE_TOKEN`. At minimum the token carries `drive.readonly` plus the identity scopes (`openid email profile`); if the user opted in to write at install time it also carries the broader `drive` scope (full read + write). The Drive API returns standard JSON; failures surface as `{"error": {"code": 401|403|..., "message": "..."}}` — show that error verbatim to the user. `401` means the token expired and the user must re-install the connector. `403 insufficientPermissions` on a write means the user did not grant the `drive` scope at install — ask them to re-install with the read+write box checked. **Before any destructive write** (renaming, moving, trashing, or bulk-mutating files) show the exact target list and ask the user to confirm. Never trash by guessing an id — always echo back the file name + path you're about to touch. **Always start with `/about?fields=user`** to confirm the connection works AND learn which Google account you're operating against. ## Optional: Google Workspace CLI (`gws`) for uploads [`gws`](https://github.com/googleworkspace/cli) is Google's official CLI (not officially supported — community-maintained on the `googleworkspace` org). It dynamically builds its command surface from Google's Discovery Document, exits non-zero on API errors, supports `--page-all` auto-pagination, and ships a `+upload` help