Send emails via SMTP. Supports plain text and HTML, attachments, CC/BCC. Use when the user asks to send any kind of email — notifications, messages, reports, etc. Credentials are read from pythonclaw.json.
google_workspace with goggoogle_workspace gmail sendConfigure in pythonclaw.json (or the Config dashboard):
"skills": {
"email": {
"smtpServer": "smtp.gmail.com",
"smtpPort": 587,
"senderEmail": "you@gmail.com",
"senderPassword": "your-app-password"
}
}
For Gmail, use an App Password.
python {skill_path}/send_email.py \
--to "recipient@example.com" \
--subject "Hello" \
--body "Message body here"
| Option | Description |
|--------|-------------|
| --to | Recipient address (required) |
| --subject | Subject line |
| --body | Message body |
| --cc "a@b.com,c@d.com" | CC recipients |
| --bcc "x@y.com" | BCC recipients |
| --html | Treat body as HTML |
skills.email in pythonclaw.jsonSearch for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer