@botschat/botschat 0.1.21 → 0.1.22
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/SKILL.md +46 -0
- package/bin/botschat-cli.mjs +1680 -0
- package/package.json +6 -3
package/SKILL.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: BotsChat
|
|
3
|
+
description: Chat with your AI agents via BotsChat — manage channels, sessions, tasks, and messages with E2E encryption
|
|
4
|
+
metadata: {"openclaw": {"requires": {"bins": ["node"]}}}
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# BotsChat CLI Skill
|
|
8
|
+
|
|
9
|
+
Interact with [BotsChat](https://botschat.app) directly from OpenClaw. Send messages, manage channels, check task status, and view job history — all with end-to-end encryption.
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx skills add @botschat/botschat
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Or use directly with npx (no install):
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npx @botschat/botschat login
|
|
21
|
+
npx @botschat/botschat chat "Hello"
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Setup
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npx @botschat/botschat login
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Opens your browser for OAuth login (Google/GitHub/Apple). Credentials are saved to `~/.botschat/config.json`.
|
|
31
|
+
|
|
32
|
+
## Commands
|
|
33
|
+
|
|
34
|
+
- `npx @botschat/botschat chat "message"` — Send a message and get a response
|
|
35
|
+
- `npx @botschat/botschat chat -i` — Interactive chat mode
|
|
36
|
+
- `npx @botschat/botschat channels` — List channels
|
|
37
|
+
- `npx @botschat/botschat sessions <channelId>` — List sessions
|
|
38
|
+
- `npx @botschat/botschat tasks` — List background tasks
|
|
39
|
+
- `npx @botschat/botschat tasks run <channelId> <taskId>` — Run a task
|
|
40
|
+
- `npx @botschat/botschat jobs <taskId>` — View job history
|
|
41
|
+
- `npx @botschat/botschat messages <sessionKey>` — View message history
|
|
42
|
+
- `npx @botschat/botschat models` — List available models
|
|
43
|
+
- `npx @botschat/botschat status` — Check OpenClaw connection status
|
|
44
|
+
- `npx @botschat/botschat config e2e --password <pwd>` — Set E2E encryption password
|
|
45
|
+
|
|
46
|
+
Use `--json` for machine-readable output: `npx @botschat/botschat --json channels`
|