← 返回 Skills 市场
marjoriebroad

mar-email-send

作者 MarjorieBroad · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
56
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install mar-email-send
功能描述
Send a quick email via SkillBoss API Hub without a local mail client.
使用说明 (SKILL.md)

Email Send Skill

Send a quick email via SkillBoss API Hub. Requires SKILLBOSS_API_KEY env var.

Sending Email

Send a basic email:

import requests, os

SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.heybossai.com/v1"

def pilot(body: dict) -> dict:
    r = requests.post(
        f"{API_BASE}/pilot",
        headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
        json=body,
        timeout=60,
    )
    return r.json()

result = pilot({
    "type": "email",
    "inputs": {
        "receivers": ["[email protected]"],
        "title": "Quick update",
        "body_html": "\x3Cp>Hey, the deploy is done.\x3C/p>"
    }
})

Send with CC/BCC:

result = pilot({
    "type": "email",
    "inputs": {
        "receivers": ["[email protected]"],
        "cc": ["[email protected]"],
        "bcc": ["[email protected]"],
        "title": "Quick update",
        "body_html": "\x3Cp>Hey, the deploy is done.\x3C/p>"
    }
})

Options

  • receivers -- list of recipient email addresses
  • title -- email subject line
  • body_html -- email body HTML
  • cc -- list of carbon copy recipients
  • bcc -- list of blind carbon copy recipients

Setup

Set your SkillBoss API key:

export SKILLBOSS_API_KEY=your_key_here
安全使用建议
This skill appears internally consistent: it simply posts email payloads to the SkillBoss API and only needs SKILLBOSS_API_KEY. Before installing, verify you trust the SkillBoss service and the skill publisher (there's no homepage or source repo listed). Use a scoped API key if possible, store the key securely, and monitor API activity; avoid sending highly sensitive data unless you trust the service's handling and retention policy. Note that the example uses Python's requests library but the skill provides no install steps — ensure your agent environment can run the sample code or that the platform will handle HTTP calls itself.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The skill claims to send email via SkillBoss API Hub and only requires SKILLBOSS_API_KEY and an HTTPS request to api.heybossai.com, which is consistent with that purpose.
Instruction Scope
SKILL.md only shows reading SKILLBOSS_API_KEY from the environment and posting a JSON payload to the SkillBoss API. It does not instruct reading unrelated files, other environment variables, or exfiltrating system data.
Install Mechanism
Instruction-only skill (no install spec) — low risk. Note: examples use Python 'requests' but no installation instructions are provided; that is an operational gap (not a direct security issue) if the runtime lacks that dependency.
Credentials
Only a single API key (SKILLBOSS_API_KEY) is required, which is proportional to sending email via an external API. No unrelated credentials or config paths are requested.
Persistence & Privilege
Skill is not always-on and doesn't request elevated system presence or modify other skills. disable-model-invocation is false (normal); autonomous invocation is expected behavior and not flagged by itself.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install mar-email-send
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /mar-email-send 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the email-send skill. - Send emails easily via the SkillBoss API Hub without a local mail client. - Supports sending to multiple recipients, with CC and BCC options. - Requires setting the SKILLBOSS_API_KEY environment variable for authentication. - Includes usage examples and setup instructions.
元数据
Slug mar-email-send
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

mar-email-send 是什么?

Send a quick email via SkillBoss API Hub without a local mail client. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 56 次。

如何安装 mar-email-send?

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

mar-email-send 是免费的吗?

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

mar-email-send 支持哪些平台?

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

谁开发了 mar-email-send?

由 MarjorieBroad(@marjoriebroad)开发并维护,当前版本 v1.0.0。

💬 留言讨论