LaunchKit · 2026
Back to Skills

cma-email

Sends an email via Gmail when a message starts with "cma" or "cmap".

0
696 downloads
by @mtbf999

Setup & Installation

openclaw skills install @mtbf999/cma-email

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install cma-email

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.

INPUT

User asks: cma Fix staging login | Auth flow breaks on mobile after recent deploy

AGENT
  1. 1Detect "cma" prefix and set recipient to duarte.oliveira@devoteam.com
  2. 2Strip the 3-character prefix and trim whitespace
  3. 3Split on the pipe character to extract subject and body
  4. 4Construct subject as "TODO: Fix staging login" and body as "Auth flow breaks on mobile after recent deploy"
  5. 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"
OUTPUT

Email sent to duarte.oliveira@devoteam.com with subject "TODO: Fix staging login"