email-management-expert

email-management-expert is a skill for Claude Code from patrickfreyer/apple-mail-mcp. It costs 61 tokens per session (3,789 once invoked), scanned A, original, MIT.

A set of workflows for managing Apple Mail, including reviewing, searching, sorting, and organizing email.

In plain words
What is it for?
Email triage, inbox organization, finding messages and threads, managing newsletters, and improving an inbox workflow.
Why use it?
It provides a staged approach to understanding the inbox, working in batches, and checking safety limits before actions that could remove or move messages.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the apple-mail plugin — 1 skill shipped together

Good fit Email triage, inbox organization, finding messages and threads, managing newsletters, and improving an inbox workflow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/patrickfreyer/apple-mail-mcp/email-management
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add patrickfreyer/apple-mail-mcp --skill email-management
Clone the repo
git clone --depth 1 https://github.com/patrickfreyer/apple-mail-mcp

Made for: Claude Code.

Or install apple-mail, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for email-management-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/patrickfreyer/apple-mail-mcp/email-management/github.svg)](https://agentmods.dev/skills/patrickfreyer/apple-mail-mcp/email-management)
Your own site
<a href="https://agentmods.dev/skills/patrickfreyer/apple-mail-mcp/email-management"><img src="https://agentmods.dev/badge/skills/patrickfreyer/apple-mail-mcp/email-management/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for email-management-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/patrickfreyer/apple-mail-mcp/email-management"><img src="https://agentmods.dev/badge/skills/patrickfreyer/apple-mail-mcp/email-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,789 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.03789
Opus 5 $0.00030 $0.01895
Sonnet 5 $0.00012 $0.00758
Haiku 4.5 $0.00006 $0.00379

Measured 9d ago against content hash f952ed7789a6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

email-management-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/email-management/SKILL.md · 346 lines

How it starts

The opening of the file, as written. The whole thing — 346 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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, search_by_sender, search_all_accounts, search_email_content, get_newsletters
  • Composing & Responding: compose_email, reply_to_email, forward_email, create_rich_email_draft
  • 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")
    • For rich newsletters, status updates, or HTML-heavy drafts: create_rich_email_draft()
  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

Read the full file on GitHub · 346 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 346 lines · 61 tokens per session scan A f952ed7789a6

Subscribe to this mod's changes

email-management-expert is a skill published in the GitHub repository patrickfreyer/apple-mail-mcp (202 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 3,789 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

confirmation-protocol

Foresay-derived confirmation workflow for email operations. Use this skill BEFORE executing archive-mail with vague filters, composeemail (sending mail), deleteemail/moveemail in bulk, or any operation that touches 5+ emails. Show user a structured preview of "what I understood" before taking action, achieving…

PsychQuant/che-apple-mail-mcp · 88 tokens

bulk-operation-preview

Show structured preview of bulk email operations (5+ emails) before execute. Group by thread, flag false-positive candidates, count side-effect scope (files written, attachments downloaded, mailboxes touched). Use after email-search-disambiguation finishes Phase 1, as Phase 2 of the confirmation protocol.

PsychQuant/che-apple-mail-mcp · 64 tokens

email-search-disambiguation

A clarification step for email searches when a person, time period, direction, or scope is unclear. It presents specific possible meanings so the user can choose one.

PsychQuant/che-apple-mail-mcp · 91 tokens

apple-mail

Use this skill when the user wants to manage Apple Mail on macOS - reading, searching, sending, replying to, forwarding, and organizing emails and mailboxes. This skill provides access to Apple Mail through MCP tools.

sweetrb/apple-mail-mcp · 47 tokens

c-email

Read, send, search, and label email via gog (Gmail CLI) or himalaya (IMAP). Supports inbox management, drafting replies, thread viewing, and label/folder operations across Gmail and standard IMAP accounts.

daxaur/openpaw · 49 tokens

tracked-todo-working-memory

Complete guide for GAIA tracked todos — philosophy, two modes (immediate/long-running), canvas activity logging, scheduling/recurrence, and institutional memory.

theexperiencecompany/gaia · 38 tokens