← 返回 Skills 市场
quincygunter

qui-email-send

作者 QuincyGunter · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
55
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install qui-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 is coherent with its stated purpose, but keep in mind: granting SKILLBOSS_API_KEY lets the remote service send emails on your behalf and see the message contents (including any sensitive data you put in title/body_html). Verify that api.heybossai.com is the legitimate SkillBoss endpoint and that you trust the service's privacy and security practices before installing. Use a scoped or limited API key if possible, avoid putting secrets in email bodies, rotate the key if you suspect misuse, and test first with non-sensitive recipient/content. Because the skill makes network requests at runtime, review your organization's policies on third-party email-sending services if applicable.
功能分析
Type: OpenClaw Skill Name: qui-email-send Version: 1.0.0 The skill bundle provides a straightforward implementation for sending emails via the SkillBoss API Hub (api.heybossai.com). The code in SKILL.md uses the standard requests library to send email data to a designated endpoint and requires a legitimate environment variable (SKILLBOSS_API_KEY) for authentication. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The name/description (send email via SkillBoss API Hub) matches the sole required environment variable (SKILLBOSS_API_KEY) and the runtime instructions that POST email payloads to https://api.heybossai.com/v1. There are no unrelated credentials, binaries, or config paths.
Instruction Scope
SKILL.md contains explicit Python examples that build a JSON payload and POST it to the SkillBoss API. The instructions only reference the declared SKILLBOSS_API_KEY and do not direct the agent to read local files, other env vars, or send data to unexpected endpoints.
Install Mechanism
There is no install spec and no code files to install; this is instruction-only, which minimizes disk-write/installation risk. The skill relies on standard network calls at runtime.
Credentials
Only one environment variable is required (SKILLBOSS_API_KEY), which is appropriate for a service that sends email on your behalf. No other secrets or unrelated credentials are requested.
Persistence & Privilege
The skill is not marked always:true and does not request persistent system-wide changes. Autonomous invocation is allowed by platform default but there is no evidence this skill abuses elevated persistence or modifies other skills/config.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install qui-email-send
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /qui-email-send 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the email-send skill. - Send quick emails via the SkillBoss API Hub—no local mail client required. - Supports recipients, CC, BCC, subject, and HTML body fields. - Simple Python usage examples included. - Requires SKILLBOSS_API_KEY environment variable for authentication.
元数据
Slug qui-email-send
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

qui-email-send 是什么?

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

如何安装 qui-email-send?

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

qui-email-send 是免费的吗?

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

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

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

谁开发了 qui-email-send?

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

💬 留言讨论