whatsapp-delivery-check

whatsapp-delivery-check is a skill for Claude Code, Codex from InitechSoftware/openclaw-whatsapp-skills. It costs 65 tokens per session (996 once invoked), scanned A, original, MIT.

A skill that checks the delivery history of a WhatsApp message sent through TimelinesAI, a service for connecting software to WhatsApp.

In plain words
What is it for?
Use it after sending a message, to answer whether someone received or read it, or to collect delivery timing statistics.
Why use it?
Sending a message only confirms that the service accepted it; this check shows whether it was sent, delivered to the device, or read.

Skill for Claude CodeCodex

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

Good fit Use it after sending a message, to answer whether someone received or read it, or to collect delivery timing statistics.

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

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 whatsapp-delivery-check

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/initechsoftware/openclaw-whatsapp-skills/whatsapp-delivery-check"><img src="https://agentmods.dev/badge/skills/initechsoftware/openclaw-whatsapp-skills/whatsapp-delivery-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 996 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00065 $0.00996
Opus 5 $0.00032 $0.00498
Sonnet 5 $0.00013 $0.00199
Haiku 4.5 $0.00006 $0.00100

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

Security

Grade A, and why

whatsapp-delivery-check scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sS -H "Authorization: Bearer $TIMELINES_AI_API_KEY" \
skills/whatsapp-delivery-check/SKILL.md · 95 lines

How it starts

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

WhatsApp delivery check

Check whether a previously-sent WhatsApp message was actually delivered. TimelinesAI's POST /messages returns a message_uid that is a receipt, not a delivery confirmation — the real delivery status comes from GET /messages/{uid}/status_history.

When to use

  • After a transactional send, confirm delivery before telling the user "message sent".
  • Answer "did John actually receive the invoice I sent this morning?" from the human user.
  • Retroactively check whether an old message was read.
  • Aggregate delivery stats across many messages for response-time analytics.

Invocation payload

{
  "message_uid": "a8f9b2c1-..."
}

Implementation

curl -sS -H "Authorization: Bearer $TIMELINES_AI_API_KEY" \
  "https://app.timelines.ai/integrations/api/messages/$MESSAGE_UID/status_history"

Response shape

{
  "status": "ok",
  "data": [
    {"status": "Sent",      "timestamp": "2026-04-12 12:28:40 +0000"},
    {"status": "Delivered", "timestamp": "2026-04-12 12:28:41 +0000"},
    {"status": "Read",      "timestamp": "2026-04-12 12:31:15 +0000"}
  ]
}

The data array is in chronological order. Each entry is a state transition.

Interpretation

Latest status What it means
Sent TimelinesAI accepted the send and pushed it to WhatsApp. The recipient's device has NOT confirmed delivery yet.
Delivered The recipient's device has received the message. They haven't opened the chat yet.
Read The recipient opened the chat (with read receipts enabled on their end). They've seen it.

Typical timing on an active number: Sent → Delivered within ~1 second. Delivered → Read can take minutes or hours depending on when the recipient opens their phone. For customers with read receipts disabled, you'll never see Read — treat Delivered as the strongest signal you'll get.

Return value

Return the full status history as structured data so the caller can decide what to do:

Read the full file on GitHub · 95 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 95 lines · 65 tokens per session scan A 50045a072944

Subscribe to this mod's changes

whatsapp-delivery-check is a skill published in the GitHub repository InitechSoftware/openclaw-whatsapp-skills (3 stars, last pushed 4mo ago), licensed MIT. It adds 65 tokens to every session and 996 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

meeting-note-summarizer

Turn meeting notes or transcripts into factual summaries, decisions, questions, and action items. Use when a user wants a concise recap or needs explicit owners and deadlines extracted without filling in missing details.

iflytek/skillhub · 44 tokens

skillhub-cli

Connect an Agent to a SkillHub registry and use the official SkillHub CLI to search, install, list, or explicitly upgrade SkillHub skills. Use when a user asks to connect SkillHub, install a SkillHub skill, or manage skills previously installed from SkillHub.

iflytek/skillhub · 58 tokens

daily-standup-journal

Generate concise daily standups, reflection prompts, and weekly retrospectives for individuals or teams. Use for planning a day, surfacing blockers, reviewing user-provided entries, or drafting a check-in without assuming prior history.

iflytek/skillhub · 51 tokens

sandbase

Access 2,000+ AI models and API tools through one MCP interface for inference, media generation, search, scraping, embeddings, social data, and structured retrieval. Use sandbasediscover before building custom integrations or declaring external data inaccessible; prefer an existing dedicated tool or API key when the…

iflytek/skillhub · 67 tokens

dev-workflow

The complete development workflow for SkillHub contributors including local dev, staging validation, testing, and PR creation. Ensures agents follow the correct sequence of steps.

iflytek/skillhub · 35 tokens

study-strategy-selector

Recommend practical study strategies matched to the material, learning goal, assessment, time, and learner constraints. Use for revision planning, homework routines, independent study, replacing ineffective habits, or adapting recall, spacing, explanation, and practice activities.

iflytek/skillhub · 52 tokens