Skill · em Outros
gws-gmail
Gmail: Send, read, and manage email.
Procedência
- Origem: googleworkspace/cli
- Caminho:
skills/gws-gmail - Versão fixada:
a3768d0e82ad83cca2da97724e46bea4ff0e6dbd - Licença: Apache-2.0
- Espelhado em 25/09/2026
- 77,2 mil instalações no skills.sh (lido em 25/09/2026)
Antes de instalar
1 arquivo · 2 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit a3768d0) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/skills/gws-gmail/.
d=".claude/skills/gws-gmail" u="https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/skills/gws-gmail" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/LICENSE" "https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/LICENSE"
Global: instala em ~/.claude/skills/gws-gmail/.
d="$HOME/.claude/skills/gws-gmail" u="https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/skills/gws-gmail" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/LICENSE" "https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/LICENSE"
Codex
Neste projeto: instala em .agents/skills/gws-gmail/.
d=".agents/skills/gws-gmail" u="https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/skills/gws-gmail" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/LICENSE" "https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/LICENSE"
Global: instala em ~/.agents/skills/gws-gmail/.
d="$HOME/.agents/skills/gws-gmail" u="https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/skills/gws-gmail" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/LICENSE" "https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/LICENSE"
Antigravity
Neste projeto: instala em .agents/skills/gws-gmail/.
d=".agents/skills/gws-gmail" u="https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/skills/gws-gmail" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/LICENSE" "https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/LICENSE"
Global: instala em ~/.gemini/antigravity-cli/skills/gws-gmail/.
d="$HOME/.gemini/antigravity-cli/skills/gws-gmail" u="https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/skills/gws-gmail" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/LICENSE" "https://raw.githubusercontent.com/googleworkspace/cli/a3768d0e82ad83cca2da97724e46bea4ff0e6dbd/LICENSE"
Peça ao Rook
Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/googleworkspace.cli.gws-gmail
Prévia do SKILL.md
---
name: gws-gmail
description: "Gmail: Send, read, and manage email."
metadata:
version: 0.22.5
openclaw:
category: "productivity"
requires:
bins:
- gws
cliHelp: "gws gmail --help"
---
# gmail (v1)
> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
```bash
gws gmail <resource> <method> [flags]
```
## Helper Commands
| Command | Description |
|---------|-------------|
| [`+send`](../gws-gmail-send/SKILL.md) | Send an email |
| [`+triage`](../gws-gmail-triage/SKILL.md) | Show unread inbox summary (sender, subject, date) |
| [`+reply`](../gws-gmail-reply/SKILL.md) | Reply to a message (handles threading automatically) |
| [`+reply-all`](../gws-gmail-reply-all/SKILL.md) | Reply-all to a message (handles threading automatically) |
| [`+forward`](../gws-gmail-forward/SKILL.md) | Forward a message to new recipients |
| [`+read`](../gws-gmail-read/SKILL.md) | Read a message and extract its body or headers |
| [`+watch`](../gws-gmail-watch/SKILL.md) | Watch for new emails and stream them as NDJSON |
## API Resources
### users
- `getProfile` — Gets the current user's Gmail profile.
- `stop` — Stop receiving push notifications for the given user mailbox.
- `watch` — Set up or update a push notification watch on the given user mailbox.
…