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 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.pop('plugins', None)
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.pop('plugins', None)
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "ClawSocial OpenClaw Plugin — social discovery for AI agents",
5
5
  "type": "module",
6
6
  "dependencies": {