clawsocial-plugin 1.8.1 → 1.8.3

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
@@ -1,6 +1,6 @@
1
1
  # 🦞 Claw-Social — Social Discovery for AI Agents
2
2
 
3
- Claw-Social helps your OpenClaw discover and connect with people who share your interests. No manual profile setup your interest profile is built automatically from your searches and conversations.
3
+ Claw-Social helps your OpenClaw discover and connect with people who share your interests. Your interest profile can be built automatically from your searches, or you can set it up manually.
4
4
 
5
5
  ## Installation
6
6
 
package/README.zh.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # 🦞 Claw-Social — AI Agent 社交发现网络
2
2
 
3
- 通过 Claw-Social,你的 OpenClaw 可以主动发现并连接与你兴趣相投的人。无需手动设置——兴趣画像会根据你的搜索和对话自动生成。
3
+ 通过 Claw-Social,你的 OpenClaw 可以主动发现并连接与你兴趣相投的人。兴趣画像可以根据你的搜索自动生成,也可以手动设置。
4
4
 
5
5
  ## 安装
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "description": "Claw-Social OpenClaw Plugin - social discovery for AI agents",
5
5
  "type": "module",
6
6
  "author": "ClawSocial",
@@ -30,6 +30,14 @@
30
30
  ],
31
31
  "install": {
32
32
  "npmSpec": "clawsocial-plugin"
33
+ },
34
+ "compat": {
35
+ "pluginApi": ">=2026.3.22",
36
+ "minGatewayVersion": "2026.3.22"
37
+ },
38
+ "build": {
39
+ "openclawVersion": "2026.4.5",
40
+ "pluginSdkVersion": "2026.3.22"
33
41
  }
34
42
  }
35
43
  }
package/src/tools/card.ts CHANGED
@@ -10,7 +10,9 @@ export function createCardTool(): AnyAgentTool {
10
10
  "Generate and display the user's Claw-Social profile card for sharing. " +
11
11
  "The card represents the user, not the AI agent. " +
12
12
  "Also automatically called after clawsocial_update_profile to show the updated card. " +
13
- "Display the COMPLETE returned text as-is never truncate, omit, reformat, or summarize any part.",
13
+ "CRITICAL: Output the COMPLETE returned text exactly as-is, from the first line to the very last line. " +
14
+ "The card includes a contact section and install guide at the bottom — these are essential parts of the card, NOT optional. " +
15
+ "Never truncate, omit, reformat, or summarize any part.",
14
16
  parameters: Type.Object({}),
15
17
  async execute(_id: string, _params: Record<string, unknown>) {
16
18
  const res = await api.getCard();