From daily-email-brief
Summarize Gmail inbox from the last 24 hours in Korean, grouped into important/reference/noise buckets. Triggers on "오늘 메일 요약", "이메일 요약해줘", "받은편지함 정리", "오늘 메일 중요한거", "daily email summary", "inbox brief", or similar daily inbox digest requests. Handles a primary Gmail plus auto-forwarded or POP3-synced secondary accounts in the same inbox.
How this skill is triggered — by the user, by Claude, or both
Slash command
/daily-email-brief:daily-email-briefThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce a concise Korean-language summary of the user's Gmail inbox for the last 24 hours. Group messages into three buckets (중요 / 참고 / 노이즈) and deliver a tight, scannable digest.
Produce a concise Korean-language summary of the user's Gmail inbox for the last 24 hours. Group messages into three buckets (중요 / 참고 / 노이즈) and deliver a tight, scannable digest.
Activate for any request like:
Also activate automatically when invoked as a scheduled task.
The user must have a Gmail connector installed that exposes these tools:
search_threads — list threads with a Gmail queryget_thread — fetch full thread contentIf Gmail tools are not available, tell the user to connect a Gmail connector first and stop.
Call search_threads with:
query: newer_than:1dpageSize: 50If the user asks for a different window (예: "지난 3일", "이번 주"), translate to Gmail's newer_than:Nd syntax. Default is 1 day.
For each message, read sender, subject, snippet, date, toRecipients and sort into one of three buckets:
🔴 중요 / 액션 필요
🟡 참고 (확인 권장)
🗑️ 노이즈 (제외)
[AD], 광고, 프로모션, Sale, DealNoise is not summarized. Only the count is shown.
If a 🔴 important email's snippet is too thin to extract the core action, call get_thread with messageFormat: "FULL_CONTENT" and distill the body into 1–2 sentences.
For 🟡 reference emails, the snippet alone is enough — one-line summary only.
Use this Markdown shape exactly. Times are in KST (UTC+9); convert from the API's UTC timestamps.
## 📬 [YYYY-MM-DD] 이메일 요약 ([실행 시간])
총 N건 (중요 X / 참고 Y / 노이즈 Z)
### 🔴 중요/액션 필요 (X건)
- **[보낸이]** — [제목]: [핵심 내용 한두 문장]. _([HH:MM])_
...
### 🟡 참고 (Y건)
- **[보낸이]** — [제목] _([HH:MM])_
...
### 🗑️ 노이즈 Z건 (광고·자동 알림 등) — 생략
---
💡 [있을 때만] 오늘 특별히 챙겨야 할 일: ...
최근 24시간 내 새 메일이 없습니다. — nothing else.**bold**, 제목은 평문💡 박스에 "오늘/내일까지 해야 할 일"로 한 번 더 강조This skill is designed to work both interactively and as an automated scheduled task (예: 매일 오전 8시 자동 실행). When run on a schedule, the user is not present — make reasonable defaults, never ask clarifying questions, and just produce the digest.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub gosorasora/daily-email-brief-marketplace --plugin daily-email-brief