Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

ai-agent-email-skillAIAgent 邮件技巧

Agent Skill

ai-agent-email-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,202

周安装

170

GitHub Stars

1

下载量

1,319
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-agent-email-skill(AIAgent 邮件技巧)
来源仓库:https://github.com/tyxiang/ai-agent-email-skill
安装命令:
openclaw skills install ai-agent-email-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ai-agent-email-skill

简介

用于基于脚本的电子邮件操作管理。

  • 包括阅读、搜索、发送与回复邮件功能。
  • 适合客服场景下的批量邮件处理。ai-agent-email-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需确认邮箱账户权限与安全策略。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 建议启用两步验证后再执行敏感操作。

SKILL.md

name
aaes
description
This skill provides script-based email operations for an agent. It includes functionalities for managing mailboxes, reading/searching emails, sending/replying/forwarding emails, and managing attachments, allowing agents to perform comprehensive email-related tasks programmatically.
metadata
openclaw
requires
env
config
primaryEnv
EMAIL_PASSWORD

AI Agent Email Skill (aaes)

Overview

This skill provides script-based email operations for an agent. It includes functionalities for managing mailboxes, reading/searching emails, sending/replying/forwarding emails, and managing attachments, allowing agents to perform comprehensive email-related tasks programmatically.

Features

  • IMAP operations: Read, list, mark, move, delete, copy emails
  • SMTP operations: Send, reply, forward emails with attachments
  • Folder management: Create, delete, rename, list mailboxes
  • Dual-format bodies: Supports both plain-text and HTML, with automatic fallback generation
  • Attachment handling: Supports base64-encoded attachments
  • Multi-account support: Configure multiple accounts
  • Authentication: Password or OAuth2 via environment variables (auto-detected)
  • Signatures: Automatic signature appending to outgoing emails
  • Thread support: Proper In-Reply-To and References header handling

When to use

Use this skill when you need an agent to:

  • Check inbox for new emails and summarize them
  • Read specific emails and extract content
  • Send new emails with attachments
  • Reply to or forward emails
  • Organize emails by moving/copying between folders
  • Create or manage mailbox folders
  • Mark emails as read/unread, flagged, spam, or junk

Requirements

  • Python 3.14+
  • IMAP/SMTP access to your email provider
  • Network access to email servers

Configuration

Basic Setup

Configure this skill with ./scripts/config.toml:

  1. Copy ./config.default.toml to ./scripts/config.toml.
  2. Edit ./scripts/config.toml - fill in email address and server addresses.

Authentication Setup

Only one authentication method is required, configured via environment variables.

Password-based authentication

VariableDescription
EMAIL_USERNAMELogin username (required)
EMAIL_PASSWORDUser password or app password
# Linux/Mac
export EMAIL_USERNAME="me"
export EMAIL_PASSWORD="my-password"

# Windows (PowerShell)
$env:EMAIL_USERNAME="me"
$env:EMAIL_PASSWORD="my-password"

# Windows (CMD)
set EMAIL_USERNAME=me
set EMAIL_PASSWORD=my-password

OAuth2 authentication

VariableDescription
EMAIL_OAUTH2_CLIENT_IDOAuth2 client ID
EMAIL_OAUTH2_CLIENT_SECRETOAuth2 client secret
EMAIL_OAUTH2_REFRESH_TOKENOAuth2 refresh token
EMAIL_OAUTH2_TOKEN_URLOAuth2 token endpoint URL
# Linux/Mac
export EMAIL_OAUTH2_CLIENT_ID="xxx"
export EMAIL_OAUTH2_CLIENT_SECRET="xxx"
export EMAIL_OAUTH2_REFRESH_TOKEN="xxx"
export EMAIL_OAUTH2_TOKEN_URL="https://oauth2.example.com/token"

# Windows (PowerShell)
$env:EMAIL_OAUTH2_CLIENT_ID="xxx"
$env:EMAIL_OAUTH2_CLIENT_SECRET="xxx"
$env:EMAIL_OAUTH2_REFRESH_TOKEN="xxx"
$env:EMAIL_OAUTH2_TOKEN_URL="https://oauth2.example.com/token"

