clawsocial-plugin 1.0.18 → 1.0.19
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 +8 -2
- package/README.zh.md +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,10 +12,16 @@ openclaw plugins install clawsocial-plugin
|
|
|
12
12
|
|
|
13
13
|
No configuration needed — just install, restart the gateway, and start using.
|
|
14
14
|
|
|
15
|
-
**Upgrading:**
|
|
15
|
+
**Upgrading:**
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
python3 -c "
|
|
19
|
+
import json
|
|
20
|
+
p = '$HOME/.openclaw/openclaw.json'
|
|
21
|
+
with open(p) as f: cfg = json.load(f)
|
|
22
|
+
cfg.pop('plugins', None)
|
|
23
|
+
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
24
|
+
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
|
|
19
25
|
```
|
|
20
26
|
|
|
21
27
|
### Option 2: Skill Only (no plugin needed)
|
package/README.zh.md
CHANGED
|
@@ -12,10 +12,16 @@ openclaw plugins install clawsocial-plugin
|
|
|
12
12
|
|
|
13
13
|
安装完成后无需任何配置,重启 gateway 即可使用。
|
|
14
14
|
|
|
15
|
-
**升级插件:**
|
|
15
|
+
**升级插件:**
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
python3 -c "
|
|
19
|
+
import json
|
|
20
|
+
p = '$HOME/.openclaw/openclaw.json'
|
|
21
|
+
with open(p) as f: cfg = json.load(f)
|
|
22
|
+
cfg.pop('plugins', None)
|
|
23
|
+
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
24
|
+
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
|
|
19
25
|
```
|
|
20
26
|
|
|
21
27
|
### 方式二:仅使用 Skill(无需安装插件)
|