Build or update the BlueBubbles external channel plugin for Moltbot (extension package, REST...
npx skills add antoniolg/agent-kit --skill "whatsapp-evo"
Install specific skill from multi-skill repository
# Description
Manage WhatsApp via Evolution API (v2.x): list chats with unread messages and reply.
# SKILL.md
name: whatsapp-evo
description: "Manage WhatsApp via Evolution API (v2.x): list chats with unread messages and reply."
WhatsApp (Evolution API)
Requirements
- Environment variables:
EVOLUTION_API_URL(optional if config)EVOLUTION_API_TOKENEVOLUTION_INSTANCE(optional if config)- Configure
api_urlandinstancein~/.config/skills/config.jsonunderwhatsapp_evo(recommended). The token must be set via env var.
Example:
{
"whatsapp_evo": {
"api_url": "https://evo.example.com",
"instance": "MyInstance"
}
}
Commands (from the skill folder)
1) Inbox (unread)
scripts/whatsapp-inbox --json-out /tmp/whatsapp-inbox.json
- Shows a clean numbered list.
- Saves metadata for later actions.
- Note: the inbox is computed from the last incoming message without
READstatus in the API (it may not match "mark as unread" in the app). - Saves local state in
~/.cache/whatsapp-evo/inbox-state.jsonto avoid repeating chats (override with--stateorWHATSAPP_EVO_STATE_PATH). - Use
--no-update-stateif you want to list the same chats again. - Use
--since-days Nto ignore old messages in the first pass (default 7). - Use
--pending-replyto list conversations from the last N days where the latest message is not yours (ignores local state).
2) Reply (with user confirmation)
scripts/whatsapp-reply --index <n> --text "reply"
- Replies to the chat at the given index using
message/sendText. - For direct chats use the number; for groups use
remote_jidif needed. - Optional:
--delay <ms>,--link-preview,--instance,--url.
3) Conversation history
scripts/whatsapp-history --index <n> --limit 50
- Use
--jidor--numberif you donβt have an index. - Filter by date with
--since 2025-01-01or--since 2025-01-01T10:00:00Zand--until. - Use
--incoming-onlyto show only inbound messages.
Metadata format
/tmp/whatsapp-inbox.json contains:
- index
- name
- remote_jid
- number
- unread_count
- last_message_id
- last_message_from_me
- last_message_text
- last_message_timestamp
- last_message_sender
Rules
- Show the user only the clean list; never show tokens.
- Before replying, ask for confirmation.
- If the JSON is stale or missing, re-run inbox.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.