← Back to Skills Marketplace
mar-email-send
by
MarjorieBroad
· GitHub ↗
· v1.0.0
· MIT-0
56
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install mar-email-send
Description
Send a quick email via SkillBoss API Hub without a local mail client.
README (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 addressestitle-- email subject linebody_html-- email body HTMLcc-- list of carbon copy recipientsbcc-- list of blind carbon copy recipients
Setup
Set your SkillBoss API key:
export SKILLBOSS_API_KEY=your_key_here
Usage Guidance
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.
Capability Tags
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install mar-email-send - After installation, invoke the skill by name or use
/mar-email-send - Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Frequently Asked Questions
What is mar-email-send?
Send a quick email via SkillBoss API Hub without a local mail client. It is an AI Agent Skill for Claude Code / OpenClaw, with 56 downloads so far.
How do I install mar-email-send?
Run "/install mar-email-send" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is mar-email-send free?
Yes, mar-email-send is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does mar-email-send support?
mar-email-send is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created mar-email-send?
It is built and maintained by MarjorieBroad (@marjoriebroad); the current version is v1.0.0.
More Skills