skills/apple-mail/mail-search/SKILL.md
Search Apple Mail across all synced accounts by keyword, subject, sender, or any combination. Use when user asks to find an email, search for a message, or look for something in their mail. Arguments: search terms, optionally with sender:, subject:, from:, account: prefixes, and time filters like "last 30 days" or "this year".
npx skillsauth add aashari/ai-agent-skills mail-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search query: $ARGUMENTS
Parse $ARGUMENTS for modifiers:
from:[email protected] or sender: → filter by sendersubject:keyword → filter subject onlyaccount:gmail or account:work → restrict to account typelast N days/weeks → time filterDB="$HOME/Library/Mail/V10/MailData/Envelope Index"
TERM="<extracted search term>" # URL-encode % as %% in shell
sqlite3 "$DB" "
SELECT datetime(m.date_received,'unixepoch','localtime') as dt,
s.subject, a.address as sender, a.comment as name,
mb.url as mailbox, m.ROWID, m.read,
CASE WHEN m.size > 0 THEN m.size ELSE 0 END as size
FROM messages m
JOIN subjects s ON m.subject = s.ROWID
JOIN addresses a ON m.sender = a.ROWID
JOIN mailboxes mb ON m.mailbox = mb.ROWID
WHERE m.deleted = 0
AND mb.url NOT LIKE '%Spam%'
AND mb.url NOT LIKE '%Trash%'
AND mb.url NOT LIKE '%Junk%'
AND (
s.subject LIKE '%TERM%'
OR a.address LIKE '%TERM%'
OR a.comment LIKE '%TERM%'
)
ORDER BY m.date_received DESC
LIMIT 50;" 2>/dev/null
For sender-only search:
WHERE a.address LIKE '%TERM%' OR a.comment LIKE '%TERM%'
For subject-only search:
WHERE s.subject LIKE '%TERM%'
For recipient search (TO/CC):
JOIN recipients r ON r.message = m.ROWID
JOIN addresses ra ON r.address = ra.ROWID
WHERE ra.address LIKE '%TERM%'
If user wants to read specific results, find the emlx and parse:
python3 ~/.claude/skills/_mail-shared/parser.py <ROWID>
Show results as a table: | Date | From | Subject | Account | Read | |---|---|---|---|---|
If more than 20 results, summarize by sender/thread and ask if they want to narrow down. For each result, note the account it belongs to (extract UUID from mailbox URL to identify account). Offer to read any specific email if user asks.
data-ai
Show work emails only, filtered to Exchange/EWS accounts and corporate email domains. Digest with priorities. Use when user asks about work email, work inbox, or wants to separate work from personal mail. Arguments: optional date range or "today", "yesterday", "this week".
testing
Intelligent inbox triage — surface the most important emails across all accounts, prioritized by urgency and requiring attention. Use when user wants a smart overview of what needs their attention, asks "what's important in my email", or wants help deciding what to read first. Arguments: optional time window (default: last 48 hours) or account filter.
data-ai
Find flight bookings, hotel reservations, travel itineraries, and booking confirmations from email. Use when user asks about upcoming trips, travel plans, booking references, flight details, or hotel reservations. Arguments: optional destination, airline, date range, or booking service.
testing
Show who sends the most email, communication frequency analysis, and relationship mapping. Use when user asks who emails them most, top contacts, communication patterns, or wants to understand their email social graph. Arguments: optional time range (default: last 90 days), account filter, or "humans only" to exclude automated senders.