Overview
- Skill Key
- heyarviind/clawmail
- Author
- heyarviind
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/heyarviind/clawmail
- Latest Commit SHA
- 3b98b3375c3d9db66a57365354194bd2c7051efc
Email API for AI agents. Send and receive emails programmatically via ClawMail.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 clawmail 技能。 若已安装,则直接安装 clawmail 技能。
# ClawMail
ClawMail gives you a dedicated email inbox at `username@clawmail.cc`. Use it to send and receive emails without OAuth complexity.
## Setup
If not already configured, run:
```bash
curl -O https://clawmail.cc/scripts/setup.py
python3 setup.py my-agent@clawmail.cc
```
This creates `~/.clawmail/config.json` with your credentials:
```json
{
"system_id": "clw_...",
"inbox_id": "uuid",
"address": "my-agent@clawmail.cc"
}
```
## Configuration
Read config from `~/.clawmail/config.json`:
```python
import json
from pathlib import Path
config = json.loads((Path.home() / '.clawmail' / 'config.json').read_text())
SYSTEM_ID = config['system_id']
INBOX_ID = config['inbox_id']
ADDRESS = config['address']
```
All API requests require the header: `X-System-ID: {SYSTEM_ID}`
## API Base URL
`https://api.clawmail.cc/v1`
## Check for New Emails
Poll for unread emails. Returns new messages and marks them as read.
```
GET /inboxes/{inbox_id}/poll
Headers: X-System-ID: {system_id}
```
Response:
```json
{
"has_new": true,
"threads": [
{
"id": "uuid",
"subject": "Hello",
"participants": ["sender@example.com", "my-agent@clawmail.cc"],
"message_count": 1,
"is_read": false
}
],
"emails": [
{
"id": "uuid",
"thread_id": "uuid",
"from_email": "sender@example.com",
"from_name": "Sender",
"subject": "Hello",
"text_body": "Message content here",
"direction": "inbound",
"received_at": "2024-01-01T12:00:00Z"
}
]
}
```
Example:
```bash
curl -H "X-System-ID: $SYSTEM_ID" \
"https://api.clawmail.cc/v1/inboxes/$INBOX_ID/poll"
```
## Send an Email
```
POST /inboxes/{inbox_id}/messages
Headers: X-System-ID: {system_id}
Content-Type: application/json
```
Request body:
```json
{
"to": [{"email": "recipient@example.com", "name": "Recipient Name"}],
"cc": [{"email": "cc@example.com"}],
"subject": "Email subject",
"text": "Plain text body",
"html": "<p>HTML body...
# ClawMail Skill for OpenClaw
Email API skill for AI agents. Send and receive emails programmatically via [ClawMail](https://clawmail.cc).
## Installation
### Option 1: Copy to managed skills (all agents)
```bash
cp -r skills/clawmail ~/.openclaw/skills/
```
### Option 2: Copy to workspace (single agent)
```bash
cp -r skills/clawmail <your-workspace>/skills/
```
### Option 3: Install from ClawHub
```bash
clawhub install clawmail
```
## Setup
Before using, run the ClawMail setup script to create your inbox:
```bash
curl -O https://clawmail.cc/scripts/setup.py
python3 setup.py my-agent@clawmail.cc
```
This creates `~/.clawmail/config.json` with your credentials.
## What the Skill Teaches
The skill provides instructions for:
- **Polling for emails** - Check for new messages with a single API call
- **Sending emails** - Send plain text or HTML emails
- **Thread management** - List and read email threads
- **Security** - Sender validation to prevent prompt injection
## Configuration (Optional)
If you want to override the system ID via OpenClaw config:
```json5
// ~/.openclaw/openclaw.json
{
"skills": {
"entries": {
"clawmail": {
"enabled": true,
"env": {
"CLAWMAIL_SYSTEM_ID": "clw_your_system_id"
}
}
}
}
}
```
Note: The skill primarily reads from `~/.clawmail/config.json` created by setup.
## Links
- [ClawMail Website](https://clawmail.cc)
- [API Documentation](https://clawmail.cc/docs)
- [GitHub Repository](https://github.com/clawmail/clawmail.cc)
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
edholofy
University for AI agents. 92 courses, 4400+ scenarios, any model via OpenRouter. Auto-training loops generate per-model SKILL.md documents. Works with Claude Code, OpenClaw, Cursor, Windsurf. No fine-tuning required.
rxhxm
Agent Skill (SKILL.md) for Sixtyfour AI — People & company intelligence API. Enrich leads, find emails/phones, qualify prospects, search people. For Claude Code, Codex, OpenClaw, Cursor.
lethehades
macOS WPS Office workflow helper skill for safer document preparation, conversion, export, and compatibility guidance
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
catsmeow492
Encrypted agent-to-agent messaging via NoChat. Post-quantum E2E encryption. Add NoChat as a native channel in OpenClaw — receive DMs from other AI agents.