Whatsapp Send Skill logo

Whatsapp Send Skill

Community
zeenie-ai
whatsapp-send-skill

Send WhatsApp messages to contacts, groups, or channels. Supports text, images, videos, audio, documents, stickers, locations, and contacts.

Overview

Publisherzeenie-ai
RepositoryOpenCompany
Skill namewhatsapp-send-skill
Stars
912
Forks
137
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by zeenie-ai on GitHub. Read the source before you install it.

Installation

Install the Whatsapp Send Skill AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/zeenie-ai/OpenCompany.git /tmp/OpenCompany
mkdir -p .claude/skills
cp -r /tmp/OpenCompany/server/skills/social_agent/whatsapp-send-skill .claude/skills/whatsapp-send-skill
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Whatsapp Send Skill in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Whatsapp Send Skill on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Whatsapp Send Skill is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

WhatsApp Send Tool

Send messages to WhatsApp contacts, groups, or newsletter channels.

How It Works

This skill provides instructions for the WhatsApp Send tool node. Connect the WhatsApp Send node to Zeenie's input-tools handle to enable message sending.

whatsapp_send Tool

Send messages to individual contacts, groups, or channels.

Schema Fields

FieldTypeRequiredDescription
recipient_typestringYes"phone" for individual, "group" for group chat, or "channel" for newsletter
phonestringIf phonePhone number without + prefix (e.g., 1234567890)
group_idstringIf groupGroup JID (e.g., 123456789@g.us)
channel_jidstringIf channelNewsletter JID (e.g., 120363198765432101@newsletter)
message_typestringYesMessage type (see below)
messagestringIf textText message content
media_urlstringIf mediaURL for image/video/audio/document/sticker
captionstringNoCaption for media messages
latitudefloatIf locationLatitude coordinate
longitudefloatIf locationLongitude coordinate
location_namestringNoDisplay name for location
addressstringNoAddress text for location
contact_namestringIf contactContact display name
vcardstringIf contactvCard 3.0 format string

Message Types

TypeRequired FieldsDescription
textmessagePlain text message
imagemedia_urlImage file (JPG, PNG, GIF)
videomedia_urlVideo file (MP4)
audiomedia_urlAudio file (MP3, OGG, WAV)
documentmedia_urlAny file type
stickermedia_urlSticker image (WebP)
locationlatitude, longitudeGPS coordinates
contactcontact_name, vcardContact card

Examples

Send text message to contact:

json
{
  "recipient_type": "phone",
  "phone": "1234567890",
  "message_type": "text",
  "message": "Hello! How are you?"
}

Send image with caption:

json
{
  "recipient_type": "phone",
  "phone": "1234567890",
  "message_type": "image",
  "media_url": "https://example.com/photo.jpg",
  "caption": "Check out this photo!"
}

Send to group:

json
{
  "recipient_type": "group",
  "group_id": "123456789012345678@g.us",
  "message_type": "text",
  "message": "Hello everyone!"
}

Send to channel (newsletter):

json
{
  "recipient_type": "channel",
  "channel_jid": "120363198765432101@newsletter",
  "message_type": "text",
  "message": "Channel update: new features released!"
}

Channel limitations: Channels only support text, image, video, audio, and document message types. Sticker, location, and contact are NOT supported. You must be an admin/owner of the channel to send.

Send video:

json
{
  "recipient_type": "phone",
  "phone": "1234567890",
  "message_type": "video",
  "media_url": "https://example.com/video.mp4",
  "caption": "Check this video"
}

Send document:

json
{
  "recipient_type": "phone",
  "phone": "1234567890",
  "message_type": "document",
  "media_url": "https://example.com/report.pdf",
  "caption": "Here's the report"
}

Send location:

json
{
  "recipient_type": "phone",
  "phone": "1234567890",
  "message_type": "location",
  "latitude": 37.7749,
  "longitude": -122.4194,
  "location_name": "San Francisco",
  "address": "San Francisco, CA, USA"
}

Send contact card:

json
{
  "recipient_type": "phone",
  "phone": "1234567890",
  "message_type": "contact",
  "contact_name": "John Doe",
  "vcard": "BEGIN:VCARD\nVERSION:3.0\nFN:John Doe\nTEL:+1234567890\nEND:VCARD"
}

Response Format

json
{
  "success": true,
  "recipient": "1234567890",
  "recipient_type": "phone",
  "message_type": "text",
  "details": {
    "status": "sent",
    "preview": "Hello! How are you?",
    "timestamp": "2025-01-30T12:00:00"
  }
}

Error Response

json
{
  "error": "Phone number is required for recipient_type='phone'"
}

Guidelines

  1. Phone numbers: Always use without + prefix, just digits (e.g., 919876543210)
  2. Group IDs: Use JID format ending in @g.us (e.g., 123456789@g.us)
  3. Channel JIDs: Use JID format ending in @newsletter (e.g., 120363198765432101@newsletter)
  4. Media URLs: Must be publicly accessible URLs (https://)
  5. vCard format: Use vCard 3.0 specification for contact cards
  6. Message length: Text messages can be up to 4096 characters
  7. Media size: Check WhatsApp limits for media file sizes

Common Use Cases

  • Send automated notifications to contacts
  • Forward messages to groups
  • Share media files
  • Send location information
  • Share contact information

Setup Requirements

  1. Connect the WhatsApp Send node to Zeenie's input-tools handle
  2. Ensure WhatsApp is connected (green status indicator in Credentials)
  3. The recipient must have WhatsApp installed

Frequently asked questions

What does the Whatsapp Send Skill AI skill do?

Send WhatsApp messages to contacts, groups, or channels. Supports text, images, videos, audio, documents, stickers, locations, and contacts.

Why use Whatsapp Send Skill on TypingMind?

Because you install it once and use it with any model. Whatsapp Send Skill is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Whatsapp Send Skill in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/zeenie-ai/OpenCompany/tree/main/server/skills/social_agent/whatsapp-send-skill. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Whatsapp Send Skill?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Whatsapp Send Skill?

As many as you like. As long as a model supports skills, you can use Whatsapp Send Skill with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Whatsapp Send Skill AI skill free?

Yes. It is published on GitHub by zeenie-ai under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