用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/octos-org/octos --skill send-email命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
List and control smart-home devices (lights, thermostats, switches, covers, speakers) via the profile's configured bridge. Triggers: smart home, turn on/off, lights, thermostat, dim, brightness, temperature, unlock, devices, 智能家居, 开灯, 关灯, 空调, 窗帘, 灯光, 设备.
Batch ASR (via dedicated ASR_API_URL or OminiX fallback), preset-voice TTS with emotion/speed control, and model management via Qwen3 models on Apple Silicon. For voice cloning and custom voice profiles, use mofa-fm. Triggers: voice, transcribe audio, text to speech, speak this, read aloud, model management, download model, 语音识别, 语音合成, 模型管理.
Summarizes a text file into a compact report. Used as a third-party compatibility harness. Triggers: summarize, summary, compat-test, harness check.
基于 SOC 职业分类
正在显示 SKILL.md
| name | send-email |
| description | Send emails via SMTP or Feishu/Lark Mail. Triggers: send email, 发邮件, email to, 发送邮件, mail, send mail. |
This skill provides the send_email tool for sending emails via SMTP or Feishu/Lark Mail. It is a standalone binary with no LLM dependencies -- pure networking only.
Call send_email with the following parameters:
"smtp" or "feishu". If omitted, the tool auto-detects based on which environment variables are present.true, the body parameter is treated as HTML content. For SMTP this sends a multipart/alternative message with both plain text and HTML parts. For Feishu the body is sent as HTML directly.Sends email via any SMTP server (Gmail, Outlook, custom, etc.) using TLS.
Required environment variables:
| Variable | Description | Example |
|---|---|---|
SMTP_HOST | SMTP server hostname | smtp.gmail.com |
SMTP_PORT | SMTP server port (465 for implicit TLS, 587 for STARTTLS) | 587 |
SMTP_USERNAME | SMTP login username | user@gmail.com |
SMTP_PASSWORD | SMTP login password or app-specific password | abcdefghijklmnop |
SMTP_FROM | Sender email address | user@gmail.com |
Sends email via the Feishu (or Lark) Open API using a tenant access token.
Required environment variables:
| Variable | Description | Example |
|---|---|---|
LARK_APP_ID | Feishu/Lark application ID | cli_a9150c716078c07e |
LARK_APP_SECRET | Feishu/Lark application secret | IrPGLtOq... |
LARK_FROM_ADDRESS | Sender email address in Feishu Mail | sender@company.com |
Optional environment variable:
| Variable | Description | Default |
|---|---|---|
LARK_REGION | Set to "global" or "lark" to use open.larksuite.com; otherwise uses open.feishu.cn | feishu |
If provider is not specified in the tool call:
SMTP_HOST is set, uses SMTP.LARK_APP_ID is set, uses Feishu.{
"to": "recipient@example.com",
"subject": "Meeting Tomorrow",
"body": "Hi, just a reminder about our meeting tomorrow at 10am."
}
{
"to": "recipient@example.com",
"subject": "Weekly Report",
"body": "<h1>Weekly Report</h1><p>All tasks completed.</p>",
"provider": "feishu",
"html": true
}
{
"to": "recipient@example.com",
"subject": "Hello",
"body": "Plain text content here.",
"provider": "smtp"
}