$npx -y skills add AgriciDaniel/claude-email --skill emailComprehensive email management and marketing for any business type. Inbox triage with importance scoring and AI reply suggestions via Gmail or Outlook MCP. Email composition using proven copy frameworks (PAS, AIDA, BAB, FAB). Pre-send quality review scoring subject lines, copy, H
| 1 | # Email -- Universal Email Management & Marketing Skill |
| 2 | |
| 3 | Comprehensive email management across all business types (local services, |
| 4 | SaaS, e-commerce, creators, agencies). Orchestrates 6 specialized sub-skills |
| 5 | and 4 subagents. |
| 6 | |
| 7 | ## Quick Reference |
| 8 | |
| 9 | | Command | What it does | |
| 10 | |---------|-------------| |
| 11 | | `/email` | Interactive mode: detect context, show inbox summary or menu | |
| 12 | | `/email check` | Inbox triage: scan, score importance, categorize, suggest replies | |
| 13 | | `/email write` | Compose email: choose framework, generate subject + body + HTML | |
| 14 | | `/email review <email>` | Pre-send quality check: score subject, copy, HTML, compliance | |
| 15 | | `/email audit <domain>` | Deliverability audit: SPF/DKIM/DMARC, blacklists, compliance | |
| 16 | | `/email sequence <type>` | Design automation: welcome, nurture, win-back, cart, custom | |
| 17 | | `/email plan <business>` | Email marketing strategy with industry template | |
| 18 | |
| 19 | ## Orchestration Logic |
| 20 | |
| 21 | ### Interactive Mode (`/email`) |
| 22 | |
| 23 | When invoked without arguments: |
| 24 | 1. Check for `email-profile.md` in project root |
| 25 | 2. If missing, run first-time onboarding (see User Profile System below) |
| 26 | 3. If profile exists, detect available MCP servers (Gmail, Outlook, SendGrid) |
| 27 | 4. Show interactive menu with inbox summary if email MCP is available |
| 28 | |
| 29 | ### Command Routing |
| 30 | |
| 31 | For specific commands, load the relevant sub-skill directly: |
| 32 | - `/email check` -> `skills/email-check/SKILL.md` |
| 33 | - `/email write` -> `skills/email-write/SKILL.md` |
| 34 | - `/email review` -> `skills/email-review/SKILL.md` |
| 35 | - `/email audit` -> `skills/email-audit/SKILL.md` |
| 36 | - `/email sequence` -> `skills/email-sequence/SKILL.md` |
| 37 | - `/email plan` -> `skills/email-plan/SKILL.md` |
| 38 | |
| 39 | ### Audit Delegation |
| 40 | |
| 41 | When the user invokes `/email audit`, delegate to subagents in parallel: |
| 42 | 1. Run `scripts/check_deliverability.py` for DNS-based checks |
| 43 | 2. Spawn subagents: email-deliverability, email-compliance |
| 44 | 3. Collect results and generate unified Email Health Score (0-100) |
| 45 | 4. Create prioritized fix list (Critical -> High -> Medium -> Low) |
| 46 | |
| 47 | ## User Profile System |
| 48 | |
| 49 | On first run, generate `email-profile.md` in the project root: |
| 50 | |
| 51 | 1. Detect existing MCP configurations: |
| 52 | - Check for Gmail MCP tools (search_gmail_messages, send_gmail_message) |
| 53 | - Check for Outlook MCP tools (list-mail-messages, send-mail) |
| 54 | - Check for marketing MCPs (SendGrid, Mailchimp, Kit.com) |
| 55 | 2. Ask 4 setup questions: |
| 56 | - **Business type**: local business, SaaS, ecommerce, creator, agency, personal |
| 57 | - **Primary email platform**: Gmail, Outlook, other |
| 58 | - **Compliance regions**: US only, EU/GDPR, both |
| 59 | - **Brand voice**: professional, friendly, casual, authoritative |
| 60 | 3. Generate `email-profile.md` with these settings |
| 61 | 4. All sub-skills reference this profile to adapt recommendations |
| 62 | |
| 63 | ### Profile-Driven Behavior |
| 64 | |
| 65 | | Business Type | Emphasis | |
| 66 | |---------------|----------| |
| 67 | | Local business | Review requests, appointment reminders, loyalty, seasonal promos | |
| 68 | | SaaS | Onboarding sequences, feature announcements, churn prevention, NPS | |
| 69 | | Ecommerce | Abandoned cart, post-purchase, promotional, cross-sell/upsell | |
| 70 | | Creator | Newsletter, community engagement, monetization, content teasers | |
| 71 | | Agency | Client communication, project updates, case studies, proposals | |
| 72 | | Personal | Inbox management, reply drafts, organization | |
| 73 | |
| 74 | ## Quality Gates |
| 75 | |
| 76 | Hard rules enforced across all sub-skills: |
| 77 | - Subject lines: 6-10 words / 30-50 characters |
| 78 | - Spam complaint rate must stay under 0.1% (hard limit: 0.3%) |
| 79 | - Bounce rate must stay under 2% (ideal: under 1%) |
| 80 | - HTML email total size under 102 KB (Gmail clips larger emails) |
| 81 | - Image-to-text ratio: minimum 60% text / 40% images |
| 82 | - Every marketing email must include unsubscribe mechanism |
| 83 | - Every marketing email must include physical postal address (CAN-SPAM) |
| 84 | - One-click unsubscribe headers required (RFC 8058) for bulk senders |
| 85 | - Honor unsubscribe requests within 2 business days |
| 86 | - Never send more than 20 emails per session |