beepctl 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -284,6 +284,30 @@ src/
|
|
|
284
284
|
- **Bun** for standalone binary compilation
|
|
285
285
|
- **@beeper/desktop-api** SDK
|
|
286
286
|
|
|
287
|
+
## AI Agent Integration
|
|
288
|
+
|
|
289
|
+
beepctl includes an [Agent Skill](https://agentskills.io) for AI coding assistants.
|
|
290
|
+
|
|
291
|
+
**Supported agents:** Claude Code, Cursor, VS Code, GitHub Copilot, OpenAI Codex, Gemini CLI, Goose, Amp, and [25+ more](https://agentskills.io).
|
|
292
|
+
|
|
293
|
+
### Install via npx skills
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
npx skills add blqke/beepctl
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
### Manual install (Claude Code)
|
|
300
|
+
|
|
301
|
+
```bash
|
|
302
|
+
cp -r skills/beepctl ~/.claude/skills/
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
### Manual install (Cursor)
|
|
306
|
+
|
|
307
|
+
```bash
|
|
308
|
+
cp -r skills/beepctl ~/.cursor/skills/
|
|
309
|
+
```
|
|
310
|
+
|
|
287
311
|
## Acknowledgments
|
|
288
312
|
|
|
289
313
|
Inspired by [beeper-cli](https://github.com/krausefx/beeper-cli) by [@krausefx](https://github.com/krausefx).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beepctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "CLI for Beeper Desktop API - unified messaging from terminal",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -57,6 +57,8 @@
|
|
|
57
57
|
"chat",
|
|
58
58
|
"terminal",
|
|
59
59
|
"matrix",
|
|
60
|
-
"clawdbot"
|
|
60
|
+
"clawdbot",
|
|
61
|
+
"moltbot",
|
|
62
|
+
"openclaw"
|
|
61
63
|
]
|
|
62
64
|
}
|