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

robotomailrobotomail 搜索

Agent Skill

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

总安装

7,776

周安装

324

GitHub Stars

1

下载量

2,592
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install robotomail

简介

robotomail 为 AI 代理提供真实的电子邮件收发功能,支持收件箱查看、消息阅读和邮件回复。

  • 适合需要自动化处理邮件通信的场景,如客户服务、通知提醒或信息同步。
  • 通过标准邮件协议与外部邮箱系统对接,支持主流邮箱服务商集成。
  • 使用前需配置邮箱凭据并确认网络访问权限,注意敏感信息的加密与安全策略。
  • 建议检查 API 调用频率限制和邮件内容合规性要求。

SKILL.md

name
robotomail
description
>
license
MIT
compatibility
>
metadata
author
Robotomail
version
1.0.5
website
https://robotomail.com
openclaw
requires
env
primaryEnv
ROBOTOMAIL_API_KEY

Robotomail — Give Your AI Agent a Real Inbox

Robotomail lets an AI agent send, receive, and react to email programmatically. It is API-first email infrastructure for autonomous agents, assistants, and workflows.

Use Robotomail when you want an agent to:

  • send outbound email, reminders, updates, or follow-ups
  • read inbound email from a real inbox
  • react to incoming email via webhooks or real-time SSE events
  • reply in existing threads using normal email semantics
  • use a hosted robotomail.co address or a custom domain

Best-fit use cases

1. Agent support inbox

Give your agent a real inbox so it can classify, summarize, draft, or reply to incoming support emails.

2. Outbound follow-ups and reminders

Let an agent send reminders, nudges, receipts, booking confirmations, or outbound follow-ups from its own mailbox.

3. Real-time email triggers

Subscribe to inbound email events with webhooks or SSE so your agent can wake up and act immediately.

Fast start

If the user is new to Robotomail, the fastest path is:

  1. Sign up at https://robotomail.com or create an account via POST /v1/signup
  2. Create or list a mailbox with GET /v1/mailboxes or POST /v1/mailboxes
  3. Send a test email with POST /v1/mailboxes/{id}/messages
  4. Read inbound email with GET /v1/mailboxes/{id}/messages?direction=INBOUND
  5. Subscribe to inbound events via webhook or SSE

Authentication

All requests require an API key in the Authorization header:

Authorization: Bearer <ROBOTOMAIL_API_KEY>

Base URL: https://api.robotomail.com

If the user doesn't have an API key yet, they can sign up at https://robotomail.com or you can create an account via POST /v1/signup.

Quick Reference — What Can I Do?

TaskMethodEndpoint
Send an emailPOST/v1/mailboxes/{id}/messages
List inbox messagesGET/v1/mailboxes/{id}/messages?direction=INBOUND
Read a specific messageGET/v1/mailboxes/{id}/messages/{msgId}
List conversation threadsGET/v1/mailboxes/{id}/threads
Read a threadGET/v1/mailboxes/{id}/threads/{tid}
List mailboxesGET/v1/mailboxes
Create a mailboxPOST/v1/mailboxes
Add a custom domainPOST/v1/domains
Verify domain DNSPOST/v1/domains/{id}/verify
Set up a webhookPOST/v1/webhooks
Stream events with SSEGET/v1/events
Upload an attachmentPOST/v1/attachments (multipart)
Download an attachmentGET/v1/attachments/{id}
Check account & usageGET/v1/account

For full endpoint details including request/response schemas, read references/api-reference.md.

Webhooks vs SSE

Use webhooks when Robotomail should push events to your public HTTPS endpoint.

Use SSE when the agent wants a live event stream over a single long-lived connection, for example when running a local listener or agent loop.

If the user says things like "stream inbound mail", "listen for new messages", or "real-time inbox events", prefer SSE.

Decision Tree — Common Tasks

"Send an email"

  1. List mailboxes: GET /v1/mailboxes — find the mailbox to send from
  2. Send: POST /v1/mailboxes/{id}/messages with to, subject, bodyText (and optionally bodyHtml)
  3. To reply to an existing message, include inReplyTo with the original message's messageId header value

"Check my inbox" / "Read my email"

  1. List mailboxes: GET /v1/mailboxes
  2. Fetch inbound messages: GET /v1/mailboxes/{id}/messages?direction=INBOUND
  3. Read a specific message: GET /v1/mailboxes/{id}/messages/{msgId}

"Reply to an email"

  1. Read the original message to get its messageId field
  2. Send reply: POST /v1/mailboxes/{id}/messages with inReplyTo set to the original's messageId value
  3. Threading is automatic — the reply joins the same thread

"Set up email for a new domain"

  1. Add domain: POST /v1/domains with {"domain": "example.com"}
  2. Read the dnsRecords from the response — tell the user to configure these at their DNS provider
  3. After DNS is configured, verify: POST /v1/domains/{id}/verify
  4. Once verified, create a mailbox: POST /v1/mailboxes with {"address": "agent", "domainId": "<id>"}

"Set up a webhook for incoming email"

  1. Create webhook: POST /v1/webhooks with url and events: ["message.received"]
  2. Save the secret from the response, it is shown only once
  3. Verify deliveries with X-Robotomail-Signature header (HMAC-SHA256 of payload using secret)

See references/webhook-verification.md for signature verification code.

"Listen for incoming email in real time" / "Use SSE"

  1. Connect to GET /v1/events
  2. Filter or react to message.received, message.delivered, message.bounced, and message.complaint
  3. Use SSE when the agent wants a live stream instead of public webhook delivery

"Send an email with an attachment"

  1. Upload the file: POST /v1/attachments (multipart/form-data, field name file, max 25MB)
  2. Note the returned attachment id
  3. Send the message with attachments: ["<attachment-id>"]

"Read an inbound email's attachments" / "Handle inline images"

Inbound messages with attachments expose them on two surfaces with different shapes. Pick the right one for your access pattern — do not assume REST responses contain ready-to-use download URLs.

  1. Webhook / SSE message.received payloaddata.attachments[] is delivered with a ready-to-use download_url field (presigned R2 URL, valid 24h from publish time) on each attachment, alongside id, filename, content_type, size_bytes, and content_id. Field names are snake_case. Fetch each file directly — no Authorization header needed:
   for att in event.data.attachments:
       bytes = HTTP_GET(att.download_url)
       save_to(att.filename, bytes)
  1. REST GET /v1/mailboxes/{id}/messages and GET /v1/mailboxes/{id}/messages/{msgId}attachments[] contains metadata only (id, filename, contentType, sizeBytes, contentId), no URL field. To download, call GET /v1/attachments/{id} for each attachment id and use the url field on that response. Field names are camelCase. This is also how you refresh an expired download_url from an old webhook/SSE replay.

Inline images: when an attachment's content_id (snake_case in webhook/SSE) or contentId (camelCase in REST) is non-null, the attachment is referenced in body_html / bodyHtml as <img src="cid:<content_id>">. Rewrite each cid: reference to a real downloadable URL before passing the HTML to a renderer or vision model. From a webhook/SSE payload (where download_url is already on the attachment):

for att in event.data.attachments where att.content_id is not None:
    body_html = body_html.replace(f"cid:{att.content_id}", att.download_url)

From a REST message read, fetch a presigned URL per inline attachment first:

for att in message.attachments where att.contentId is not None:
    url = GET(f"/v1/attachments/{att.id}").url
    bodyHtml = bodyHtml.replace(f"cid:{att.contentId}", url)

Drop limits: if a message has more than 20 attachments, or any single attachment exceeds 25 MB, the payload includes attachments_dropped: true and attachments_dropped_reason: "size" | "count" | "both". The message itself is still delivered, but the over-limit attachments are not stored. Tell the user if you see this flag.

Key Constraints

  • Daily send limits: 100/day (free), 500–2,000/day (paid, varies by tier) per mailbox — resets at midnight UTC
  • Monthly send limits: 5,000/month (free), 15,000/month (Developer), unlimited (Growth, Scale) per mailbox
  • Velocity limits: 30 messages/min per mailbox, 60 messages/min per account — returns 429 if exceeded
  • Bounce rate: Must stay below 3% over a 7-day rolling window (minimum 50 messages). Exceeding this auto-suspends the mailbox.
  • Complaint rate: Must stay below 0.05% over a 7-day rolling window (minimum 50 messages). Exceeding this auto-suspends the mailbox.
  • Attachment size: Max 25MB per file
  • Storage: 1GB (free), 10GB (Developer), 25GB (Growth), 100GB (Scale)
  • Free tier: 3 mailboxes on robotomail.co only
  • Paid plans start at $19/mo (Developer): 10+ mailboxes, custom domains

If a send returns 429, the mailbox has hit its daily/monthly limit or velocity limit. Tell the user and suggest slowing down or upgrading if on the free plan.

Error Handling

All errors return {"error": "message"} with standard HTTP status codes:

  • 401 — Missing or invalid API key
  • 403 — Account suspended or scoped key accessing a restricted resource. When suspended, response includes { "suspended": true, "reason": "bounce_rate_exceeded" }. Tell the user to contact support@robotomail.com.
  • 404 — Resource not found
  • 429 — Rate limit, velocity limit, or send quota exceeded
  • 413 — Attachment too large

Tips

  • Always use bodyText for the plain-text version. Add bodyHtml only when rich formatting is needed.
  • Use threads (GET /v1/mailboxes/{id}/threads/{tid}) to see full conversation history before replying.
  • When listing messages, use since parameter (ISO-8601) to fetch only recent messages.
  • Suppression list (GET /v1/suppressions) contains bounced/complained addresses — check before sending to addresses that previously failed.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.57%
按下载量换算2,062

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills