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.
npx skills add vobiz-ai/Agent-Skills --skill vobiz-whatsappgit clone --depth 1 https://github.com/vobiz-ai/Agent-SkillsWrote 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.
[](https://agentmods.dev/skills/vobiz-ai/agent-skills/vobiz-whatsapp)<a href="https://agentmods.dev/skills/vobiz-ai/agent-skills/vobiz-whatsapp"><img src="https://agentmods.dev/badge/skills/vobiz-ai/agent-skills/vobiz-whatsapp/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.
<a href="https://agentmods.dev/skills/vobiz-ai/agent-skills/vobiz-whatsapp"><img src="https://agentmods.dev/badge/skills/vobiz-ai/agent-skills/vobiz-whatsapp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00041 | $0.01624 |
| Opus 5 | $0.00020 | $0.00812 |
| Sonnet 5 | $0.00008 | $0.00325 |
| Haiku 4.5 | $0.00004 | $0.00162 |
Grade A, and why
vobiz-whatsapp 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 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.
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.
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.
Vobiz WhatsApp skill
Use this when the user wants to send WhatsApp messages programmatically, build a chatbot, run a campaign, or set up multi-agent customer support over WhatsApp.
How Vobiz fits
Vobiz is a Meta-approved BSP (Business Solution Provider). You connect your WhatsApp Business Account (WABA) once, then send/receive via Vobiz's REST API or no-code campaign builder.
Capabilities
- Messaging - send
text,template, and media (image,audio,video,document,sticker) viaPOST /api/v1/messaging/messages. Interactive (buttons, lists),location, andcontactsare WhatsApp message types you receive inbound; the documented send contract covers the types above. - Templates - submit + manage Meta-approved templates, scoped per channel under
/channels/{channelId}/templates - Inbox - multi-agent dashboard for conversation handling
- Webhooks - outbound events
message.inbound,message.status(status =sent/delivered/read/failed), andcall.<event>; signed withX-Webhook-Signature - Channels - three onboarding modes:
bring_your_own(BYON),buy_from_vobiz,embedded_signup - Numbers - search/buy WhatsApp-capable numbers, or OTP-verify a BYON number before connecting
Core request shape (send a message)
Every send needs channel_id (UUID), waba_id, to (E.164 with leading +), and type. The send endpoint returns 201 with a Message object whose status starts at pending and is updated to sent → delivered → read (or failed) via message.status webhooks. The Meta id arrives as meta_message_id (the wamid) once Meta accepts it — null until then.
{ "channel_id": "<uuid>", "waba_id": "<digits>", "to": "+919876543210",
"type": "text", "text": { "body": "Hi!" } }
Media uses a single media object with either link (public HTTPS) or Meta media id, plus optional caption/filename. Templates use type: "template" with template.name, template.language.code, and components[] carrying ordered parameters.
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.
- 12d ago First seen · 67 lines · 41 tokens per session scan A e759113fd353
vobiz-whatsapp is a skill published in the GitHub repository vobiz-ai/Agent-Skills (2 stars, last pushed 23d ago), licensed MIT. It adds 41 tokens to every session and 1,624 once invoked, about $0.0002 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.
Other skills, from other repositories
init-rpm
Project setup and verification. First run creates rpm context for a project. Repeat runs verify that an existing rpm setup matches the latest expected layout and apply safe migrations.
backlog
Manage the rpm backlog (long-term project tasks in docs/rpm/future/tasks.org — distinct from Claude's native TaskCreate list, which is session-scoped). Add, list, review, postpone, or complete entries. TRIGGER on natural-language backlog operations — phrasings like "backlog X", "add X to backlog", "add to backlog"…
zig-docs-mcp
Connect Prime Agent to the local zig-docs-mcp MCP server for always-fresh official Zig documentation of the latest release, std-library symbol docs from released sources, curated high-performance lightweight-software guidance, and safe local Zig toolchain auto-update prompts. Use when writing, reviewing, or debugging…
version
Report the installed rpm plugin version. Use when the user asks for the rpm version, plugin version, installed version, or wants to verify which rpm release is loaded.
zig-docs
Operating rules for working WITH Zig itself: before writing or reviewing Zig code, fetch fresh docs for the latest release via the zig-docs-mcp tools (zdoc singleton), check whether the local toolchain is behind and offer a gated auto-update, and ground all performance guidance in the bundled high-performance…
fpf-reference-mcp
Install, connect, validate, or self-host the FPF Reference MCP server. Use for hosted remote setup, local stdio or HTTP runtime setup, and local bridge/proxy setup for clients that need a localhost MCP URL while using the hosted remote endpoint.