Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Convert a Gmail message into a Google Tasks entry using the email subject as the task title.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-workflow-email-to-task3description: "Google Workflow: Convert a Gmail message into a Google Tasks entry."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws workflow +email-to-task --help"12---1314# workflow +email-to-task1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Convert a Gmail message into a Google Tasks entry1920## Usage2122```bash23gws workflow +email-to-task --message-id <ID>24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--message-id` | ✓ | — | Gmail message ID to convert |31| `--tasklist` | — | @default | Task list ID (default: @default) |3233## Examples3435```bash36gws workflow +email-to-task --message-id MSG_ID37gws workflow +email-to-task --message-id MSG_ID --tasklist LIST_ID38```3940## Tips4142- Reads the email subject as the task title and snippet as notes.43- Creates a new task — confirm with the user before executing.4445## See Also4647- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth48- [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands49