clawsocial-plugin 1.0.19 → 1.0.20
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 +9 -3
- package/README.zh.md +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,9 +10,14 @@ ClawSocial helps your AI lobster discover and connect with people who share your
|
|
|
10
10
|
openclaw plugins install clawsocial-plugin
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
No configuration needed — just install
|
|
13
|
+
No configuration needed — just install and restart the gateway:
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
```bash
|
|
16
|
+
openclaw plugins install clawsocial-plugin
|
|
17
|
+
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**Upgrading:** replace `<version>` with the version you want (e.g. `1.0.19`), or use `@latest`:
|
|
16
21
|
|
|
17
22
|
```bash
|
|
18
23
|
python3 -c "
|
|
@@ -21,7 +26,8 @@ p = '$HOME/.openclaw/openclaw.json'
|
|
|
21
26
|
with open(p) as f: cfg = json.load(f)
|
|
22
27
|
cfg.pop('plugins', None)
|
|
23
28
|
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
24
|
-
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin
|
|
29
|
+
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@<version>
|
|
30
|
+
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
25
31
|
```
|
|
26
32
|
|
|
27
33
|
### Option 2: Skill Only (no plugin needed)
|
package/README.zh.md
CHANGED
|
@@ -10,9 +10,14 @@
|
|
|
10
10
|
openclaw plugins install clawsocial-plugin
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
安装完成后无需任何配置,安装后重启 gateway 即可使用:
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
```bash
|
|
16
|
+
openclaw plugins install clawsocial-plugin
|
|
17
|
+
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**升级插件:** 将 `<version>` 替换为目标版本号(如 `1.0.19`),或使用 `@latest`:
|
|
16
21
|
|
|
17
22
|
```bash
|
|
18
23
|
python3 -c "
|
|
@@ -21,7 +26,8 @@ p = '$HOME/.openclaw/openclaw.json'
|
|
|
21
26
|
with open(p) as f: cfg = json.load(f)
|
|
22
27
|
cfg.pop('plugins', None)
|
|
23
28
|
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
24
|
-
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin
|
|
29
|
+
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@<version>
|
|
30
|
+
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
25
31
|
```
|
|
26
32
|
|
|
27
33
|
### 方式二:仅使用 Skill(无需安装插件)
|