From cowork-starter-pack
Processes a batch of emails — categorizes them, drafts responses where appropriate, and tells the user which ones need a human decision. Use when the user asks to triage the inbox, clear email, batch-process email, or prep email responses. Best run once or twice a day, not continuously.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cowork-starter-pack:inbox-triageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Turn a full inbox into three stacks: handled, drafts-for-your-review, and flagged-for-a-decision. Don't send anything without explicit approval.
Turn a full inbox into three stacks: handled, drafts-for-your-review, and flagged-for-a-decision. Don't send anything without explicit approval.
context/about-me.md — who is the user, who are their priority contactscontext/voice.md — any draft reply must sound like themcontext/preferences.md — their rules on what to auto-reply vs. escalatememory.md if it exists — prior corrections to triage logicA markdown file saved to /output/inbox-triage-{YYYY-MM-DD-HHmm}.md with four sections:
Do not actually send, archive, or label anything unless the user has explicitly approved auto-actions in their preferences file.
about-me.md or preferences.mdpreferences.md.# Inbox Triage — 2026-04-18 10:42 AM
## Summary
- 47 emails processed since 2026-04-18 07:00
- 31 archive-worthy (newsletters, receipts, notifications)
- 9 drafted replies for your review
- 7 flagged for your decision
**Look at first:** Sarah Chen's reply about the SOW — she's asking a pricing question I can't answer.
---
## Archived / filed (31, no action needed)
- 12 newsletters
- 8 automated notifications (calendar, Slack digest, GitHub)
- 6 CC'd threads where you weren't the primary recipient
- 5 receipts / order confirmations
## Drafted replies for your review (9)
### 1. Morgan — "Tuesday 1:1 — reschedule?"
Context: Morgan needs to move the 1:1 from 9am to 11am Tuesday
Draft reply:
> Morgan — 11am works. Same agenda. See you then.
### 2. Conference organizer — "Confirming your speaker slot"
Context: Routine confirmation for a talk you already agreed to
Draft reply:
> Confirmed. I'll send the slide deck by 2026-04-26 as requested. Let me know if the tech check window changes.
[...7 more...]
## Flagged for your decision (7)
### 1. Sarah Chen (Northwind) — "Quick question on pricing"
Context: Sarah is asking for a 15% discount in exchange for a multi-year commitment. This is a pricing decision I can't make for you.
Decision needed: accept / counter / decline with alternative
### 2. Taylor (vendor) — "Contract renewal — new terms attached"
Context: New contract has a 12% price increase and changed liability terms.
Decision needed: review and send back, or route to legal
[...5 more...]
memory.md. The next run will be better. This skill improves fast with correction.npx claudepluginhub thecraighewitt/cowork-starter-pack --plugin cowork-starter-packGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.