{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/email-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/resources.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/email-reader",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "概述",
        "body": "赋予 AI 邮件管理能力：\n\n读取邮件（IMAP）\n发送邮件（SMTP）\n邮件汇总与分类\n重要邮件提醒"
      },
      {
        "title": "触发场景",
        "body": "用户要求\"查看邮件\"、\"读取邮件\"\n用户要求\"汇总未读邮件\"\n用户要求\"发送邮件\"\n用户要求\"检查重要邮件\"\n定时提醒用户查看邮件"
      },
      {
        "title": "支持的邮件服务",
        "body": "服务协议说明GmailIMAP/SMTP需要应用专用密码OutlookIMAP/SMTP支持 OAuthQQ 邮箱IMAP/SMTP需要授权码网易邮箱IMAP/SMTP支持 IMAP"
      },
      {
        "title": "使用 himalaya CLI",
        "body": "推荐使用 himalaya CLI 进行邮件管理："
      },
      {
        "title": "安装",
        "body": "# macOS\nbrew install himalaya\n\n# Linux\ncargo install himalaya\n\n# Windows\nwinget install himalaya"
      },
      {
        "title": "配置",
        "body": "himalaya envelope add --name personal \\\n  --imap-host imap.example.com \\\n  --imap-port 993 \\\n  --smtp-host smtp.example.com \\\n  --smtp-port 587 \\\n  --username your@email.com \\\n  --password \"your-password\""
      },
      {
        "title": "常用命令",
        "body": "# 列出邮件\nhimalaya list --account personal -w 50\n\n# 阅读邮件\nhimalaya read <email-id>\n\n# 发送邮件\nhimalaya send --from your@email.com --to recipient@example.com \\\n  --subject \"Subject\" --body \"Content\"\n\n# 搜索邮件\nhimalaya search --account personal \"keyword\""
      },
      {
        "title": "工作流",
        "body": "1. 检查配置 → 确认 himalaya 已配置\n2. 获取邮件 → 使用 list/read 命令\n3. 筛选重要 → 标记重要邮件\n4. 汇总呈现 → 用中文总结给用户"
      },
      {
        "title": "安全注意事项",
        "body": "不要在日志中暴露密码\n使用环境变量存储敏感信息\n建议使用 OAuth 认证（如果支持）"
      },
      {
        "title": "输出格式",
        "body": "向用户呈现邮件时：\n\n发件人、主题、摘要\n收到的简要\n建议操作（回复、删除、标记）"
      }
    ],
    "body": "Email Reader - 邮件管理技能\n概述\n\n赋予 AI 邮件管理能力：\n\n读取邮件（IMAP）\n发送邮件（SMTP）\n邮件汇总与分类\n重要邮件提醒\n触发场景\n用户要求\"查看邮件\"、\"读取邮件\"\n用户要求\"汇总未读邮件\"\n用户要求\"发送邮件\"\n用户要求\"检查重要邮件\"\n定时提醒用户查看邮件\n支持的邮件服务\n服务\t协议\t说明\nGmail\tIMAP/SMTP\t需要应用专用密码\nOutlook\tIMAP/SMTP\t支持 OAuth\nQQ 邮箱\tIMAP/SMTP\t需要授权码\n网易邮箱\tIMAP/SMTP\t支持 IMAP\n使用 himalaya CLI\n\n推荐使用 himalaya CLI 进行邮件管理：\n\n安装\n# macOS\nbrew install himalaya\n\n# Linux\ncargo install himalaya\n\n# Windows\nwinget install himalaya\n\n配置\nhimalaya envelope add --name personal \\\n  --imap-host imap.example.com \\\n  --imap-port 993 \\\n  --smtp-host smtp.example.com \\\n  --smtp-port 587 \\\n  --username your@email.com \\\n  --password \"your-password\"\n\n常用命令\n# 列出邮件\nhimalaya list --account personal -w 50\n\n# 阅读邮件\nhimalaya read <email-id>\n\n# 发送邮件\nhimalaya send --from your@email.com --to recipient@example.com \\\n  --subject \"Subject\" --body \"Content\"\n\n# 搜索邮件\nhimalaya search --account personal \"keyword\"\n\n工作流\n1. 检查配置 → 确认 himalaya 已配置\n2. 获取邮件 → 使用 list/read 命令\n3. 筛选重要 → 标记重要邮件\n4. 汇总呈现 → 用中文总结给用户\n\n安全注意事项\n不要在日志中暴露密码\n使用环境变量存储敏感信息\n建议使用 OAuth 认证（如果支持）\n输出格式\n\n向用户呈现邮件时：\n\n发件人、主题、摘要\n收到的简要\n建议操作（回复、删除、标记）"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Jackeven02/email-reader",
    "publisherUrl": "https://clawhub.ai/Jackeven02/email-reader",
    "owner": "Jackeven02",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}