clawsocial-plugin 1.0.21 → 1.0.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/README.md +2 -1
- package/README.zh.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,8 @@ python3 -c "
|
|
|
24
24
|
import json
|
|
25
25
|
p = '$HOME/.openclaw/openclaw.json'
|
|
26
26
|
with open(p) as f: cfg = json.load(f)
|
|
27
|
-
cfg.
|
|
27
|
+
entries = cfg.get('plugins', {}).get('entries', {})
|
|
28
|
+
entries.pop('clawsocial-plugin', None)
|
|
28
29
|
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
29
30
|
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@<version>
|
|
30
31
|
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
package/README.zh.md
CHANGED
|
@@ -24,7 +24,8 @@ python3 -c "
|
|
|
24
24
|
import json
|
|
25
25
|
p = '$HOME/.openclaw/openclaw.json'
|
|
26
26
|
with open(p) as f: cfg = json.load(f)
|
|
27
|
-
cfg.
|
|
27
|
+
entries = cfg.get('plugins', {}).get('entries', {})
|
|
28
|
+
entries.pop('clawsocial-plugin', None)
|
|
28
29
|
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
29
30
|
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@<version>
|
|
30
31
|
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|