基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill beeper命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
| name | beeper |
| description | Search chats, list/read messages, and send messages via Beeper Desktop using the beeper-cli. |
| metadata | {"clawdbot":{"requires":{"bins":["beeper"]}}} |
Use this skill when you need to search chats, list/read messages, or send messages via Beeper Desktop.
A CLI wrapper around the Beeper Desktop API. No MCP, no curl — just beeper commands.
Requires beeper-cli.
BEEPER_ACCESS_TOKEN set (get from Beeper Desktop: Settings > Developers > API Access Token)Download from releases, or build:
go install github.com/foeken/beeper-cli@latest
beeper accounts list
beeper accounts list -o table
# 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 "<chatID>"
# Archive
beeper chats archive "<chatID>"
# Create
beeper chats create --account-id "telegram:123" --participant "user1" --type dm
# Reminders
beeper chats reminders create "<chatID>" --time "2025-01-26T10:00:00Z"
beeper chats reminders delete "<chatID>"
# List messages in a chat
beeper messages list "<chatID>"
# 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 "<chatID>" --media-type image
# Send a message
beeper messages send "<chatID>" "Hello!"
# Send with reply
beeper messages send "<chatID>" "Thanks!" --reply-to "<messageID>"
# Edit a message
beeper messages edit "<chatID>" "<messageID>" "Corrected text"
# 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 "<chatID>" "Check this!" --upload-id "<uploadID>"
# Focus Beeper window
beeper focus
beeper focus --chat-id "<chatID>"
# Global search
beeper search "important"
beeper chats list -o json # default
beeper chats list -o table # human-readable
beeper chats search --query "Name"beeper messages list "<chatID>"beeper messages search --query "phrase"beeper messages send "<chatID>" "message"BEEPER_ACCESS_TOKEN securely (e.g., in a password manager)