用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/olasunkanmi-SE/codebuddy --skill email命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | |
| description | Send emails using mailsend-go CLI |
| metadata | {"displayName":"Email (SMTP)","icon":"mail","category":"communication","version":"1.0.0","dependencies":{"cli":"mailsend","checkCommand":"mailsend -V","install":{"darwin":{"brew":"mailsend-go","go":"github.com/muquit/mailsend-go@latest"},"linux":{"go":"github.com/muquit/mailsend-go@latest"},"windows":{"go":"github.com/muquit/mailsend-go@latest"}}},"config":[{"name":"SMTP_HOST","label":"SMTP Host","type":"string","required":false,"placeholder":"smtp.gmail.com"},{"name":"SMTP_PORT","label":"SMTP Port","type":"string","required":false,"placeholder":"587"}],"auth":{"type":"basic"}} |
This skill allows sending emails via SMTP using the mailsend tool (mailsend-go).
mailsend binary must be in .codebuddy/bin/mailsendUse ./.codebuddy/bin/mailsend to send emails.
./.codebuddy/bin/mailsend -smtp <smtp_host> -port <smtp_port> -auth -user <username> -pass <password> -from <sender_email> -to <recipient_email> -sub "Subject" -body "Body text"
./.codebuddy/bin/mailsend -smtp smtp.gmail.com -port 587 -starttls -auth -user <username> -pass <password> -from <sender_email> -to <recipient_email> -sub "Subject" -body "Body text"