email-check

email-check is a skill for Claude Code from AgriciDaniel/claude-email. It costs 109 tokens per session (2,351 once invoked), scanned A, original, MIT.

An inbox-triage tool that connects to Gmail or Outlook, reviews unread messages, and sorts them by importance. It considers factors such as the sender, urgency, thread length, timing, and business relevance.

In plain words
What is it for?
Use it to review up to 25 unread emails, label them as Urgent, Important, Routine, or Archive, and draft reply suggestions for the highest-priority messages.
Why use it?
It reduces the need to inspect every unread email manually and separates urgent work from routine or archive-worthy messages.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the claude-email plugin — 7 skills, 4 agents shipped together

Good fit Use it to review up to 25 unread emails, label them as Urgent, Important, Routine, or Archive, and draft reply suggestions for the highest-priority messages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agricidaniel/claude-email/email-check
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AgriciDaniel/claude-email --skill email-check
Clone the repo
git clone --depth 1 https://github.com/AgriciDaniel/claude-email

Made for: Claude Code.

Or install claude-email, the plugin that ships this one along with the rest of its 7 skills, 4 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for email-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/agricidaniel/claude-email/email-check/github.svg)](https://agentmods.dev/skills/agricidaniel/claude-email/email-check)
Your own site
<a href="https://agentmods.dev/skills/agricidaniel/claude-email/email-check"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-email/email-check/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for email-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/agricidaniel/claude-email/email-check"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-email/email-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,351 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00109 $0.02351
Opus 5 $0.00055 $0.01175
Sonnet 5 $0.00022 $0.00470
Haiku 4.5 $0.00011 $0.00235

Measured 9d ago against content hash f9daa47d760d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

email-check scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/email-check/SKILL.md · 311 lines

How it starts

The opening of the file, as written. The whole thing — 311 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Email Check Sub-Skill

Purpose

This sub-skill handles intelligent inbox triage by connecting to Gmail or Outlook via MCP, analyzing unread emails, scoring them by importance, categorizing them, and generating reply suggestions for high-priority items.

Workflow

1. Detect Available Email Provider

Check which MCP tools are available:

  • Gmail: search_gmail_messages, get_gmail_messages_content_batch, get_gmail_thread_content, list_gmail_labels
  • Outlook: list-mail-messages, list-mail-folder-messages, get-mail-message

Prefer Gmail if both are available (better batch operations).

2. Fetch Unread Emails

For Gmail:

search_gmail_messages(query="is:unread", max_results=50)

For Outlook:

list-mail-messages (defaults to recent messages, filter for unread)

3. Batch Fetch Email Content

For Gmail:

get_gmail_messages_content_batch(message_ids=[...])  # Up to 25 at a time

If more than 25 unread, prioritize most recent first.

For Outlook:

get-mail-message for each message (sequential)

Limit to 25 emails maximum to avoid overwhelming analysis.

4. Score Each Email (0-100)

Apply the following scoring algorithm:

Base Score: 50
Sender Recognition (+20 to -20)
  • +20: VIP/known contact (domain matches user's company, appears in sent folder frequently)
  • +10: Recognized sender (has prior thread history)
  • 0: Unknown sender with legitimate domain
  • -15: Newsletter/automated sender (bulk email headers, unsubscribe links)
  • -20: Notification sender (no-reply@, noreply@, automated@)
Direct Address (+15 to -10)
  • +15: Primary recipient (To: field)
  • 0: CC'd (CC: field)
  • -10: BCC'd or mass email (many recipients)
Thread Depth (+10)
  • +10: Reply in active thread (Re: subject, multiple messages in thread)
  • 0: New email (no thread history)
Urgency Keywords (+15)

Check subject and first 200 characters for:

  • urgent, ASAP, deadline, action required, immediate, time-sensitive, expiring, expires, due
  • +15 if any urgency keyword found

Read the full file on GitHub · 311 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 311 lines · 109 tokens per session scan A f9daa47d760d

Subscribe to this mod's changes

email-check is a skill published in the GitHub repository AgriciDaniel/claude-email (119 stars, last pushed 3mo ago), licensed MIT. It adds 109 tokens to every session and 2,351 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ads-audit

Run a source-grounded paid-advertising audit for one or more of Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, Apple, Amazon, Reddit, Pinterest, Snapchat, and X. Use for full ad checks, account health reviews, paid-media diagnostics, partial audits after authentication or worker failure, missing-platform…

AgriciDaniel/claude-ads · 91 tokens

ads-google

Audit Google Ads measurement, Search, Shopping, Performance Max, Demand Gen, YouTube-linked inventory, keywords and search terms, negative-keyword generation or review, creative assets, bidding, budgets, settings, and policy. Use for Google Ads, AdWords, Search campaigns, search terms reports, broad negatives…

AgriciDaniel/claude-ads · 88 tokens

ads-amazon

Audit Amazon Ads profiles, regions, Sponsored Products, Sponsored Brands, Sponsored Display, DSP, portfolios, targeting, search terms, retail readiness, creative, budgets, ACOS, TACOS, reporting, and policy. Use for Amazon Ads, sponsored ads, Amazon PPC, ACOS, TACOS, ASIN advertising, Amazon DSP, or retail-media…

AgriciDaniel/claude-ads · 76 tokens

ads-apple

Audit Apple Ads measurement, AdServices and AdAttributionKit, campaign and keyword structure, Search Match, App Store placements, custom product pages, bidding, budgets, MMP reconciliation, and policy. Use for Apple Ads, Apple Search Ads, App Store ads, Search Match, custom product pages, AdServices, or Apple…

AgriciDaniel/claude-ads · 73 tokens

ads-attribution

Audit cross-platform attribution, conversion definitions, reporting windows, GA4, AdServices and AdAttributionKit, MMPs, browser and server events, offline conversions, and platform reconciliation. Use for attribution audit, attribution models, conversion windows, requests to add or total Meta and Google conversions…

AgriciDaniel/claude-ads · 91 tokens

ads-landing

Audit paid-ad landing pages for message match, mobile experience, performance, accessibility, trust, forms, consent, tracking, security, and conversion friction. Use for landing-page audit, post-click experience, LP audit, conversion-rate optimization, form optimization, ad-to-page message match, redirects, blocked…

AgriciDaniel/claude-ads · 81 tokens