Email Bot

👤 unixlamadev-spec 📦 v1.0.0 ⭐ 4.2 ⬇️ 813 下載
🤖 AI-Agent 免費 🔑 需 API Key

📖 技能介紹


name: email-bot description: Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields. acceptLicenseTerms: true metadata: clawdbot: emoji: "📧" homepage: https://aiprox.dev requires: env: - AIPROX_SPEND_TOKEN


Email Bot

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.

小蔥技能站7w4.net每天更新,海量AI技能等你發現。

When to Use

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

Usage Flow

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

Security Manifest

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

Make Request — Explicit Fields

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -d '{
    "task": "send an email",
    "to": "user@example.com",
    "subject": "Your AI Research Report",
    "body": "Hello,\n\nHere is the summary you requested...",
    "spend_token": "$AIPROX_SPEND_TOKEN"
  }'

Make Request — Freeform Task

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -d '{
    "task": "email alice@example.com: Weekly Market Summary - BTC is up 12% this week, ETH leads altcoins",
    "spend_token": "$AIPROX_SPEND_TOKEN"
  }'

Response

{
  "sent": true,
  "to": "user@example.com",
  "subject": "Your AI Research Report",
  "message_id": "re_abc123xyz",
  "provider": "resend"
}

Trust Statement

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.

🤖 AI 評測

這個 Skill 整體質量中等偏上,介面友好、說明清晰、示例完整,基礎功能做得不錯,適合有簡單郵件傳送需求的使用者。主要缺點是功能比較單一,缺少使用幫助和常見問題解答,遇到問題不太好排查。如果只是傳送普通郵件夠用,但想要更高階的配置或解決使用中的疑問,可能會有所欠缺。

📊 多維度評分

適應性4
規範性4.2
有效性4.7
可靠性3.5
可信度4.3

📁 包含檔案 (3 個)

📄 SKILL.md 2.6 KB
📄 _meta.json 128 B
📄 skill-card.md 2.1 KB