openclaw-linso 1.0.4 → 1.0.6
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 +1 -3
- package/openclaw.plugin.json +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,7 +27,6 @@ openclaw plugins install openclaw-linso
|
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
openclaw config set channels.linso.enabled true
|
|
30
|
-
openclaw config set channels.linso.relayUrl wss://relay.linsoapp.com
|
|
31
30
|
openclaw config set channels.linso.appToken <从 App 设置页复制的 Token>
|
|
32
31
|
openclaw gateway restart
|
|
33
32
|
```
|
|
@@ -39,7 +38,6 @@ openclaw gateway restart
|
|
|
39
38
|
"channels": {
|
|
40
39
|
"linso": {
|
|
41
40
|
"enabled": true,
|
|
42
|
-
"relayUrl": "wss://relay.linsoapp.com",
|
|
43
41
|
"appToken": "从 App 设置页复制的 Token"
|
|
44
42
|
}
|
|
45
43
|
}
|
|
@@ -49,7 +47,7 @@ openclaw gateway restart
|
|
|
49
47
|
## 使用步骤
|
|
50
48
|
|
|
51
49
|
1. 下载 Linso iOS App
|
|
52
|
-
2. 打开 App → 设置 →
|
|
50
|
+
2. 打开 App → 设置 → 自动获取 Token
|
|
53
51
|
3. 复制 Token,运行上面的配置命令
|
|
54
52
|
4. 重启龙虾,配对完成 ✅
|
|
55
53
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "linso",
|
|
2
|
+
"id": "openclaw-linso",
|
|
3
3
|
"name": "Linso iOS Channel",
|
|
4
4
|
"description": "Linso iOS App channel for OpenClaw — connects your iPhone to your AI via cloud Relay",
|
|
5
5
|
"version": "1.0.0",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"additionalProperties": false,
|
|
10
10
|
"properties": {
|
|
11
11
|
"enabled": { "type": "boolean" },
|
|
12
|
-
"relayUrl": { "type": "string", "description": "Relay Server WebSocket URL, e.g. wss://relay.yourdomain.com" },
|
|
13
12
|
"appToken": { "type": "string", "description": "Token from Linso iOS App Settings — used to pair App with this Gateway" },
|
|
14
13
|
"agentId": { "type": "string" },
|
|
15
14
|
"dmPolicy": { "type": "string", "enum": ["open", "pairing"] }
|