Install
openclaw skills install superada-skill-beeperSend and search messages across WhatsApp, LinkedIn, Instagram, Discord, Telegram, Signal, Messenger, Slack, and other Beeper-connected networks through the Beeper Desktop API. Use when an agent needs operator-approved cross-channel messaging, chat lookup, message search, or local DM history access through Beeper.
openclaw skills install superada-skill-beeperUse this skill when an agent needs to work with the operator's own Beeper-connected chats through Beeper Desktop's local API.
Beeper Desktop must already be installed, logged in, and running on a trusted machine. This skill does not create Beeper accounts, bypass platform permissions, or read messages unless the operator has enabled Beeper Desktop API access.
BEEPER_API_KEY$HOME/.config/beeper/api-key$HOME/.config/beeper/config.json with an api_key fieldcurl and jq.For a local Beeper Desktop API:
export BEEPER_API_BASE="http://127.0.0.1:23373"
export BEEPER_API_KEY="paste-api-key-here"
For a remote Beeper Desktop API reached through SSH, create a local tunnel first:
ssh -N -L 23373:127.0.0.1:23373 user@beeper-host
export BEEPER_API_BASE="http://127.0.0.1:23373"
You can also set BEEPER_SSH_HOST=user@beeper-host and let the helper scripts call curl through SSH. The tunnel approach is usually cleaner for long-running agents.
# Test the API
scripts/beeper.sh test
# List accounts
scripts/beeper.sh accounts
# List recent chats
scripts/beeper.sh chats 20
# Search chats
scripts/search-chats.sh "Kinan"
# Search message history
scripts/beeper.sh search "gbrain"
# Read messages from a chat ID
scripts/beeper.sh messages '!chat-id:beeper.local' 50
# Send a message by recipient/chat title match
scripts/send-message.sh "Kinan" "Following up on this."
Default base URL: http://127.0.0.1:23373
Authentication: Authorization: Bearer <api-key>
Common endpoints:
GET /v1/accountsGET /v1/chats?limit=100GET /v1/chats/search?query=nameGET /v1/chats/{chatID}/messages?limit=50GET /v1/messages/search?query=keywordPOST /v1/chats/{chatID}/messagesOfficial API docs: https://developers.beeper.com/desktop-api-reference
Use Beeper when the operator wants one local messaging surface across many networks, especially when Discord DMs, WhatsApp, LinkedIn, Telegram, Instagram, Signal, Messenger, or Slack are all reachable from the same Beeper account.
Use a native platform API when you need workspace-level administration, moderation actions, bot-only behavior, or server/channel operations that Beeper does not expose.