# Send Email Reader to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "email-reader",
    "name": "Email Reader",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Jackeven02/email-reader",
    "canonicalUrl": "https://clawhub.ai/Jackeven02/email-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/email-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/resources.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "email-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:28:12.384Z",
      "expiresAt": "2026-05-07T00:28:12.384Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-reader",
        "contentDisposition": "attachment; filename=\"email-reader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "email-reader"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/email-reader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/email-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/email-reader",
    "agentUrl": "https://openagent3.xyz/skills/email-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/email-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/email-reader/agent.md"
  }
}
```
## Documentation

### 概述

赋予 AI 邮件管理能力：

读取邮件（IMAP）
发送邮件（SMTP）
邮件汇总与分类
重要邮件提醒

### 触发场景

用户要求"查看邮件"、"读取邮件"
用户要求"汇总未读邮件"
用户要求"发送邮件"
用户要求"检查重要邮件"
定时提醒用户查看邮件

### 支持的邮件服务

服务协议说明GmailIMAP/SMTP需要应用专用密码OutlookIMAP/SMTP支持 OAuthQQ 邮箱IMAP/SMTP需要授权码网易邮箱IMAP/SMTP支持 IMAP

### 使用 himalaya CLI

推荐使用 himalaya CLI 进行邮件管理：

### 安装

# macOS
brew install himalaya

# Linux
cargo install himalaya

# Windows
winget install himalaya

### 配置

himalaya envelope add --name personal \\
  --imap-host imap.example.com \\
  --imap-port 993 \\
  --smtp-host smtp.example.com \\
  --smtp-port 587 \\
  --username your@email.com \\
  --password "your-password"

### 常用命令

# 列出邮件
himalaya list --account personal -w 50

# 阅读邮件
himalaya read <email-id>

# 发送邮件
himalaya send --from your@email.com --to recipient@example.com \\
  --subject "Subject" --body "Content"

# 搜索邮件
himalaya search --account personal "keyword"

### 工作流

1. 检查配置 → 确认 himalaya 已配置
2. 获取邮件 → 使用 list/read 命令
3. 筛选重要 → 标记重要邮件
4. 汇总呈现 → 用中文总结给用户

### 安全注意事项

不要在日志中暴露密码
使用环境变量存储敏感信息
建议使用 OAuth 认证（如果支持）

### 输出格式

向用户呈现邮件时：

发件人、主题、摘要
收到的简要
建议操作（回复、删除、标记）
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Jackeven02
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T00:28:12.384Z
- Expires at: 2026-05-07T00:28:12.384Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/email-reader)
- [Send to Agent page](https://openagent3.xyz/skills/email-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/email-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/email-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/email-reader)