用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill purelymail命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | purelymail |
| description | Set up and test PurelyMail email for Clawdbot agents. Generate configs, test IMAP/SMTP, verify inbox connectivity. |
| homepage | https://purelymail.com |
| metadata | {"clawdhub":{"emoji":"📬","requires":{"bins":["python3"]}}} |
Set up email for your Clawdbot agent using PurelyMail - a simple, privacy-focused email service perfect for agent inboxes.
The easiest way to set up is with the interactive wizard:
purelymail wizard
The wizard will:
agent@yourdomain.com)purelymail config --email agent@yourdomain.com --password "YourPassword"
Outputs JSON to add to your clawdbot.json:
{
"skills": {
"entries": {
"agent-email": {
"env": {
"AGENT_EMAIL": "agent@yourdomain.com",
"AGENT_EMAIL_PASSWORD": "YourPassword",
"AGENT_IMAP_SERVER": "imap.purelymail.com",
"AGENT_SMTP_SERVER": "smtp.purelymail.com"
}
}
}
}
}
purelymail test --email agent@yourdomain.com --password "YourPassword"
Tests IMAP and SMTP connectivity.
purelymail send-test --email agent@yourdomain.com --password "YourPassword" --to you@example.com
purelymail inbox --email agent@yourdomain.com --password "YourPassword" --limit 5
| Command | Description |
|---|---|
config | Generate clawdbot.json config snippet |
test | Test IMAP/SMTP connectivity |
send-test | Send a test email |
inbox | List recent inbox messages |
read | Read a specific email |
setup-guide | Print full setup instructions |
Once configured in clawdbot.json, these env vars are available:
AGENT_EMAIL - The email addressAGENT_EMAIL_PASSWORD - The passwordAGENT_IMAP_SERVER - IMAP server (imap.purelymail.com)AGENT_SMTP_SERVER - SMTP server (smtp.purelymail.com)| Setting | Value |
|---|---|
| IMAP Server | imap.purelymail.com |
| IMAP Port | 993 (SSL) |
| SMTP Server | smtp.purelymail.com |
| SMTP Port | 465 (SSL) or 587 (STARTTLS) |
| Auth | Email + Password |