From gws
Find Gmail messages with a specific label and forward them to another address.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Find Gmail messages with a specific label and forward them to another address.
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.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Find Gmail messages with a specific label and forward them to another address.
Use this workflow when the user wants to forward a batch of labeled emails to someone (e.g., forwarding "needs-review" emails to a manager).
gws gmail users messages list \
--params '{"userId": "me", "q": "label:LABEL_NAME"}' \
--fields "messages(id)" --format table
For each message (or a subset), get the details:
gws gmail users messages get \
--params '{"userId": "me", "id": "MSG_ID"}' \
--fields "payload.headers,snippet"
Show the user which messages will be forwarded.
For each message, use --dry-run first:
gws gmail +forward \
--message MSG_ID \
--to recipient@company.com \
--dry-run
Confirm with the user, then send.
--dry-run on the first forward to confirm format+forward helper instead of composing new emails — it preserves the threadgws gmail +send with the original content if +forward doesn't fit the use case