whatsapp-inbox

whatsapp-inbox is a skill for Claude Code from razvangirgiz/wazap. It costs 53 tokens per session (1,061 once invoked), scanned A, original, MIT.

A read-only workflow for reviewing a user's WhatsApp inbox. WhatsApp is a messaging app, and the workflow groups recent or unread chats by how urgently the user needs to respond.

In plain words
What is it for?
Use it to find questions, requests, mentions, decisions, dates, or payments awaiting a reply, while compressing less important chats into a brief summary.
Why use it?
It removes the need to inspect every chat manually and helps find older unanswered requests that may not appear in a recent-message view. It sends no messages and marks nothing as read.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the wazap plugin — 5 skills, 1 MCP server shipped together

Good fit Use it to find questions, requests, mentions, decisions, dates, or payments awaiting a reply, while compressing less important chats into a brief summary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/razvangirgiz/wazap/whatsapp-inbox
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 razvangirgiz/wazap --skill whatsapp-inbox
Clone the repo
git clone --depth 1 https://github.com/razvangirgiz/wazap

Made for: Claude Code.

Or install wazap, the plugin that ships this one along with the rest of its 5 skills, 1 MCP server.

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 whatsapp-inbox

README.md
[![agentmods](https://agentmods.dev/badge/skills/razvangirgiz/wazap/whatsapp-inbox/github.svg)](https://agentmods.dev/skills/razvangirgiz/wazap/whatsapp-inbox)
Your own site
<a href="https://agentmods.dev/skills/razvangirgiz/wazap/whatsapp-inbox"><img src="https://agentmods.dev/badge/skills/razvangirgiz/wazap/whatsapp-inbox/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 whatsapp-inbox

Your own site · 80×15
<a href="https://agentmods.dev/skills/razvangirgiz/wazap/whatsapp-inbox"><img src="https://agentmods.dev/badge/skills/razvangirgiz/wazap/whatsapp-inbox.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,061 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.00053 $0.01061
Opus 5 $0.00026 $0.00531
Sonnet 5 $0.00011 $0.00212
Haiku 4.5 $0.00005 $0.00106

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

Security

Grade A, and why

whatsapp-inbox 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 7d 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/whatsapp-inbox/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.

WhatsApp inbox triage

Deliverable: a short, ranked list of what needs the user, with everything else compressed to one line. The user should finish reading in under a minute.

Collect

  1. get_recent_messages with the window the user implied (default 24h; "this week" = 168). If the result says sync: "in_progress", wait 5 seconds and call it again once. Pass include_previews: true when the window holds photos, so "[image]" becomes something you can describe; the first call over many photos takes a few seconds.
  2. list_chats with filter: "unread" to catch chats whose activity predates the window.
  3. get_unanswered for who is still waiting: it returns only chats whose last word is theirs and asks for something, with the ask quoted. For "whom did I forget", pass min_age_hours: 48. Do not rebuild this from list_chats; the tool already skips conversations that ended in "ok, thanks".

Done collecting when every chat with unread messages appears in exactly one bucket below.

Triage

Sort each chat into one bucket:

  • Needs you: a direct question to the user, a request, a mention of the user in a group (sender is not the user and the text addresses them or quotes one of their messages), or money/dates/decisions awaiting them.
  • Probably handled by call: a Needs you candidate the user has since called. See Calls below.
  • FYI: information with no ask. Shipping updates, "ok thanks", group chatter that reached a conclusion.
  • Noise: promotions, broadcast lists, groups the user is muted in (muted_until in the future), forwards without a question.

Rank Needs you by: people over groups, older unanswered over newer, money and deadlines first.

Calls

A call after someone's ask is evidence the user dealt with it. For every Needs you candidate from an individual chat, look for a call message in that chat newer than the ask: the calls already in the window, or read_messages on that chat with types: ["call"]. A call whose call.outcome is answered moves the item to Probably handled by call, carrying when it was and how long it ran, and ending in a question, because the call may have been about something else:

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. 7d ago Changed 83be4d539b98
  2. 12d ago First seen · 67 lines · 53 tokens per session scan A f08c3de1a669

Subscribe to this mod's changes

whatsapp-inbox is a skill published in the GitHub repository razvangirgiz/wazap (0 stars, last pushed today), licensed MIT. It adds 53 tokens to every session and 1,061 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.

Related

Other skills, from other repositories