From google-workspace-cli
Create a Google Drive folder structure and move files into the right locations.
npx claudepluginhub pleaseai/claude-code-plugins --plugin google-workspaceThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`
Creates Google Drive folder structures with subfolders and moves files to correct locations using gws drive CLI commands. Requires gws-drive skill.
Interact with Google Drive via Python CLI: search/list files/folders, download/upload, create/move/copy/rename/trash with OAuth auth.
Automates Google Drive operations via Python CLI: search/list files/folders, upload/download, create/move/copy/rename/trash. Standalone OAuth for Workspace accounts, no MCP server.
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-drive
Create a Google Drive folder structure and move files into the right locations.
gws drive files create --json '{"name": "Q2 Project", "mimeType": "application/vnd.google-apps.folder"}'gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'gws drive files update --params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}'gws drive files list --params '{"q": "FOLDER_ID in parents"}' --format table