Today's Agent Skill: Email Triage Classifier
What It Does
The average office worker spends 28% of their workday on email. This skill classifies incoming messages by urgency and category so you focus on what matters and batch-process the rest.
How It Works
The Email Triage Classifier reads subject lines and message bodies, then assigns each email a priority (urgent, standard, low) and a category (client, internal, vendor, newsletter, spam). It can also draft one-line suggested responses for urgent items, cutting your decision time per message from minutes to seconds.
How to Deploy It
Attach this skill to your email agent or run it manually against your morning inbox dump. For semi-autonomous offices, schedule it as a cron job that processes unread mail every 30 minutes and drops a prioritized digest into your task manager.
SKILL.md — Ready to Deploy
# Email Triage Classifier
## Description
Classify emails by urgency and category, then produce a prioritized digest with suggested next actions.
## Trigger
"triage my inbox", "classify these emails", "what needs attention"
## Input
- List of emails (subject + body text, or API connection to inbox)
## Steps
1. For each email, extract sender, subject, and body
2. Classify priority: urgent (needs response today), standard (this week), low (FYI/archive)
3. Classify category: client, internal, vendor, newsletter, automated/spam
4. For urgent items, draft a one-line suggested response
5. Output a sorted digest — urgent first, grouped by category
## Output Format
```markdown
# Inbox Triage — [Date]
## Urgent (respond today)
- **[Sender]** — [Subject] — Suggested: "[one-line response]"
## Standard (this week)
- **[Sender]** — [Subject] — [Category]
## Low / FYI
- **[Sender]** — [Subject] — [Category]
## Auto-archive candidates
- [Newsletters and automated notifications]
```
## Notes
- Never auto-send responses — always present for human approval
- Flag anything with "invoice", "payment", or "overdue" as urgent regardless of sender
- Client emails always rank above internal at the
Copy the full SKILL.md file and drop it into your agent's skills directory to activate this skill.