用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill send-email命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | send-email |
| description | > Use when this capability is needed. |
Send emails from the terminal using matcha's configured accounts.
Matcha has a send CLI subcommand that sends emails non-interactively:
matcha send --to <recipients> --subject <subject> --body <body> [flags]
| Flag | Description |
|---|---|
--to | Recipient(s), comma-separated (required) |
--subject | Email subject (required) |
--body | Email body (Markdown supported). Use "-" to read from stdin |
--from | Sender account email (defaults to first configured account) |
--cc | CC recipient(s), comma-separated |
--bcc | BCC recipient(s), comma-separated |
--attach | Attachment file path (can be repeated for multiple files) |
--signature | Append default signature (default: true). Use --signature=false to disable |
--sign-smime | Sign with S/MIME (uses account default if not set) |
--encrypt-smime | Encrypt with S/MIME |
--sign-pgp | Sign with PGP (uses account default if not set) |
--to) and subject (--subject) if not provided.--from <email>. Otherwise omit it to use the default account.--attach <path> for each one. This flag can be repeated.--body -.Simple email:
matcha send --to alice@example.com --subject "Meeting tomorrow" --body "Hi Alice, can we meet at 2pm?"
From a specific account:
matcha send --from work@company.com --to client@example.com --subject "Invoice" --body "Please find the invoice attached." --attach ~/Documents/invoice.pdf
Multiple recipients with CC:
matcha send --to alice@example.com,bob@example.com --cc manager@example.com --subject "Project update" --body "The project is on track."
Long body from stdin:
cat ~/notes/report.md | matcha send --to team@example.com --subject "Weekly Report" --body -
Multiple attachments:
matcha send --to alice@example.com --subject "Files" --body "Here are the files." --attach report.pdf --attach data.csv
No signature:
matcha send --to alice@example.com --subject "Quick note" --body "Thanks!" --signature=false
Accounts are configured in ~/.config/matcha/config.json. The --from flag matches against both the login email and fetch email fields. If omitted, the first configured account is used.
To list configured accounts, the user can check their matcha settings in the TUI.
Source: floatpane/matcha — distributed by TomeVault.