Email metadata and subjects are displayed or passed to another command
Source references: 5The Skill directs the agent to read and output unread-message senders, subjects, and dates; its JSON example also sends subjects to `jq`. Subjects can contain private, commercial, or security-sensitive information.
Running it in a shared terminal, persistent log, chat transcript, or environment accessible to other tools may expose email identities and subjects to unintended people or systems.
Displaying sender, subject, and date is the skill's explicitly stated purpose; the `jq` example merely filters subjects from the command's output. The evidence does not show transmission to an external service or writing to a file. Still, email metadata will appear in terminal output, so screen sharing or retained command logs could expose sensitive content.
This assessment concerns the code and conditions shown, not proof that harm has occurred.Show unread inbox summary (sender, subject, date)Show 4 other places
|------|----------|---------|-------------|| `--max` | — | 20 | Maximum messages to show (default: 20) || `--query` | — | — | Gmail search query (default: is:unread) || `--labels` | — | — | Include label names in output |```bashgws gmail +triagegws gmail +triage --max 5 --query 'from:boss'gws gmail +triage --format json | jq '.[].subject'gws gmail +triage --labels```gws gmail +triage --max 5 --query 'from:boss'gws gmail +triage --format json | jq '.[].subject'gws gmail +triage --labels- Read-only — never modifies your mailbox.- Defaults to table output format.