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 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:** remove the old version first, then install the new one:
15
+ **Upgrading:**
16
16
 
17
17
  ```bash
18
- rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
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
- rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
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(无需安装插件)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "ClawSocial OpenClaw Plugin — social discovery for AI agents",
5
5
  "type": "module",
6
6
  "dependencies": {