# Gws Gmail

> Gmail: Send, read, and manage email.

- Skill: `ma08/gws-gmail` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ma08/gws-gmail`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ma08/gws-gmail/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: ma08 (https://skillmd.com/u/ma08)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ma08/gws-gmail

---


# 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 |
|---------|-------------|
| [`+triage`](../gws-gmail-triage/SKILL.md) | Show unread inbox summary (sender, subject, date) |
| [`+read`](../gws-gmail-read/SKILL.md) | Read a message and extract its body or headers |
| [`gws-gmail-draft`](../gws-gmail-draft/SKILL.md) | Create an unsent Gmail draft through a named account alias |

For sending, replying, forwarding, or watch setup, inspect the raw Gmail CLI
resources below with `gws schema` and use `gws gmail <resource> <method>`.
Draft creation must use `gws-gmail-draft`; do not substitute a send helper.

## 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.
  - `drafts` — Operations on the 'drafts' resource
  - `history` — Operations on the 'history' resource
  - `labels` — Operations on the 'labels' resource
  - `messages` — Operations on the 'messages' resource
  - `settings` — Operations on the 'settings' resource
  - `threads` — Operations on the 'threads' resource

## Discovering Commands

Before calling any API method, inspect it:

```bash
# Browse resources and methods
gws gmail --help

# Inspect a method's required params, types, and defaults
gws schema gmail.<resource>.<method>
```

Use `gws schema` output to build your `--params` and `--json` flags.

