From gws
Creates Gmail filters to automatically label, star, or categorize incoming messages using gws CLI. Steps include label creation and filter verification.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gws:recipe-create-gmail-filterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`
PREREQUISITE: Load the following skills to execute this recipe:
gws-gmail
Create a Gmail filter to automatically label, star, or categorize incoming messages.
gws gmail users labels list --params '{"userId": "me"}' --format tablegws gmail users labels create --params '{"userId": "me"}' --json '{"name": "Receipts"}'gws gmail users settings filters create --params '{"userId": "me"}' --json '{"criteria": {"from": "[email protected]"}, "action": {"addLabelIds": ["LABEL_ID"], "removeLabelIds": ["INBOX"]}}'gws gmail users settings filters list --params '{"userId": "me"}' --format tablenpx claudepluginhub wadewarren/gws-claude-pluginApply labels to matching Gmail messages and archive them using gws-gmail CLI commands to keep inbox clean. Prerequisite: gws-gmail skill.
Automates Gmail operations like searching, reading, sending emails, managing drafts/labels via Python CLI scripts with standalone OAuth. Requires Google Workspace.
Automates Gmail via Google Apps Script: send emails with HTML/CC/BCC, read/search inbox with filters, create drafts, mark as read. Useful for email workflows in code.