whatsapp-status

whatsapp-status is a skill for Claude Code from bowlofarugula/whatsapp. It costs 51 tokens per session (698 once invoked), scanned A, original, Apache-2.0.

A health check for the WhatsApp connection, including the messaging engine, linked device, local message store, and available tools.

In plain words
What is it for?
Use it to check whether WhatsApp is installed, authenticated, synced, and ready. If something is missing, it points to the relevant setup action.
Why use it?
It shows which part of the connection is failing when reading or sending WhatsApp messages does not work.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: reads .claude/ paths; built for openclaw.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

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

Good fit Use it to check whether WhatsApp is installed, authenticated, synced, and ready. If something is missing, it points to the relevant setup action.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add bowlofarugula/whatsapp
Claude Code
/plugin install whatsapp

Made for: Claude Code.

Or install whatsapp, 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-status

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/bowlofarugula/whatsapp/whatsapp-status"><img src="https://agentmods.dev/badge/skills/bowlofarugula/whatsapp/whatsapp-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 698 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.00051 $0.00698
Opus 5 $0.00026 $0.00349
Sonnet 5 $0.00010 $0.00140
Haiku 4.5 $0.00005 $0.00070

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

Security

Grade A, and why

whatsapp-status 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 11d 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-status/SKILL.md · 44 lines

What it actually says

/whatsapp-status — WhatsApp health check

Run all checks, then report in plain language: one line per check with ✅/❌, then a "what to do" section only if something failed (point at the matching /whatsapp-setup step).

  1. wacli engine present: /whatsapp-setup installs it to ~/.claude/whatsapp/engine"${CLAUDE_PLUGIN_ROOT:-.}/bin/wacli" --version 2>/dev/null || wacli --version 2>/dev/null || echo MISSING. MISSING → setup step 1 installs it (fallback brew install openclaw/tap/wacli or set WACLI_PATH).
  2. bun present: bun --version || "$HOME/.bun/bin/bun" --version. Missing → setup step 2.
  3. Device linked: call the status tool (or wacli auth status). Not authenticated → run /whatsapp-setup (or the authenticate tool): it pops up a QR for them to scan with their phone (or method:"code" + their number for a pairing code) — no terminal.
  4. Local store reachable: wacli doctor --json 2>&1 | head -40 — reports store layout, auth identity, FTS/search state, and counts. A quick content check: wacli chats list --limit 1 --json --read-only returns a chat (or an empty list if nothing has synced yet → suggest wacli sync --once).
  5. MCP tools live: check whether the send_message / list_chats / read_messages / search_messages / react / watch tools from this plugin's WhatsApp server are available in this session (load via ToolSearch if deferred). If present, the fastest single check is to call the status tool — it confirms wacli installed, the device linked, and the store reachable in one shot. Missing while 1–4 pass → the session predates the plugin; restart it.
  6. Config: read ~/.claude/whatsapp/config.json (fine if absent) and report the two opt-in safeguards in plain language: the approval gate (approval: true → every send pauses on a yes/no dialog only the user can answer) and the AI-disclosure signature (signature: true → "- Sent by Claude for " is appended).

If everything passes, suggest: "WhatsApp yourself a hello, then ask me for your recent messages."

Remind the user once, if relevant: this is their real WhatsApp account on a linked device — keep sends human-paced to avoid rate-limits/bans.

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. 11d ago First seen · 44 lines · 51 tokens per session scan A 1fac7db00d64

Subscribe to this mod's changes

whatsapp-status is a skill published in the GitHub repository bowlofarugula/whatsapp (0 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 51 tokens to every session and 698 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

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens