← 返回 Skills 市场
unixlamadev-spec

Email Bot

作者 unixlamadev-spec · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
300
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install email-bot
功能描述
Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields.
使用说明 (SKILL.md)

\r \r

Email Bot\r

\r Send emails on behalf of agents and workflows via the Resend API. Accepts either explicit to, subject, and body fields, or a freeform task string — Claude parses the recipient, subject, and body automatically from natural language. Supports plain text and HTML email bodies.\r \r

When to Use\r

\r

  • Delivering AI-generated summaries or reports to users\r
  • Sending workflow completion notifications\r
  • Notifying humans of agent-completed tasks\r
  • Automating outbound email from agent pipelines\r
  • Alerting on research results, market signals, or analysis outputs\r \r

Usage Flow\r

\r

  1. Provide explicit to, subject, body fields — OR — a freeform task string\r
  2. Optionally set html: true for HTML email body\r
  3. AIProx routes to the email-bot agent\r
  4. Returns sent: true and the provider message ID on success\r \r

Security Manifest\r

\r | Permission | Scope | Reason |\r |------------|-------|--------|\r | Network | aiprox.dev | API calls to orchestration endpoint |\r | Network | api.resend.com | Email delivery (server-side) |\r | Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |\r \r

Make Request — Explicit Fields\r

\r

curl -X POST https://aiprox.dev/api/orchestrate \\r
  -H "Content-Type: application/json" \\r
  -d '{\r
    "task": "send an email",\r
    "to": "[email protected]",\r
    "subject": "Your AI Research Report",\r
    "body": "Hello,\
\
Here is the summary you requested...",\r
    "spend_token": "$AIPROX_SPEND_TOKEN"\r
  }'\r
```\r
\r
## Make Request — Freeform Task\r
\r
```bash\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
  -H "Content-Type: application/json" \\r
  -d '{\r
    "task": "email [email protected]: Weekly Market Summary - BTC is up 12% this week, ETH leads altcoins",\r
    "spend_token": "$AIPROX_SPEND_TOKEN"\r
  }'\r
```\r
\r
### Response\r
\r
```json\r
{\r
  "sent": true,\r
  "to": "[email protected]",\r
  "subject": "Your AI Research Report",\r
  "message_id": "re_abc123xyz",\r
  "provider": "resend"\r
}\r
```\r
\r
## Trust Statement\r
\r
Email Bot sends outbound email on your behalf using recipient addresses you supply. Email content is processed transiently and not stored. Your spend token is used for payment only. Sending to addresses you do not own or have permission to contact is prohibited.\r
安全使用建议
This skill does what it says (send email) but relies entirely on a third‑party orchestrator (aiprox.dev) that will receive your AIPROX_SPEND_TOKEN and the full email content. Before installing: verify the operator (aiprox.dev) and its privacy/security policies; only provide a scoped/limited spend token (if possible) with spending limits or dedicated billing account; avoid sending sensitive PII or secrets in emails routed through this service; prefer direct integration with your own Resend (or other provider) API keys if you want stronger control/auditability; monitor outgoing email usage and rotate the token if you stop using the skill. If you cannot vet the external service, treat this as high trust/risk and consider not installing.
功能分析
Type: OpenClaw Skill Name: email-bot Version: 1.0.0 The email-bot skill bundle is a documentation-based skill for sending emails via the Resend API through a proxy service (aiprox.dev). It defines standard requirements for an authentication token (AIPROX_SPEND_TOKEN) and network access to the API endpoints, with no evidence of malicious intent, data exfiltration, or prompt injection attacks.
能力评估
Purpose & Capability
The skill's name, description, and instructions consistently describe sending email via Resend routed through aiprox.dev and only request a single AIPROX_SPEND_TOKEN. Requiring a billing/spend token for a third‑party orchestrator is plausible and aligned with the stated purpose. However, the service (aiprox.dev) is an external intermediary with unknown source code/provenance, which raises a trust question even though the capability mapping is coherent.
Instruction Scope
Runtime instructions direct the agent to POST email fields (or freeform task) plus the AIPROX_SPEND_TOKEN to https://aiprox.dev/api/orchestrate. That transmits full email content and the spend token to an external endpoint. The SKILL.md does not instruct reading unrelated local files or other env vars, but because all processing happens on a remote orchestrator, sensitive content could be exposed or stored despite the 'transient' claim. The freeform task mode also lets the agent decide recipients/contents, increasing risk of unintended emails or data exfiltration.
Install Mechanism
Instruction-only skill with no install spec and no code files. Nothing is written to disk or installed by the skill itself, which reduces technical attack surface.
Credentials
Only one env var (AIPROX_SPEND_TOKEN) is required, which superficially is proportionate. However, this token is sent in the request body to a third party; the skill's claim that the token is 'used for payment only' cannot be audited from the SKILL.md. A single spend/billing token is powerful (can authorize paid actions) and should be considered sensitive — granting it to an unverified external service is a significant risk.
Persistence & Privilege
Skill is not always-enabled and does not request system privileges, config paths, or persistent presence. It does not modify other skills or system settings according to provided metadata.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install email-bot
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /email-bot 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of email-bot. - Send emails via the Resend API on behalf of agents and workflows. - Supports both explicit field input and freeform natural language task strings. - Handles plain text and HTML emails. - Returns delivery confirmation, including provider message ID. - Requires AIPROX_SPEND_TOKEN for authentication.
元数据
Slug email-bot
版本 1.0.0
许可证 MIT-0
累计安装 2
当前安装数 2
历史版本数 1
常见问题

Email Bot 是什么?

Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 300 次。

如何安装 Email Bot?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install email-bot」即可一键安装,无需额外配置。

Email Bot 是免费的吗?

是的,Email Bot 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Email Bot 支持哪些平台?

Email Bot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Email Bot?

由 unixlamadev-spec(@unixlamadev-spec)开发并维护,当前版本 v1.0.0。

💬 留言讨论