General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
114
Review recent emails and extract action items organized by person.
Loading actions...
<a href="https://prompts.chat">
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend linting, type safety, or ESLint configuration.
risks
Review recent emails and extract action items organized by person.
Get recent emails using get_recent_emails tool:
For each email, identify:
Categorize action items by type:
Output format:
## Email Summary
Reviewed X emails from [folder] (last N days)
## Action Items by Person
### [Person Name] <[email protected]>
- [ ] **Reply needed**: [subject] - [brief description of what's needed]
- [ ] **Task**: [subject] - [what to do] (due: [date if mentioned])
### [Person Name 2]
- [ ] **Follow up**: [subject] - [what to check on]
## No Action Required
- [Person]: [subject] - [one-line summary] (FYI only)
## Flagged/Urgent
- [Any emails marked important or with urgent language]
"Check my inbox for the last 3 days and give me action items"
get_recent_emails(folder="Inbox", days=3, limit=50)
If user asks for unread only:
get_recent_emails(folder="Inbox", days=7, unread_only=true, limit=30)
If user asks for flagged:
get_recent_emails(folder="Inbox", days=30, flagged_only=true)