From google-workspace-cli
Rename multiple Google Drive files matching a pattern to follow a consistent naming convention.
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
Rename multiple Google Drive files matching a pattern to follow a consistent naming convention.
gws drive files list --params '{"q": "name contains '\''Report'\''"}' --format tablegws drive files update --params '{"fileId": "FILE_ID"}' --json '{"name": "2025-Q1 Report - Final"}'gws drive files get --params '{"fileId": "FILE_ID", "fields": "name"}'