Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
A personal shortcut for sending TODO-prefixed emails to two fixed recipients via Gmail. Messages starting with "cma" route to a work address; "cmap" routes to a personal Gmail address. Supports optional pipe syntax to split subject and body.
Removes the context switch of opening an email client by letting you send a structured TODO email from within the agent with a single short command.
When to use it
- Quickly emailing yourself a task reminder while mid-conversation
- Firing off a TODO note to a colleague without opening Gmail
- Logging a bug or action item to a specific contact via short command
- Sending a multi-line task description with a custom subject using the pipe format
- Routing the same type of task to different recipients by switching prefix
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: cma Fix staging login | Auth flow breaks on mobile after recent deploy
- 1Detect "cma" prefix and set recipient to duarte.oliveira@devoteam.com
- 2Strip the 3-character prefix and trim whitespace
- 3Split on the pipe character to extract subject and body
- 4Construct subject as "TODO: Fix staging login" and body as "Auth flow breaks on mobile after recent deploy"
- 5Call gog skill: gog gmail send --to "duarte.oliveira@devoteam.com" --subject "TODO: Fix staging login" --body "Auth flow breaks on mobile after recent deploy"
Email sent to duarte.oliveira@devoteam.com with subject "TODO: Fix staging login"