skills/apple-mail/mail-security/SKILL.md
Find security-related emails — login alerts, 2FA changes, password resets, new device notifications, suspicious activity, and account security events across all accounts. Use when user asks about security alerts in their email, account access notifications, or wants to review security events. Arguments: optional time range or account/service filter.
npx skillsauth add aashari/ai-agent-skills mail-securityInstall 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.
Scanning: $ARGUMENTS (default: last 30 days)
DB="$HOME/Library/Mail/V10/MailData/Envelope Index"
SINCE=$(($(date +%s) - 2592000)) # 30 days
sqlite3 "$DB" "
SELECT datetime(m.date_received,'unixepoch','localtime') as dt,
s.subject, a.address as sender,
mb.url as mailbox, m.ROWID, m.read
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.date_received >= ${SINCE}
AND m.deleted = 0
AND mb.url NOT LIKE '%Spam%' AND mb.url NOT LIKE '%Trash%'
AND (
s.subject LIKE '%security alert%'
OR s.subject LIKE '%sign-in%'
OR s.subject LIKE '%sign in%'
OR s.subject LIKE '%new sign%'
OR s.subject LIKE '%login%'
OR s.subject LIKE '%new device%'
OR s.subject LIKE '%new login%'
OR s.subject LIKE '%access from%'
OR s.subject LIKE '%password%'
OR s.subject LIKE '%two-factor%'
OR s.subject LIKE '%two factor%'
OR s.subject LIKE '%2FA%'
OR s.subject LIKE '%2-step%'
OR s.subject LIKE '%authenticator%'
OR s.subject LIKE '%verification code%'
OR s.subject LIKE '%suspicious%'
OR s.subject LIKE '%unusual activity%'
OR s.subject LIKE '%unauthorized%'
OR s.subject LIKE '%account compromised%'
OR s.subject LIKE '%verify your%'
OR s.subject LIKE '%confirm your%'
OR s.subject LIKE '%account locked%'
OR s.subject LIKE '%reset your password%'
OR s.subject LIKE '%forgot password%'
OR s.subject LIKE '%recovery%'
-- Senders
OR a.address LIKE '%security@%'
OR a.address LIKE '%accounts.google%'
OR a.address LIKE '%account-security%'
OR a.address LIKE '%noreply@%stripe%'
OR a.address LIKE '%auth@%'
)
ORDER BY m.date_received DESC;" 2>/dev/null
python3 ~/.claude/skills/_mail-shared/parser.py <ROWID1> <ROWID2> ...
Extract from body:
Raise concern if:
Security Events — [PERIOD]
Group by type:
For each event: Service | Event | Location/Device | Date | Status (read/unread)
Flag: any unread security alerts (you may not have seen them). Flag: any events from unexpected locations. Note: total count by account/service.
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.