Help us improve
Share bugs, ideas, or general feedback.
From legal-skills
Gives AI Agents a dedicated mailbox to send/receive emails, distribute tasks, and communicate asynchronously. Supports ClawEmail (NetEase).
npx claudepluginhub cat-xierluo/legal-skills --plugin transcription-correctorHow this skill is triggered — by the user, by Claude, or both
Slash command
/legal-skills:agent-emailThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
让 AI Agent 拥有专属邮箱,通过邮件接收指令、发送结果、与其他 Agent 或人类通信。
Mental model and workflows for e2a (email for AI agents) — send/receive email, HITL approval, agent + domain management. Covers send_email vs reply_to_message threading, pending_approval status, multi-agent disambiguation, custom-domain DNS, and webhook SDK examples.
Enables AI agents to create @theagentmail.net accounts, send/receive emails, manage webhooks, and check karma via REST API. Use for signups to GitHub/AWS/Slack and verification flows.
Coordinates multi-agent work via Agent Mail locks, inboxes, threads, and conflict-prevention handoffs. Use when agents need to reserve files, notify each other, or avoid write collisions.
Share bugs, ideas, or general feedback.
让 AI Agent 拥有专属邮箱,通过邮件接收指令、发送结果、与其他 Agent 或人类通信。
为什么用邮件?
适用场景:
| 依赖 | 说明 |
|---|---|
| Node.js 18+ | brew install node(macOS) |
| npx | 随 Node.js 自带 |
| 邮箱服务账号 | 目前支持 ClawEmail(网易) |
首次使用? 详见 首次配置指南 完成邮箱初始化。配置完成后,日常只需关注下面的邮件操作。
先加载封装函数:source scripts/mail-ops.sh
claw_send --to "recipient@example.com" --subject "主题" --body "正文内容"
自动从 .env 读取显示名称并构造 --from 参数。
claw_list --fid 1 --limit 20 # 列出邮件(--fid 1 收件箱, 3 已发送)
claw_body <mail-id> # 读取正文
claw_structure <mail-id> # 读取结构(含附件列表)
claw_search --fid 1 "关键词" # 搜索邮件
claw_download <mail-id> # 下载附件
claw_folders # 查看文件夹
claw_mailboxes # 查看所有邮箱
# 1. 构造任务邮件
claw_send --to "$AGENT_MANUS" --subject "数据分析任务" --body "请分析附件中的销售数据..."
# 2. 对方 Agent 执行完成后,通过 git PR 提交结果
# (无需回读邮件)
# 1. 查看收件箱
claw_list --fid 1 --limit 10
# 2. 读取邮件正文
claw_body <mail-id>
# 3. Agent 理解内容、执行操作
# 4. 回复
claw_send --to "sender@example.com" --subject "Re: 原主题" --body "处理结果..."
配合 Cron 定期检查新邮件并处理。
邮箱地址统一维护在 scripts/.env,source 后可直接引用:
source scripts/mail-ops.sh
claw_send --to "$AGENT_MANUS" --subject "任务" --body "内容"
claw_send --to "$CONTACT_163" --subject "材料" --body "附件请查收"
新增联系人直接在 .env 里加一行即可。
references/clawemail-setup-guide.md — 网易 ClawEmail 首次配置指南references/clawemail-overview.md — 网易 ClawEmail 服务介绍(申请流程、模式对比、常见问题排查)references/clawemail-mail-cli-guide.md — 网易 mail-cli 命令参考templates/reply-template.md — 回复邮件模板