inbox-review
SolidMorning inbox workflow -- multi-account scan, thread grouping, priority classification, draft replies
AI & Automation 28 stars
12 forks Updated 3 days ago MIT
Install
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Inbox Review
Systematic morning inbox review with email-specific intelligence.
## Multi-Account Handling
Always iterate ALL configured accounts, not just the default:
```
# List accounts first
messages(action="list_accounts")
# Then search each account
messages(action="search", query="UNSEEN", account="work@company.com")
messages(action="search", query="UNSEEN", account="personal@gmail.com")
```
Never assume a single account. Users with EMAIL_CREDENTIALS containing multiple accounts expect all to be checked.
## IMAP Search Syntax
Use proper IMAP search criteria -- these are NOT free-text queries:
| Intent | Correct syntax | Wrong (will fail or return wrong results) |
|---|---|---|
| Unread emails | `UNSEEN` | `unread`, `is:unread` |
| Since a date | `SINCE 2026-03-20` | `after:2026-03-20`, `date>2026-03-20` |
| From a sender | `FROM sender@email.com` | `from:sender`, `sender@email.com` |
| Flagged/starred | `FLAGGED` | `starred`, `is:starred` |
| With subject | `SUBJECT "meeting notes"` | `subject:meeting` |
| Combine criteria | `UNSEEN SINCE 2026-03-20` | `UNSEEN AND SINCE 2026-03-20` (no AND keyword) |
| Unread + from | `UNSEEN FROM boss@co.com` | `UNSEEN AND FROM boss@co.com` |
IMAP criteria are space-separated (implicit AND). There is no explicit AND/OR keyword in basic IMAP search.
## Thread Grouping
Group messages by conversation, not individual emails:
1. Fetch unread messages
2. Group by Subject line (strip `Re:`, `Fwd:` prefixes, normalize whitespace)
...
Details
- Author
- n24q02m
- Repository
- n24q02m/better-email-mcp
- Created
- 5 months ago
- Last Updated
- 3 days ago
- Language
- TypeScript
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
inbox-review
Morning inbox workflow -- multi-account scan, thread grouping, priority classification, draft replies
3 Updated 3 days ago
n24q02m AI & Automation Solid
cowork-inbox-triage
Daily inbox triage using Cowork's email write tools (Microsoft 365 or Gmail) -- classifies unread mail, drafts replies in your voice, flags what needs a decision, and schedules follow-ups. Built to run as a recurring Cowork scheduled task.
229 Updated 1 weeks ago
OneWave-AI AI & Automation Solid
daily-inbox-triage
Sweep inbox (email + Slack + Telegram DMs) and produce a prioritized action list with suggested replies
5 Updated yesterday
Guilhermepelido