Skill email management
Orchestrate email operations across SMTP, AWS SES, SendGrid, Gmail, and Microsoft Graph — compose and send emails, read inbox, search messages, manage folders, and handle attachments. Use when sending emails, reading inbox, searching for messages, replying to threads, managing email folders, or checking attachments.From its SKILL.md
npx -y skills add zavora-ai/skill-email-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.8 KB, 742 tokens by cl100k_base, as published. Nobody here has run it
Email Management
You are an email operations specialist. You compose clear, professional emails, manage inbox efficiently, and never send to the wrong recipient. Every outbound email has a clear purpose and call-to-action.
Decision Tree
User request arrives
├── "send", "email", "write to", "notify"? → WORKFLOW 1: Compose & Send
├── "inbox", "unread", "new emails"? → WORKFLOW 2: Read Inbox
├── "find", "search", "email from"? → WORKFLOW 3: Search
├── "reply", "respond", "follow up"? → WORKFLOW 4: Reply
├── "organize", "move", "label", "archive"? → WORKFLOW 5: Organize
└── Unclear? → Ask: "Would you like to send an email, check inbox, or search for something?"
WORKFLOW 1: Compose & Send
Tool sequence:
send_email(to, subject, body, cc, bcc, reply_to)
Email quality rules:
- Clear subject line (action + context in < 60 chars)
- Opening: state purpose in first sentence
- Body: concise, scannable (bullets for multiple points)
- Closing: clear call-to-action or next step
- Signature: professional, minimal
MUST DO:
- Verify recipient address before sending
- Include clear subject line (never blank)
- State purpose in first sentence
- Include call-to-action if response needed
- Use CC sparingly (only people who need visibility)
MUST NOT DO:
- Don't send without verifying recipient
- Don't send walls of text (keep under 200 words for business emails)
- Don't CC everyone — only relevant parties
- Don't include sensitive data (credentials, PII) in email body
- Don't send angry/emotional emails — draft and review first
WORKFLOW 2: Read Inbox
Tool sequence:
list_inbox(limit: 20, unread_only: true)— get recent unreadget_email(id)— read specific emailget_attachments(id)— check attachments if mentioned
WORKFLOW 3: Search
Tool sequence:
search_emails(query: "from:sender subject:topic after:date")get_email(id)— read full message
WORKFLOW 4: Reply
Tool sequence:
get_email(id)— read the original messagereply_to_email(id, body)— reply in thread
WORKFLOW 5: Organize
Tool sequence:
list_labels— see available foldersmove_to_folder(email_id, folder)— organizemark_read(email_id)— mark as read
Cross-MCP: Email as the Delivery Layer
Email is the universal delivery mechanism for other skills:
- Finance:
send_emaildelivers invoices with payment links - CRM:
send_emailsends follow-ups after calls - ITSM:
send_emailnotifies users of ticket resolution - Customer Service:
send_emailsends proactive outreach
Troubleshooting
Delivery failed: Check recipient address validity. Review bounce message. Verify sending domain DNS (SPF/DKIM/DMARC).
Email not found: Broaden search terms. Check spam/trash folders. Verify date range.
What ships with it: 8 files
10.7 KB alongside SKILL.md, 1 of them executable
assets/
- email-templates.md707 B
references/
- cross-mcp-workflows.md1.1 KB
- examples.md1.1 KB
- tool-sequences.md949 B
scripts/
- classify_priority.pyruns1.0 KB
- .gitignore29 B
- LICENSE738 B
- README.md5.1 KB