/install claw-boston-email
Setup
On first use, I'll register a @claw.boston email for you. Just say: "Set up my email" or "I need an email address"
Your API key will be stored locally at: ~/.openclaw/skills/claw-boston-email/config.json
Available Commands
Send email
"Send an email to [email protected] about tomorrow's meeting" "Email [email protected]: the report is ready"
Send with attachment
"Send the report.pdf to [email protected]" "Email the summary to bob with the attached file"
Check inbox
"Do I have new emails?" "Check my inbox"
Read email
"Read the latest email" "What did [email protected] send me?"
Reply
"Reply to that email saying I agree"
Search emails
"Search my inbox for emails about the project" "Find emails from [email protected]" "Search for 'invoice' in my emails"
View account
"What's my email plan?" "How many emails have I sent today?"
API Reference
Base URL: https://api.claw.boston
Register
POST /api/register Body: { "instance_token": "\x3Cauto>", "preferred_name": "\x3Coptional>" } Response: { "address": "[email protected]", "api_key": "ck_...", "plan": "free", "limits": { "daily_send": 15, "history_days": 7 } }
Send
POST /api/send Header: Authorization: Bearer \x3Capi_key> Body: { "to": "...", "subject": "...", "text": "...", "attachments": [{ "filename": "...", "content": "\x3Cbase64>", "content_type": "..." }] } Response: { "id": "msg_xxx", "status": "sent", "to": "...", "subject": "..." }
Inbox
GET /api/inbox Header: Authorization: Bearer \x3Capi_key> Query: ?limit=20&offset=0&since=\x3Cunix_timestamp> Response: { "emails": [...], "total": N, "limit": 20, "offset": 0 }
Read single email
GET /api/inbox/\x3Cid> Header: Authorization: Bearer \x3Capi_key> Response: { "id": "...", "from": "...", "to": "...", "subject": "...", "text": "...", "created_at": N, "has_attachments": bool, "attachments": [...] }
Download attachment
GET /api/inbox/\x3Cemail_id>/attachments/\x3Catt_id> Header: Authorization: Bearer \x3Capi_key> Response: Binary file content with Content-Disposition header
Search
GET /api/inbox/search Header: Authorization: Bearer \x3Capi_key> Query: ?q=\x3Ckeyword>&field=all|from|subject|body&limit=20&offset=0 Response: { "query": "...", "emails": [...], "total": N, "limit": 20, "offset": 0 }
Account info
GET /api/account Header: Authorization: Bearer \x3Capi_key> Response: { "plan": "...", "address": "...", "limits": {...}, "usage": {...} }
Configure webhook
POST /api/webhook/config Header: Authorization: Bearer \x3Capi_key> Body: { "url": "http://localhost:18789/webhook/claw-email" }
Webhook
I'll configure a webhook to receive real-time notifications when new emails arrive. The webhook points to your local OpenClaw gateway.
Webhook payload format: { "event": "email.received", "timestamp": "ISO8601", "data": { "id": "msg_xxx", "from": "[email protected]", "to": "[email protected]", "subject": "Subject line", "preview": "First 200 chars...", "is_suspicious": false, "has_attachments": false, "attachment_count": 0 } }
Behavior Guide
First-time setup flow:
- Check if ~/.openclaw/skills/claw-boston-email/config.json exists
- If not → ask user for preferred email name (or offer to auto-generate)
- Read OpenClaw instance info, generate instance_token = HMAC-SHA256(instance_id + install_time + hostname)
- Call POST /api/register with instance_token and preferred_name
- Save the returned api_key to config.json
- Call POST /api/webhook/config to set up real-time notifications
- Confirm to user: "Your email is [email protected]"
Sending email:
- Read api_key from config.json
- Compose email based on user's natural language instruction:
- Infer appropriate subject line
- Write professional but concise email body
- Match the language the user used (English/Chinese/etc)
- If user mentions files to attach, encode them as base64 and include in attachments[]
- Call POST /api/send
- Confirm: "Email sent to xxx. Subject: ..."
Checking inbox:
- Call GET /api/inbox
- Summarize: "You have N new emails:" then list from/subject/preview for each
- If no emails: "Your inbox is empty"
Reading a specific email:
- Call GET /api/inbox/\x3Cid>
- Present the full email content naturally
- If has_attachments is true, list the attachments with filenames and sizes
Searching emails:
- Call GET /api/inbox/search?q=\x3Ckeyword>
- Present results: "Found N emails matching '\x3Cquery>':" then list from/subject/date
- If no results: "No emails found matching '\x3Cquery>'"
- Offer: "Want me to read any of these?"
Replying:
- Use the from address of the original email as the new "to"
- Prepend "Re: " to original subject (if not already there)
- Compose reply based on user's instruction
- Call POST /api/send
Webhook notification (incoming email):
- Parse the webhook payload
- Notify user: "New email from {from} — Subject: {subject}"
- Show preview
- If has_attachments, mention: "This email has {attachment_count} attachment(s)"
- Ask: "Want me to read the full email?"
Checking account:
- Call GET /api/account
- Report: plan, daily usage, limits
Notes
- Free plan: 15 emails/day, 7-day history, 1MB attachments, basic search
- Pro plan ($5/mo): 500 emails/day, 90-day history, 10MB attachments, full search
- Foundation plan ($29 one-time): same as Pro, forever, with member badge
- Emails flagged as suspicious (potential prompt injection) will be noted
- Upgrade at https://claw.boston
- Discord: https://discord.gg/WuPp45xumx
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install claw-boston-email - 安装完成后,直接呼叫该 Skill 的名称或使用
/claw-boston-email触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱 是什么?
Give your OpenClaw a real email address at @claw.boston. Send and receive emails with attachments, search your inbox, get notified of new messages. Setup tak... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 178 次。
如何安装 FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install claw-boston-email」即可一键安装,无需额外配置。
FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱 是免费的吗?
是的,FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱 支持哪些平台?
FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 FREE EMAIL from @claw.boston 一键获取免费原生OpenClaw邮箱?
由 xcs(@mastalie)开发并维护,当前版本 v0.2.0。