email-assistant

email-assistant is a skill for Claude Code, Codex from radif-ru/ai-multi-agent-system. It costs 61 tokens per session (990 once invoked), scanned A, original, MIT.

A read-only assistant for reviewing incoming Yandex or Gmail messages from a chat.

In plain words
What is it for?
Use it to list messages, read selected messages by their identifier, classify them, and produce a structured report. It can also read supported email attachments, but cannot send, delete, or modify mail.
Why use it?
It gathers messages and their contents in one place, making it easier to find unread or important mail without opening each message manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list messages, read selected messages by their identifier, classify them, and produce a structured report. It can also read supported email attachments, but cannot send, delete, or modify mail.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/radif-ru/ai-multi-agent-system/email-assistant
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 radif-ru/ai-multi-agent-system --skill email-assistant
Clone the repo
git clone --depth 1 https://github.com/radif-ru/ai-multi-agent-system

Made for: Claude Code, Codex.

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-assistant

README.md
[![agentmods](https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/email-assistant/github.svg)](https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/email-assistant)
Your own site
<a href="https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/email-assistant"><img src="https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/email-assistant/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-assistant

Your own site · 80×15
<a href="https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/email-assistant"><img src="https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/email-assistant.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 990 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.00061 $0.00990
Opus 5 $0.00030 $0.00495
Sonnet 5 $0.00012 $0.00198
Haiku 4.5 $0.00006 $0.00099

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

Security

Grade A, and why

email-assistant 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 10d 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.

app/skills/email-assistant/SKILL.md · 67 lines

How it starts

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

Skill: email-assistant

Помогает разобрать входящую почту прямо из чата: получить список писем, прочитать нужные и выдать структурированный отчёт с рекомендациями.

Когда использовать

  • «Какие письма мне приходили?»
  • «Разбери мою почту», «что нового на почте».
  • «Есть ли непрочитанные письма?», «покажи важное».
  • Пользователь просит краткую сводку или помощь с приоритизацией входящих.

Когда не использовать

  • Отправка, ответ, удаление, пометка писем — не поддерживаются (read-only).
  • Вопросы не про почту → обычный ответ или профильный скилл.

Инструменты

  • email_list (args: provider = yandex|gmail|all, unread_only, limit) → массив {uid, provider, from, subject, date, unread}.
  • email_read (args: provider, uid) → заголовки, тело письма и attachments — список {filename, file_id, content_type, size}.
  • read_document (args: file_id) — если в письме есть вложения (PDF, изображения, документы), прочитай их содержимое через read_document с file_id из attachments.

Важно: для работы с почтой используй ТОЛЬКО email_list, email_read и read_document (для вложений). Не вызывай disk_download или другие tools — они не нужны для чтения почты.

Алгоритм

  1. Уточни провайдера, если пользователь не назвал: по умолчанию all.
  2. Вызови email_list с разумным limit (не больше MAIL_MAX_MESSAGES); при unread_only=true, если просят только непрочитанные.
  3. Прочитай письма по uid через email_read — только те, что нужны для ответа (не весь ящик подряд).
  4. Если в письме есть attachments — прочитай вложения через read_document с file_id из каждого attachment (PDF, изображения, документы). Опиши содержимое вложений в отчёте.
  5. Классифицируй каждое письмо: важное / требует ответа / рассылки-спам.
  6. Собери отчёт: отправитель, тема, дата, суть (1–2 предложения), рекомендация, описание вложений (если есть).
  7. Верни отчёт как final_answer. Не пытайся сохранить результат через disk_download или другие tools.

Read the full file on GitHub · 67 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. 10d ago First seen · 67 lines · 61 tokens per session scan A 0e52ed9ffa0a

Subscribe to this mod's changes

email-assistant is a skill published in the GitHub repository radif-ru/ai-multi-agent-system (6 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 990 once invoked, about $0.0003 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-31.