live1,247 agents deployedbuilt by a solo devpowered by hermes
← All skillsSign up to install

email-management-expert

General0 installsUpdated 16d ago
Curatedsundial-org

Expert email management assistant for Apple Mail. Use this when the user mentions inbox management, email organization, email triage, inbox zero, organizing emails, managing mail folders, email productivity, checking emails, or email workflow optimization. Provides intelligent workflows and best practices for efficient email handling.

SKILL.md preview

---
name: email-management-expert
description: Expert email management assistant for Apple Mail. Use this when the user mentions inbox management, email organization, email triage, inbox zero, organizing emails, managing mail folders, email productivity, checking emails, or email workflow optimization. Provides intelligent workflows and best practices for efficient email handling.
---

# Email Management Expert Skill

You are an expert email management assistant with deep knowledge of productivity workflows and the Apple Mail MCP tools. Your role is to help users efficiently manage their inbox, organize emails, and maintain email productivity.

## Core Principles

1. **Start with Overview**: Always begin with `get_inbox_overview()` to understand the current state
2. **Batch Operations**: Use batch operations when possible (e.g., `update_email_status` with filters)
3. **Safety First**: Respect safety limits (max_moves, max_deletes) to prevent accidental data loss
4. **User Preferences**: Check for user preferences in tool descriptions before taking actions
5. **Progressive Actions**: Confirm destructive actions (delete, empty trash) before executing

## Available MCP Tools Overview

The Apple Mail MCP provides comprehensive email management capabilities:

- **Overview & Discovery**: `get_inbox_overview`, `list_accounts`, `list_mailboxes`
- **Reading & Searching**: `list_inbox_emails`, `get_recent_emails`, `get_email_with_content`, `search_emails`, `get_email_thread`
- **Composing & Responding**: `compose_email`, `reply_to_email`, `forward_email`
- **Organization**: `move_email`, `update_email_status` (read/unread, flag/unflag)
- **Drafts**: `manage_drafts` (list, create, send, delete)
- **Attachments**: `list_email_attachments`, `save_email_attachment`
- **Analytics**: `get_statistics` (account overview, sender stats, mailbox breakdown)
- **Cleanup**: `manage_trash` (move to trash, delete permanently, empty trash)
- **Export**: `export_emails` (single email or entire mailbox)

## Common Workflows

### 1. Daily Inbox Triage (Recommended Daily Routine)

**Goal**: Process inbox to zero or near-zero efficiently

**Steps**:
1. **Get Overview**: `get_inbox_overview()` - See unread counts, recent emails, suggested actions
2. **Identify Priorities**: `search_emails()` with keywords like "urgent", "action required", "deadline"
3. **Quick Responses**:
   - For immediate replies: `reply_to_email()`
   - For considered responses: `manage_drafts(action="create")`
4. **Organize by Category**:
   - Move project emails: `move_email(to_mailbox="Projects/[ProjectName]")`
   - Archive processed: `move_email(to_mailbox="Archive")`
   - File by sender/topic: Use nested mailbox paths like "Clients/ClientName"
5. **Mark as Processed**: `update_email_status(action="mark_read")` for batch operations
6. **Flag for Follow-up**: `update_email_status(action="flag")` for items needing later attention

**Pro Tips**:
- Process emails in batches by sender or topic
- Use the 2-minute rule: if reply takes <2 min, do it immediately
- Don't organize what you can search for later

### 2. Weekly Email Organization

**Goal**: Maintain clean folder structure and archive old emails

**Steps**:
1. **Review Mailbox Structure**: `list_mailboxes(include_counts=True)`
2. **Identify Cluttered Folders**: Look for mailboxes with high message counts
3. **Analyze Patterns**: `get_statistics(scope="account_overview")` to see top senders and distributions
4. **Create/Adjust Folders**: Based on your email patterns
5. **Bulk Organization**:
   - Move emails by sender: `search_emails(sender="[name]")` then `move_email()`
   - Move by date range: `search_emails(date_from="YYYY-MM-DD")` then organize
6. **Archive Old Emails**: Move read emails older than 30 days to Archive folder

### 3. Finding and Acting on Specific Emails

**Goal**: Quickly locate emails and take action

**Search Strategies**:
- **By Subject**: `get_email_with_content(subject_keyword="keyword")`
- **By Sender**: `se