skills/apple-mail/mail-banking/SKILL.md
Show bank notifications, transaction alerts, and account activity from email. Use when user asks about bank emails, account notifications, transfer confirmations, or banking activity. Arguments: optional bank name, time range, or transaction type like "transfers", "payments", "top-ups".
npx skillsauth add aashari/ai-agent-skills mail-bankingInstall 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.
Filter: $ARGUMENTS (default: last 7 days, all banks)
DB="$HOME/Library/Mail/V10/MailData/Envelope Index"
SINCE=$(($(date +%s) - 604800)) # 7 days
sqlite3 "$DB" "
SELECT datetime(m.date_received,'unixepoch','localtime') as dt,
s.subject, a.address as sender,
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.date_received >= ${SINCE}
AND m.deleted = 0
AND mb.url NOT LIKE '%Spam%' AND mb.url NOT LIKE '%Trash%'
AND (
-- By sender domain
a.address LIKE '%bank%'
OR a.address LIKE '%livin%'
OR a.address LIKE '%bca%'
OR a.address LIKE '%bri%'
OR a.address LIKE '%bni%'
OR a.address LIKE '%mandiri%'
OR a.address LIKE '%seabank%'
OR a.address LIKE '%sinarmas%'
OR a.address LIKE '%wise%'
OR a.address LIKE '%revolut%'
OR a.address LIKE '%n26%'
OR a.address LIKE '%chase%'
OR a.address LIKE '%paypal%'
-- By subject
OR s.subject LIKE '%transfer%'
OR s.subject LIKE '%transaction%'
OR s.subject LIKE '%top-up%'
OR s.subject LIKE '%top up%'
OR s.subject LIKE '%payment successful%'
OR s.subject LIKE '%debit%'
OR s.subject LIKE '%credit%'
OR s.subject LIKE '%transfer successful%'
OR s.subject LIKE '%BI Fast%'
OR s.subject LIKE '%RTGS%'
OR s.subject LIKE '%QRIS%'
)
ORDER BY m.date_received DESC;" 2>/dev/null
If user specifies "mandiri", "BCA", "BRI", etc., add:
AND (a.address LIKE '%mandiri%' OR s.subject LIKE '%mandiri%')
python3 ~/.claude/skills/_mail-shared/parser.py <ROWID1> <ROWID2> ...
Extract from body:
Group: Transfers out | Payments | Top-ups | Incoming | Credit card payments
Banking Activity — [PERIOD]
Table per transaction type: | Time | Type | Amount | To/From | Ref No. | |---|---|---|---|---|
Total outflow, total inflow, net. Flag any unusually large single transactions. Note any failed or pending transactions if subject indicates.
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.