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.