From gws
Create a Gmail filter to automatically label, star, or categorize incoming messages.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Create a Gmail filter to automatically label, star, or categorize incoming messages.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Create a Gmail filter to automatically label, star, or categorize incoming messages.
Use this workflow when the user wants to set up automatic email organization — routing emails from specific senders to labels, archiving notifications, or starring important messages.
See what labels already exist:
gws gmail users labels list --params '{"userId": "me"}' --format table
gws gmail users labels create --params '{"userId": "me"}' --json '{"name": "LABEL_NAME"}'
Capture the label ID from the response.
Ask the user what criteria to match (from, to, subject, has words) and what action to take (label, archive, star, etc.):
gws gmail users settings filters create \
--params '{"userId": "me"}' \
--json '{"criteria": {"from": "SENDER_EMAIL"}, "action": {"addLabelIds": ["LABEL_ID"], "removeLabelIds": ["INBOX"]}}'
gws gmail users settings filters list --params '{"userId": "me"}' --format table
from, to, subject, query (Gmail search syntax)addLabelIds, removeLabelIds, star (boolean)"removeLabelIds": ["INBOX"] archives the message (removes from inbox)