| name | beeper |
| description | Search chats, list/read messages, and send messages via Beeper Desktop using the beeper-cli. |
| metadata | {"clawdbot":{"requires":{"bins":["beeper"]}}} |
beeper
Use this skill when you need to search chats, list/read messages, or send messages via Beeper Desktop.
What this is
A CLI wrapper around the Beeper Desktop API. No MCP, no curl — just beeper commands.
Requires beeper-cli.
Prereqs
- Beeper Desktop running with API enabled: Settings > Developers
- beeper-cli installed
- Env var:
BEEPER_ACCESS_TOKEN set (get from Beeper Desktop: Settings > Developers > API Access Token)
Install beeper-cli
Download from releases, or build:
go install github.com/foeken/beeper-cli@latest
Commands
Accounts
beeper accounts list
beeper accounts list -o table
Chats
beeper chats list
beeper chats search --query "John"
beeper chats search --query "project" --type group
beeper chats get "<chatID>"
beeper chats archive "<chatID>"
beeper chats create --account-id "telegram:123" --participant "user1" --type dm
beeper chats reminders create "<chatID>" --time "2025-01-26T10:00:00Z"
beeper chats reminders delete "<chatID>"
Messages
beeper messages list "<chatID>"
beeper messages search --query "dinner"
beeper messages search --query "dinner" --limit 10
beeper messages search --query "meeting" --sender me
beeper messages search --query "budget" --after "2025-01-01T00:00:00Z"
beeper messages search --chat-ids "<chatID>" --media-type image
beeper messages send "<chatID>" "Hello!"
beeper messages send "<chatID>" "Thanks!" --reply-to "<messageID>"
beeper messages edit "<chatID>" "<messageID>" "Corrected text"
Assets (attachments)
beeper assets upload /path/to/image.png
beeper assets download "mxc://beeper.local/abc123" --output /path/to/save.jpg
beeper assets upload /path/to/photo.jpg
beeper messages send "<chatID>" "Check this!" --upload-id "<uploadID>"
Other
beeper focus
beeper focus --chat-id "<chatID>"
beeper search "important"
Output formats
beeper chats list -o json
beeper chats list -o table
Workflow
- Find the chat:
beeper chats search --query "Name"
- Read messages:
beeper messages list "<chatID>"
- Search content:
beeper messages search --query "phrase"
- Send:
beeper messages send "<chatID>" "message"
Safety
- Store
BEEPER_ACCESS_TOKEN securely (e.g., in a password manager)
- When quoting messages, include only what's needed
- Confirm message text before sending unless explicit