ワンクリックで
邮件收发。支持通过 IMAP 读取邮件、SMTP 发送邮件、搜索邮件、下载附件。用户需要处理邮件时使用此技能。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
邮件收发。支持通过 IMAP 读取邮件、SMTP 发送邮件、搜索邮件、下载附件。用户需要处理邮件时使用此技能。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate images using Qwen Image API (Alibaba Cloud DashScope). Use when users request image generation with Chinese prompts or need high-quality AI-generated images from text descriptions.
Transform agents from task-followers into proactive partners.
Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.
自动生成短视频。支持图文轮播、文字动画、卡片风格和 AI 视频大模型生成等多种视频类型。用户需要生成视频时使用此技能。
Process multiple items with progress tracking, checkpointing, and failure recovery.
增强版浏览器自动化。基于 Playwright 实现完整浏览器操作,包括基础导航、截图、点击、表单填写、内容提取、文件上传/下载、多标签页管理。支持反检测和高级自动化。
| name | |
| description | 邮件收发。支持通过 IMAP 读取邮件、SMTP 发送邮件、搜索邮件、下载附件。用户需要处理邮件时使用此技能。 |
| triggers | null |
| version | 1.0.0 |
| status | stable |
| updated | "2026-03-15T00:00:00.000Z" |
| provides | ["email"] |
| os | ["darwin","linux","win32"] |
| clawdbot | {"emoji":"📧","category":"tools","priority":"medium"} |
通过 IMAP/SMTP 协议收发邮件。
# 健康检查
python3 scripts/check.py
# 读取最新 10 封邮件
python3 scripts/email_tool.py inbox --limit 10
# 搜索邮件
python3 scripts/email_tool.py search --from "boss@company.com" --days 7
# 读取指定邮件详情
python3 scripts/email_tool.py read --id 12345
# 发送邮件
python3 scripts/email_tool.py send --to "user@example.com" --subject "标题" --body "内容"
# 发送带附件的邮件
python3 scripts/email_tool.py send --to "user@example.com" --subject "报告" --body "见附件" --attach report.pdf
# 下载附件
python3 scripts/email_tool.py download-attachments --id 12345 --output-dir ./attachments/
在 $OPENCLAW_HOME/.env 中添加:
EMAIL_IMAP_HOST=imap.gmail.com
EMAIL_IMAP_PORT=993
EMAIL_SMTP_HOST=smtp.gmail.com
EMAIL_SMTP_PORT=587
EMAIL_USER=your@email.com
EMAIL_PASSWORD=your-app-password
EMAIL_FROM=your@email.com
常见邮箱配置:
$OPENCLAW_HOME/workspace/output/email/
Python 标准库(imaplib, smtplib, email),无需额外安装。