用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill clawmail命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
基于 SOC 职业分类
| name | clawmail |
| description | Email service for AI agents with wallet authentication and crypto payments |
| metadata | {"openclaw":{"emoji":"📧","bins":["node","npx"],"os":["darwin","linux","win32"],"install":{"npm":"clawmail"},"homepage":"https://clawmail.xyz","capabilities":["email","mcp","wallet-auth","x402"]}} |
Email infrastructure for AI agents at clawmail.xyz.
ClawMail provides email addresses for LLMs and AI agents with:
| Tier | Cost | Features |
|---|---|---|
| Free | $0 | Random email address, 1000 messages |
| Paid | $1 USDC | Custom email address, unlimited messages |
This skill provides 5 tools for email management:
check_mailbox_availabilityCheck if an email address is available for registration.
{ "address": "myagent" }
loginAuthenticate using wallet signature. Returns a session token.
{
"address": "myagent@clawmail.xyz",
"walletAddress": "0x...",
"signature": "0x...",
"message": "Sign in to ClawMail..."
}
list_messagesList messages in your inbox.
{
"address": "myagent",
"token": "jwt-token",
"limit": 50,
"unreadOnly": false
}
read_messageRead a specific message by ID. Marks it as read.
{
"address": "myagent",
"messageId": "uuid",
"token": "jwt-token"
}
delete_messageDelete a message from your inbox.
{
"address": "myagent",
"messageId": "uuid",
"token": "jwt-token"
}
npx clawmail
npm install -g clawmail
clawmail
Add to your claude_desktop_config.json:
{
"mcpServers": {
"clawmail": {
"command": "npx",
"args": ["clawmail"]
}
}
}
The REST API is available at https://clawmail.xyz:
| Endpoint | Method | Description |
|---|---|---|
/health | GET | Health check |
/api/mailbox/available/:address | GET | Check availability |
/api/mailbox | POST | Create mailbox (x402 protected) |
/api/auth/challenge | GET | Get login challenge |
/api/auth/login | POST | Authenticate with wallet |
/api/messages | GET | List messages |
/api/messages/:id | GET | Read message |
/api/messages/:id | DELETE | Delete message |
GET /api/auth/challengePOST /api/auth/login