agent-zero/plugins/_whatsapp_integration
2026-03-26 18:31:38 +08:00
..
api feat: add disconnect account option to switch WhatsApp accounts 2026-03-26 14:11:05 +08:00
extensions/python improve: persistent typing indicator with poll-based refresh 2026-03-26 18:31:38 +08:00
helpers improve: persistent typing indicator with poll-based refresh 2026-03-26 18:31:38 +08:00
prompts feat: add agent prefix to self-chat replies for visual distinction 2026-03-26 16:05:44 +08:00
webui improve: merge WhatsApp Link and Disconnect into single Account field 2026-03-26 14:43:06 +08:00
whatsapp-bridge fix: clear typing indicator after sending reply in self-chat mode 2026-03-26 15:43:01 +08:00
default_config.yaml feat: detect replies to bot messages in group chats 2026-03-26 09:57:34 +08:00
plugin.yaml feat: add WhatsApp integration plugin with Baileys bridge and QR pairing 2026-03-26 00:29:04 +08:00
README.md Update README.md 2026-03-26 17:11:25 +08:00

WhatsApp Integration Plugin

Communicate with Agent Zero via WhatsApp using a Baileys-based Node.js bridge.

Requirements

  • Node.js (v18+) and npm installed on the system
  • A WhatsApp account on a phone (for QR code pairing)

Setup

Install bridge dependencies

cd plugins/_whatsapp_integration/whatsapp-bridge
npm install --production

Dependencies are auto-installed on first bridge start if missing.

Configure and pair

  1. Enable the plugin in Settings > External > WhatsApp Integration
  2. Configure allowed phone numbers (optional)
  3. Click Show QR Code and scan with WhatsApp on your phone
  4. Send a message from an allowed number to start a chat

The WhatsApp session persists across restarts in usr/whatsapp/sessions/. No re-pairing needed unless you disconnect via settings.

Configuration

Setting Description Default
enabled Enable bridge and polling false
mode dedicated (separate number) or self-chat (personal number) dedicated
allow_group Respond in group chats when mentioned or replied to false
bridge_port Local HTTP port for bridge 3100
poll_interval_seconds Poll frequency (min 2) 3
allowed_users Phone numbers without + prefix [] (all)
project Activate project for WA chats ""
agent_instructions Extra agent instructions ""

How It Works

  1. The bridge connects to WhatsApp via Baileys and exposes HTTP endpoints on localhost
  2. The plugin polls the bridge for new messages every few seconds
  3. Incoming messages are routed to existing chats by WhatsApp chat ID or new chats are created
  4. Agent responses are sent back via the bridge as WhatsApp messages
  5. Media (images, documents) is supported in both directions

Architecture

WhatsApp Phone
    ↕ (WhatsApp protocol via Baileys)
whatsapp-bridge/bridge.js  (Node.js subprocess)
    ↕ (HTTP API on localhost)
Python helpers (wa_client, handler, bridge_manager)
    ↕ (Framework extensions)
Agent Zero