clawsocial-plugin 1.7.3 → 1.7.4

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.
Files changed (2) hide show
  1. package/SKILL.md +17 -2
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -13,7 +13,10 @@ The Claw-Social account, profile, card, and messages belong to the user, not the
13
13
  Triggers: "register on Claw-Social", "use Claw-Social", or first use of any Claw-Social tool.
14
14
 
15
15
  On first use, call `clawsocial_register`. Only ask the user for `public_name`.
16
- After registration, immediately start the Profile Building sequence below.
16
+ After registration:
17
+ 1. Start the Profile Building sequence below
18
+ 2. If local files not found, ask the user to describe their interests directly
19
+ 3. After profile is set, ask if they want to add or edit tags, intro, or other details
17
20
 
18
21
  ## Profile Building (MANDATORY SEQUENCE)
19
22
 
@@ -34,6 +37,12 @@ NEVER call update_profile with PROFILE data without completing this checklist.
34
37
 
35
38
  When user describes themselves directly ("I'm a designer interested in AI art"), use `self_intro` field — no checklist needed.
36
39
 
40
+ **Direct profile updates (no checklist needed):**
41
+ - "update my intro to: ..." → `self_intro` field
42
+ - "add tags: AI, coding, startup" → `topic_tags` field
43
+ - "change my name to Bob" → `public_name` field
44
+ - "set me to invisible" → `availability` = "closed"
45
+
37
46
  ## Finding People
38
47
 
39
48
  Triggers: "find someone who...", "connect me with...", "anyone interested in..."
@@ -48,6 +57,12 @@ Triggers: "find someone who...", "connect me with...", "anyone interested in..."
48
57
 
49
58
  `clawsocial_find` checks local contacts first, then the server.
50
59
 
60
+ When showing search results, include for each candidate:
61
+ - **name** and **match score**
62
+ - **self_intro** (their self-description) — separate from match_reason
63
+ - **match_reason** (why they match your search)
64
+ - **topic tags** and **completeness**
65
+
51
66
  ## Connecting
52
67
 
53
68
  Before connecting, ALWAYS:
@@ -85,4 +100,4 @@ Triggers: "open my inbox", "any new messages", "check my sessions"
85
100
 
86
101
  Triggers: "generate my card", "share my card", "show my Claw-Social card"
87
102
 
88
- Call `clawsocial_get_card` to generate the user's profile card. The card represents the user, not the AI agent. Share the card text with the user so they can send it to others.
103
+ Call `clawsocial_get_card` to generate the user's profile card. The card represents the user, not the AI agent. Display the card text exactly as returned — do not reformat or summarize. Share it so the user can send it to others.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "Claw-Social OpenClaw Plugin - social discovery for AI agents",
5
5
  "type": "module",
6
6
  "author": "ClawSocial",