# Windows (CMD)
set EMAIL_OAUTH2_CLIENT_ID=xxx
set EMAIL_OAUTH2_CLIENT_SECRET=xxx
set EMAIL_OAUTH2_REFRESH_TOKEN=xxx
set EMAIL_OAUTH2_TOKEN_URL="https://oauth2.example.com/token"

Test

# Linux/Mac
echo '{"requestId":"test","schemaVersion":"1.0","data":{"maxResults":5}}' | python3 scripts/mail_list.py

# Windows (PowerShell)
echo '{"requestId":"test","schemaVersion":"1.0","data":{"maxResults":5}}' | python scripts/mail_list.py

# Windows (CMD)
echo "{\"requestId\":\"test\",\"schemaVersion\":\"1.0\",\"data\":{\"maxResults\":5}}" | python scripts/mail_list.py

Data Exchange Contract

Overview

All scripts follow the same JSON-over-stdin contract:

  1. Agent sends one JSON object to stdin
  2. Script writes one JSON object to stdout
  3. Logs and diagnostics are written to stderr

Request Schema

{
  "requestId": "optional-trace-id",
  "schemaVersion": "1.0",
  "account": "optional-account-name-in-config",
  "data": {}
}

Success Response Schema

{
  "ok": true,
  "requestId": "same-as-request",
  "schemaVersion": "1.0",
  "data": {}
}

Error Response Schema

{
  "ok": false,
  "requestId": "same-as-request",
  "schemaVersion": "1.0",
  "error": {
    "code": "ERROR_CODE",
    "message": "Human-readable message",
    "details": {}
  }
}
Error CodeDescription
VALIDATION_ERRORInvalid input data or parameters
CONFIG_ERRORConfiguration file missing or invalid
AUTH_ERRORAuthentication failed
NETWORK_ERRORNetwork connection failed
MAIL_OPERATION_ERRORIMAP/SMTP operation failed
MAILBOX_ERRORMailbox selection or management failed
INTERNAL_ERRORUnexpected internal error

Scripts

folder_create.py

Create mailbox folder.

Request fields
namestring, required
Response fields
accountAccount name used
nameFolder name created
createdtrue on success

folder_delete.py

Delete mailbox folder.

Request fields
namestring, required
Response fields
accountAccount name used
nameFolder name deleted
deletedtrue on success

folder_list.py

List mailbox folders.

Request fields
(none)
Response fields
accountAccount name used
mailboxesArray of folder objects

folder_rename.py

Rename mailbox folder.

Request fields
oldNamestring, required
newNamestring, required
Response fields
accountAccount name used
oldNameOriginal folder name
newNameNew folder name
renamedtrue on success

mail_copy.py

Copy email(s) between folders.

Request fields
uidsstring[] or comma-separated string
sourceFolderoptional, default INBOX
targetFolderrequired
Response fields
accountAccount name used
uidsUIDs copied
sourceFolderSource folder
targetFolderTarget folder
copiedtrue on success

mail_delete.py

Delete email(s).

Request fields
uidsstring[] or comma-separated string
folderoptional, default INBOX
expungeboolean, default false
Response fields
accountAccount name used
uidsUIDs deleted
folderFolder name
deletedtrue on success
expungedtrue if hard deleted

mail_forward.py

Forward email with optional additions.

Request fields
uidstring, required
folderoptional, default INBOX
tostring or string[], required
ccoptional
bccoptional
bodyTextoptional, prepended to forwarded content
bodyHtmloptional
attachmentsoptional
Response fields
accountAccount name used
forwardedtrue on success
uidOriginal email UID
toRecipients
ccCC recipients
subjectForwarded subject

Automatically includes original email and attachments.

mail_mark.py

Mark email(s) with flags.

Request fields
uidsstring[] or comma-separated string, required
markTyperead, unread, flag, unflag, spam, notspam, junk, notjunk, required
folderoptional, default INBOX
Response fields
accountAccount name used
uidsUIDs marked
markTypeMark type applied
markedtrue on success

mail_move.py

Move email(s) between folders.

Request fields
uidsstring[] or comma-separated string
sourceFolderoptional, default INBOX
targetFolderrequired
Response fields
accountAccount name used
uidsUIDs moved
sourceFolderSource folder
targetFolderTarget folder
movedtrue on success

mail_read.py

Read email content and metadata.

