Our review
Scans Apple Mail inbox for unread, actionable, and priority messages within a specified time range.
Strengths
- Works directly with Apple Mail via AppleScript
- Detects actionable keywords in email subjects
- Provides structured summary and sorted lists
- Privacy-friendly: only reads metadata, not body content
Limitations
- Requires Apple Mail on macOS
- Cannot read email body (no deep contextual classification)
- Depends on automation permissions being granted
When you need a quick overview of important or urgent emails in the last 24 to 72 hours.
If you use a different email client or need to analyze email content.
Security analysis
SafeThe skill runs a local AppleScript to read email metadata; no network or destructive commands are used. Shell injection is unlikely as the hours parameter is expected to be numeric and the AI constructs the command string directly.
No concerns found
Examples
Check my email from todayAny urgent emails?Show me unread emails from the past 48 hoursname: scan-inbox description: Scan Apple Mail inbox for unread, actionable, and priority messages. Use this when the user asks to check their email, see unread messages, find urgent emails, or triage their inbox. Returns categorized email counts and details from the last 24-48 hours. allowed-tools: Bash
Scan Inbox
Analyzes your Apple Mail inbox to identify unread, actionable, and priority messages within a specified time range.
When to Use This Skill
Activate this skill when the user asks questions like:
- "Check my email"
- "What unread emails do I have?"
- "Any urgent emails?"
- "Show me actionable items from my inbox"
- "Triage my email from today"
What This Skill Does
- Scans all inbox accounts in Apple Mail
- Filters messages by time range (default: last 24 hours)
- Identifies unread messages
- Detects actionable keywords (deadline, urgent, action required, meeting, request, etc.)
- Identifies priority/flagged messages
- Returns structured data with counts and message details
Instructions
Step 1: Determine Time Range
Ask the user if they want a specific time range, or use these defaults:
- "Today" or "recent" → 24 hours
- "This week" or "recent days" → 48-72 hours
- Specific request → Honor their time range
Step 2: Execute the Scan
Run the AppleScript skill using the Bash tool:
```bash osascript .claude/skills/scan-inbox/scripts/scan_inbox.scpt <hours> false ```
Parameters:
<hours>: Number of hours to look back (e.g., 24, 48, 72)false: Set totruefor priority-only mode
Step 3: Parse Results
The script returns:
success: boolean (true/false)unreadCount: Total unread messagesactionableCount: Messages with actionable keywordspriorityCount: Flagged/priority messagesunreadList: Array of unread message details (sender, subject, date, flagged status)actionableList: Array of actionable messagespriorityList: Array of priority messages
Step 4: Present Results to User
Format the output in a clear, actionable way:
Example Response: ``` 📬 Inbox Summary (Last 24 Hours)
📊 Overview:
- 38 unread messages
- 0 actionable items
- 0 priority/flagged
📧 Recent Unread:
- Google - Security alert
- C# Digest - Newsletter
- BAC Credomatic - Transaction notification ... (showing top 5-10)
💡 Next Steps:
- No urgent items requiring immediate attention
- Review newsletters when you have time ```
Step 5: Offer Follow-up Actions
Ask if the user wants to:
- See more details about specific emails
- Flag or organize certain messages
- Extract tasks from actionable emails
- Check a different time range
Actionable Keywords Detected
The skill identifies these keywords in email subjects:
- deadline
- urgent
- action required
- meeting
- request
- please review
- asap
- todo
- action item
Error Handling
If the script fails:
- Check Mail automation permissions: System Settings → Privacy & Security → Automation → Terminal/Claude
- Verify Apple Mail is running
- Try with a smaller time range if timeout occurs
Example Usage
User: "Check my email from today"
Claude Response: ```bash osascript .claude/skills/scan-inbox/scripts/scan_inbox.scpt 24 false ```
Then format and present the results to the user.
Supporting Files
For advanced usage and detailed documentation, see reference.md.
For examples of common use cases, see examples.md.
Performance
- Typical execution: ~2 seconds
- Max timeout: 30 seconds
- Works with multiple Mail accounts
Privacy Note
This skill only reads mail metadata (sender, subject, date, flags). It does not access email body content to protect privacy.
Task Prioritizer
Productivity
Prioritizes your tasks using Eisenhower, ICE, and RICE frameworks.
Weekly Status Report Generator
Productivity
Generate structured and concise weekly status reports.
Daily Standup Report
Productivity
Generates structured and concise daily standup reports.