← 返回 Skills 市场
foeken

Beeper CLI

作者 Dreetje · GitHub ↗ · v1.0.2
cross-platform ⚠ suspicious
1867
总下载
0
收藏
5
当前安装
3
版本数
在 OpenClaw 中安装
/install beeper-cli
功能描述
Search chats, list/read messages, and send messages via Beeper Desktop using the beeper-cli.
使用说明 (SKILL.md)

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

# List all chats (sorted by last activity)
beeper chats list

# Search chats
beeper chats search --query "John"
beeper chats search --query "project" --type group

# Get specific chat
beeper chats get "\x3CchatID>"

# Archive
beeper chats archive "\x3CchatID>"

# Create
beeper chats create --account-id "telegram:123" --participant "user1" --type dm

# Reminders
beeper chats reminders create "\x3CchatID>" --time "2025-01-26T10:00:00Z"
beeper chats reminders delete "\x3CchatID>"

Messages

# List messages in a chat
beeper messages list "\x3CchatID>"

# Search messages
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 "\x3CchatID>" --media-type image

# Send a message
beeper messages send "\x3CchatID>" "Hello!"

# Send with reply
beeper messages send "\x3CchatID>" "Thanks!" --reply-to "\x3CmessageID>"

# Edit a message
beeper messages edit "\x3CchatID>" "\x3CmessageID>" "Corrected text"

Assets (attachments)

# Upload a file
beeper assets upload /path/to/image.png

# Download an asset
beeper assets download "mxc://beeper.local/abc123" --output /path/to/save.jpg

# Send with attachment (upload first)
beeper assets upload /path/to/photo.jpg  # returns uploadID
beeper messages send "\x3CchatID>" "Check this!" --upload-id "\x3CuploadID>"

Other

# Focus Beeper window
beeper focus
beeper focus --chat-id "\x3CchatID>"

# Global search
beeper search "important"

Output formats

beeper chats list -o json   # default
beeper chats list -o table  # human-readable

Workflow

  1. Find the chat: beeper chats search --query "Name"
  2. Read messages: beeper messages list "\x3CchatID>"
  3. Search content: beeper messages search --query "phrase"
  4. Send: beeper messages send "\x3CchatID>" "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
安全使用建议
This skill appears to do what it says (wrap the beeper CLI) but the metadata is inconsistent: SKILL.md requires BEEPER_ACCESS_TOKEN while the registry metadata lists no env vars. Before installing or using it: 1) Confirm you have the beeper binary from a trusted source and that the beeper-cli project (https://github.com/foeken/beeper-cli) is legitimate and the release you use is verified. 2) Expect to provide BEEPER_ACCESS_TOKEN in your environment — treat it like any API token (store in a password manager/secret store, and avoid pasting into public logs). 3) If you plan to build with 'go install', review the upstream repo and prefer pinned releases rather than @latest. 4) Be cautious when uploading/downloading files via the CLI; verify paths and contents before sending. 5) Consider asking the skill publisher to correct the registry metadata so required env vars are declared; the mismatch is an indicator of sloppy packaging and should be fixed before wide deployment.
功能分析
Type: OpenClaw Skill Name: beeper-cli Version: 1.0.2 The skill is classified as suspicious due to its inherent high-risk capabilities, even though they align with its stated purpose. It requires the `BEEPER_ACCESS_TOKEN` environment variable, a sensitive credential, for operation. The skill enables uploading arbitrary local files (`beeper assets upload`) and sending messages (`beeper messages send`), which could be misused for data exfiltration or social engineering if the agent is compromised or given malicious instructions. Additionally, the installation method via `go install github.com/foeken/beeper-cli@latest` introduces a supply chain risk by fetching and executing code from an external repository. No direct malicious prompt injection attempts were found in `SKILL.md`.
能力评估
Purpose & Capability
Name/description (search/list/read/send via Beeper Desktop) align with the SKILL.md and the single required binary 'beeper'. The listed CLI commands in SKILL.md are consistent with that purpose.
Instruction Scope
Instructions are narrowly scoped to running beeper-cli commands (searching chats, listing messages, sending messages, uploading/downloading attachments, focusing the window). They reference file paths only where expected for uploads/downloads. The SKILL.md also instructs to set an API access token and to build/install beeper-cli; nothing in the instructions asks the agent to read unrelated system files or unrelated credentials.
Install Mechanism
This is an instruction-only skill with no install spec (lowest risk). SKILL.md suggests downloading releases from GitHub or running 'go install', which is a typical, expected developer/install instruction. Note: building with 'go install' will fetch code from the public repo, so users should verify the upstream release/source before installing.
Credentials
SKILL.md requires an environment variable BEEPER_ACCESS_TOKEN (appropriate for the CLI), but the registry metadata lists no required environment variables. That mismatch is an incoherence: either the skill should declare that env var as required or the runtime instructions should not depend on it. No other unrelated credentials are requested.
Persistence & Privilege
The skill does not request always:true, does not declare config paths or other system-wide changes, and is user-invocable only. It does not ask for persistent presence or elevated platform privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install beeper-cli
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /beeper-cli 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
Add download binary option
v1.0.1
Fix: removed non-existent Homebrew install, use go install
v1.0.0
Initial release: beeper-cli integration for Beeper Desktop API
元数据
Slug beeper-cli
版本 1.0.2
许可证
累计安装 5
当前安装数 5
历史版本数 3
常见问题

Beeper CLI 是什么?

Search chats, list/read messages, and send messages via Beeper Desktop using the beeper-cli. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1867 次。

如何安装 Beeper CLI?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install beeper-cli」即可一键安装,无需额外配置。

Beeper CLI 是免费的吗?

是的,Beeper CLI 完全免费(开源免费),可自由下载、安装和使用。

Beeper CLI 支持哪些平台?

Beeper CLI 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Beeper CLI?

由 Dreetje(@foeken)开发并维护,当前版本 v1.0.2。

💬 留言讨论