Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Show a read-only unread inbox summary with sender, subject, and date via the gws CLI, with Gmail search query support.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-gmail-triage3description: "Gmail: Show unread inbox summary (sender, subject, date)."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws gmail +triage --help"12---1314# gmail +triage1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Show unread inbox summary (sender, subject, date)1920## Usage2122```bash23gws gmail +triage24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--max` | — | 20 | Maximum messages to show (default: 20) |31| `--query` | — | — | Gmail search query (default: is:unread) |32| `--labels` | — | — | Include label names in output |3334## Examples3536```bash37gws gmail +triage38gws gmail +triage --max 5 --query 'from:boss'39gws gmail +triage --format json | jq '.[].subject'40gws gmail +triage --labels41```4243## Tips4445- Read-only — never modifies your mailbox.46- Defaults to table output format.4748## See Also4950- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth51- [gws-gmail](../gws-gmail/SKILL.md) — All send, read, and manage email commands52