Request fields
uidstring, required
folderoptional, default INBOX
Response fields
accountAccount name used
uidEmail UID
subjectEmail subject
fromSender
toRecipients
ccCC recipients
dateEmail date
bodyTextPlain text body
bodyHtmlHTML body
attachmentsAttachment list
tagsCombined flags and labels

Marks message as read after fetch.

mail_reply.py

Reply to email.

Request fields
uidstring, required
folderoptional, default INBOX
bodyTextoptional
bodyHtmloptional
replyAllboolean, default false
priorityhigh, normal, low
attachmentsoptional
Response fields
accountAccount name used
uidOriginal email UID
folderOriginal email folder
senttrue on success
toReply recipients
ccCC recipients
attachmentCountNumber of attachments
priorityPriority level (high, normal, low)
readReceipttrue if read receipt requested
inReplyToIn-Reply-To message ID
referencesReferences header value
subjectReply subject

mail_list.py

List emails using IMAP search.

Request fields
queryoptional, default UNSEEN
folderoptional, default INBOX
maxResultsoptional, default 10
Response fields
accountAccount name used
folderFolder searched
querySearch query
uidsMatching UIDs
countResults returned
totalCountTotal matches
hasMoreMore results available
summaryEmail summaries
QueryDescription
UNSEENUnread messages
FROM user@example.comFrom sender
SUBJECT "keyword"Subject contains
SINCE 2024-01-01Since date
ALLAll messages

mail_send.py

Send new email.

Request fields
tostring or string[], required
subjectstring, required
bodyTextoptional
bodyHtmloptional
ccoptional
bccoptional
priorityhigh, normal, low
attachmentsoptional
Response fields
accountAccount name used
senttrue on success
toRecipients
ccCC recipients
bccCountNumber of BCC recipients
attachmentCountNumber of attachments
priorityPriority level (high, normal, low)
readReceipttrue if read receipt requested
inReplyToIn-Reply-To message ID
referencesReferences header value
subjectSent subject

Examples

List new emails

echo '{"requestId":"test","schemaVersion":"1.0","data":{"maxResults":10}}' | python3 scripts/mail_list.py

Read email by UID

{ "requestId": "read", "schemaVersion": "1.0", "data": { "uid": "123" } }

List from sender

{
  "requestId": "search",
  "schemaVersion": "1.0",
  "data": { "query": "FROM boss@example.com" }
}

Send email

{
  "requestId": "send",
  "schemaVersion": "1.0",
  "data": {
    "to": ["user@example.com"],
    "subject": "Hello",
    "bodyText": "Hello world!"
  }
}

Reply to email

{
  "requestId": "reply",
  "schemaVersion": "1.0",
  "data": { "uid": "123", "bodyText": "Thanks!" }
}

Mark and move

{"requestId":"mark","schemaVersion":"1.0","data":{"uids":"123","markType":"read"}}
{"requestId":"move","schemaVersion":"1.0","data":{"uids":"123","targetFolder":"Archive"}}

Troubleshooting

AUTH_ERROR

  • If password auth: Ensure both EMAIL_USERNAME and EMAIL_PASSWORD are set
  • If OAuth2 auth: All four variables required: EMAIL_OAUTH2_CLIENT_ID, EMAIL_OAUTH2_CLIENT_SECRET, EMAIL_OAUTH2_REFRESH_TOKEN, EMAIL_OAUTH2_TOKEN_URL
  • For 2FA accounts, use app password for EMAIL_PASSWORD
  • OAuth2 takes priority if all four EMAIL_OAUTH2_* variables are set

NETWORK_ERROR

  • Verify IMAP port 993 (SSL) or 143 (STARTTLS)
  • Verify SMTP port 465 (SSL) or 587 (STARTTLS)
  • Check firewall settings

CONFIG_ERROR

  • Ensure config.toml exists and is valid TOML
  • Check email, imap.host, smtp.host are configured

Security Warnings

⚠️ SSL Verification: Setting ssl_verify = false in config disables certificate validation and exposes connections to man-in-the-middle attacks. Only disable for local development/testing.

⚠️ IMAP Injection Protection: User-provided search queries are validated against a whitelist of safe commands. Custom queries containing ()"; characters will be rejected.

Debugging

Check stderr for detailed error logs with code, message, and details.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.65%
按下载量换算1,130

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills