openclaw-elys 1.4.3 → 1.4.5
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 +13 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,38 +4,24 @@ OpenClaw channel plugin for [Elys App](https://elys.ai) — connects your local
|
|
|
4
4
|
|
|
5
5
|
Elys App 的 OpenClaw 频道插件 — 将本地 OpenClaw 智能体连接到 Elys 手机应用。
|
|
6
6
|
|
|
7
|
-
## Install /
|
|
7
|
+
## Install & Setup / 安装与配置
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
## Setup / 注册设备
|
|
15
|
-
|
|
16
|
-
Get a one-time register token from the Elys App, then run:
|
|
10
|
+
# 1. Install the plugin / 安装插件
|
|
11
|
+
openclaw plugins install openclaw-elys
|
|
17
12
|
|
|
18
|
-
|
|
13
|
+
# 2. Restart gateway (required after install) / 重启网关(安装后必须)
|
|
14
|
+
openclaw gateway restart
|
|
19
15
|
|
|
20
|
-
|
|
21
|
-
npx openclaw-elys
|
|
16
|
+
# 3. Register device / 注册设备
|
|
17
|
+
npx openclaw-elys setup <gateway_url> <register_token>
|
|
22
18
|
```
|
|
23
19
|
|
|
24
|
-
|
|
20
|
+
Get a one-time register token from the Elys App. / 从 Elys App 获取一次性注册令牌。
|
|
25
21
|
|
|
26
|
-
|
|
27
|
-
npx openclaw-elys@latest setup https://your-gateway.com reg_abc123def456
|
|
28
|
-
# Device registered successfully!
|
|
29
|
-
# Device ID: d_xxxxxxxxxxxx
|
|
30
|
-
# Credentials saved to ~/.elys/config.json
|
|
31
|
-
# OpenClaw config updated: channels.elys.gatewayUrl = https://your-gateway.com
|
|
32
|
-
#
|
|
33
|
-
# OpenClaw will auto-detect the config change. You're all set!
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
The setup command automatically configures `channels.elys` in `~/.openclaw/openclaw.json`. OpenClaw will auto-detect the config change — no restart needed.
|
|
22
|
+
The setup command automatically configures `channels.elys` in `~/.openclaw/openclaw.json`.
|
|
37
23
|
|
|
38
|
-
setup 命令会自动配置 `~/.openclaw/openclaw.json` 中的 `channels.elys`。
|
|
24
|
+
setup 命令会自动配置 `~/.openclaw/openclaw.json` 中的 `channels.elys`。
|
|
39
25
|
|
|
40
26
|
## Status / 查看状态
|
|
41
27
|
|
|
@@ -45,14 +31,12 @@ npx openclaw-elys status
|
|
|
45
31
|
|
|
46
32
|
## Uninstall / 卸载
|
|
47
33
|
|
|
48
|
-
|
|
34
|
+
One command to revoke device, clean up config, and remove the plugin:
|
|
35
|
+
|
|
36
|
+
一条命令撤销设备、清理配置并卸载插件:
|
|
49
37
|
|
|
50
38
|
```bash
|
|
51
|
-
# Step 1: Revoke device and remove channel config / 第一步:撤销设备并清除频道配置
|
|
52
39
|
npx openclaw-elys uninstall
|
|
53
|
-
|
|
54
|
-
# Step 2: Remove the plugin / 第二步:卸载插件
|
|
55
|
-
openclaw plugins uninstall openclaw-elys
|
|
56
40
|
```
|
|
57
41
|
|
|
58
42
|
## License
|