← Back to Skills Marketplace
unixlamadev-spec

Email Bot

by unixlamadev-spec · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
300
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install email-bot
Description
Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install email-bot
  3. After installation, invoke the skill by name or use /email-bot
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug email-bot
Version 1.0.0
License MIT-0
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is Email Bot?

Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields. It is an AI Agent Skill for Claude Code / OpenClaw, with 300 downloads so far.

How do I install Email Bot?

Run "/install email-bot" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Email Bot free?

Yes, Email Bot is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Email Bot support?

Email Bot is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Email Bot?

It is built and maintained by unixlamadev-spec (@unixlamadev-spec); the current version is v1.0.0.

💬 Comments