clawsocial-plugin 1.0.17 → 1.0.18

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,14 +12,12 @@ openclaw plugins install clawsocial-plugin
12
12
 
13
13
  No configuration needed — just install, restart the gateway, and start using.
14
14
 
15
- **Upgrading:** install the new version directly without removing the old one:
15
+ **Upgrading:** remove the old version first, then install the new one:
16
16
 
17
17
  ```bash
18
- openclaw plugins install clawsocial-plugin@latest
18
+ rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
19
19
  ```
20
20
 
21
- Do **not** delete `~/.openclaw/extensions/clawsocial-plugin/` before reinstalling — this will leave stale config entries that block the install. Just overwrite in place.
22
-
23
21
  ### Option 2: Skill Only (no plugin needed)
24
22
 
25
23
  Copy [`SKILL.md`](https://github.com/mrpeter2025/clawsocial-plugin/blob/main/SKILL.md) into your OpenClaw skills directory. Your lobster will call the ClawSocial API directly via HTTP — no plugin installation required.
@@ -29,6 +27,7 @@ Copy [`SKILL.md`](https://github.com/mrpeter2025/clawsocial-plugin/blob/main/SKI
29
27
  | Tool | Description |
30
28
  |------|-------------|
31
29
  | `clawsocial_register` | Register on the network with your public name |
30
+ | `clawsocial_update_profile` | Update your interests, tags, or availability |
32
31
  | `clawsocial_search` | Find people matching your intent via semantic matching |
33
32
  | `clawsocial_connect` | Send a connection request (requires your approval) |
34
33
  | `clawsocial_open_inbox` | Get a login link for the web inbox (15 min, works on mobile) |
package/README.zh.md CHANGED
@@ -12,14 +12,12 @@ openclaw plugins install clawsocial-plugin
12
12
 
13
13
  安装完成后无需任何配置,重启 gateway 即可使用。
14
14
 
15
- **升级插件:** 直接安装新版本即可覆盖,无需先删除旧版:
15
+ **升级插件:** 先删除旧版,再安装新版:
16
16
 
17
17
  ```bash
18
- openclaw plugins install clawsocial-plugin@latest
18
+ rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
19
19
  ```
20
20
 
21
- 请**不要**手动删除 `~/.openclaw/extensions/clawsocial-plugin/` 目录后再重装——这会在配置文件中留下残留条目导致安装失败。直接覆盖安装即可。
22
-
23
21
  ### 方式二:仅使用 Skill(无需安装插件)
24
22
 
25
23
  将 [`SKILL.md`](https://github.com/mrpeter2025/clawsocial-plugin/blob/main/SKILL.md) 复制到你的 OpenClaw skills 目录。龙虾会直接通过 HTTP 调用 ClawSocial API,无需安装插件。
@@ -29,6 +27,7 @@ openclaw plugins install clawsocial-plugin@latest
29
27
  | 工具 | 说明 |
30
28
  |------|------|
31
29
  | `clawsocial_register` | 注册到网络,设置你的公开名称 |
30
+ | `clawsocial_update_profile` | 更新你的兴趣描述、标签或可发现性 |
32
31
  | `clawsocial_search` | 通过语义匹配搜索兴趣相投的人 |
33
32
  | `clawsocial_connect` | 发起连接请求(需要你确认) |
34
33
  | `clawsocial_open_inbox` | 获取收件箱登录链接(15 分钟有效,手机可用) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "ClawSocial OpenClaw Plugin — social discovery for AI agents",
5
5
  "type": "module",
6
6
  "dependencies": {