skills/apple-mail/mail-travel/SKILL.md
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.
npx skillsauth add aashari/ai-agent-skills mail-travelInstall 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: $ARGUMENTS (default: recent and upcoming travel)
DB="$HOME/Library/Mail/V10/MailData/Envelope Index"
sqlite3 "$DB" "
SELECT datetime(m.date_received,'unixepoch','localtime') as dt,
s.subject, a.address as sender, a.comment as name,
mb.url, m.ROWID
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 (
-- Travel booking senders
a.address LIKE '%agoda%'
OR a.address LIKE '%booking.com%'
OR a.address LIKE '%airbnb%'
OR a.address LIKE '%travelio%'
OR a.address LIKE '%tiket%'
OR a.address LIKE '%traveloka%'
OR a.address LIKE '%expedia%'
OR a.address LIKE '%hotels.com%'
OR a.address LIKE '%airasia%'
OR a.address LIKE '%garuda%'
OR a.address LIKE '%lionair%'
OR a.address LIKE '%batik%'
OR a.address LIKE '%citilink%'
OR a.address LIKE '%singaporeair%'
OR a.address LIKE '%united%'
OR a.address LIKE '%delta%'
OR a.address LIKE '%emirates%'
OR a.address LIKE '%gojek%'
OR a.address LIKE '%grab%'
-- By subject
OR s.subject LIKE '%flight%'
OR s.subject LIKE '%hotel%'
OR s.subject LIKE '%booking%'
OR s.subject LIKE '%reservation%'
OR s.subject LIKE '%itinerary%'
OR s.subject LIKE '%check-in%'
OR s.subject LIKE '%boarding%'
OR s.subject LIKE '%e-ticket%'
OR s.subject LIKE '%confirmation%'
OR s.subject LIKE '%your trip%'
OR s.subject LIKE '%upcoming trip%'
OR s.subject LIKE '%airport%'
)
ORDER BY m.date_received DESC
LIMIT 100;" 2>/dev/null
If $ARGUMENTS contains a destination or date, add LIKE filters on subject.
python3 ~/.claude/skills/_mail-shared/parser.py <ROWID1> <ROWID2> ...
From bodies extract:
Sort by travel date (not email received date) to create a chronological itinerary.
Group by trip (cluster bookings by date proximity):
Trip: [Destination] — [Date Range]
Also note:
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.
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.
testing
Read and summarize a complete email thread or conversation. Show all messages in order, who said what, and what was decided. Use when user wants to read a specific email thread, catch up on a conversation, or understand what happened in an email chain. Arguments: subject line keywords, ROWID of any message in the thread, sender name, or conversation topic.