From google-workspace-cli
Apply Gmail labels to matching messages and archive them to keep your inbox clean.
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-gmail`
Apply labels to matching Gmail messages and archive them using gws-gmail CLI commands to keep inbox clean. Prerequisite: gws-gmail skill.
Interact with Gmail via Python CLI: search/read/send emails, create drafts, manage labels (read/archive/star). Standalone OAuth for Google Workspace accounts.
Provides Python CLI scripts to search, read, send, and modify Gmail messages/drafts for Google Workspace accounts using standalone OAuth authentication.
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-gmail
Apply Gmail labels to matching messages and archive them to keep your inbox clean.
gws gmail users messages list --params '{"userId": "me", "q": "from:notifications@service.com"}' --format tablegws gmail users messages modify --params '{"userId": "me", "id": "MESSAGE_ID"}' --json '{"addLabelIds": ["LABEL_ID"]}'gws gmail users messages modify --params '{"userId": "me", "id": "MESSAGE_ID"}' --json '{"removeLabelIds": ["INBOX"]}'