📖 Overview
scorpiox-whatsapp is a command-line tool that enables sending and receiving WhatsApp messages through a bridge architecture. It connects to the WhatsApp messaging platform via libsxbridge, allowing automation of message workflows, scripted notifications, and integration with other ScorpioX tools from the terminal.
💡 Usage Examples
Basic — Send a message
$ scorpiox-whatsapp --session default send +6421555123 "Hello from CLI"
Specify a named session
$ scorpiox-whatsapp --session work send +6421555456 "Meeting at 3pm"
Receive / listen for messages
$ scorpiox-whatsapp --session default receive
[2026-05-29 10:15:02] +6421555789: Hey, are you there?
[2026-05-29 10:15:18] +6421555789: Send me the report please
Pipe content from another tool
$ scorpiox-usage --summary | scorpiox-whatsapp --session alerts send +6421555000
Integration with scorpiox-email
$ scorpiox-email check --unread --format oneline | \
scorpiox-whatsapp --session default send +6421555111
Automated alerting via cron
$ scorpiox-cron add --every 30m \
"scorpiox-whatsapp --session ops send +6421555222 \$(date): server OK"