← ClaudeAtlas

gws-clilisted

Google Workspace CLI (gws) for managing all 18 Workspace APIs from the terminal. Use when running gws commands, listing Drive files, sending Gmail, reading Sheets, creating Calendar events, managing Tasks, querying Chat, pushing Apps Script, building cross-service automations, or when user mentions gws or Google Workspace CLI. NOT for building MCP servers (use mcp-server), NOT for general API design (use api-design), NOT for GCP infrastructure (use cicd-pipelines).
viktorbezdek/skillstack · ★ 9 · AI & Automation · score 76
Install: claude install-skill viktorbezdek/skillstack
# Google Workspace CLI (gws) Single CLI for all 18 Google Workspace APIs. Commands built at runtime from Discovery Service. ## When to Use / Not Use **Use when:** - Running any `gws` command or asking about Google Workspace operations - Working with Drive, Gmail, Sheets, Calendar, Docs, Slides, Tasks, Chat, People, Forms, Keep, Meet, Classroom, Events, Apps Script, Admin Reports, Model Armor - Building cross-service workflows (standup reports, meeting prep, email-to-task) - Introspecting API schemas to discover valid parameters **Do NOT use when:** - Building MCP servers -> use `mcp-server` - General API design patterns -> use `api-design` - GCP infrastructure (Compute Engine, Cloud Run) -> use `cicd-pipelines` ## Decision Tree ``` What Google Workspace operation do you need? ├── File/folder operations │ ├── List/search files -> gws drive files list --params '{"q": "..."}' │ ├── Upload file -> gws drive +upload ./file [--parent FOLDER_ID] │ ├── Download/export -> gws drive files get --params '{"fileId": "ID", "alt": "media"}' --output ./file │ └── Create folder -> gws drive files create --json '{"name": "X", "mimeType": "...folder"}' ├── Email │ ├── Send email -> gws gmail +send --to X --subject Y --body Z │ ├── Search inbox -> gws gmail users messages list --params '{"userId": "me", "q": "..."}' │ ├── Reply/forward -> gws gmail +reply / +forward │ └── Triage unread -> gws gmail +triage ├── Spreadsheets │ ├── Read data -> gws sheets +read --spreadsheet