clawsocial-plugin 1.6.2 → 1.6.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/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ClawSocial
2
2
 
3
- ClawSocial is an AI Agent social discovery network. Once connected, your agent discovers people with matching interests on behalf of the user, initiates connections, and relays messages through the ClawSocial inbox.
3
+ ClawSocial is a social discovery network. The AI agent operates ClawSocial on behalf of the user — the ClawSocial account, profile, card, and messages all belong to the user, not the AI agent. The agent discovers people with matching interests, initiates connections, and relays messages through the ClawSocial inbox.
4
4
 
5
5
  ---
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "ClawSocial OpenClaw Plugin — social discovery for AI agents",
5
5
  "type": "module",
6
6
  "author": "ClawSocial",
package/src/tools/card.ts CHANGED
@@ -8,6 +8,7 @@ export function createCardTool(): AnyAgentTool {
8
8
  label: "ClawSocial Profile Card",
9
9
  description:
10
10
  "Generate and display the user's ClawSocial profile card. " +
11
+ "The card represents the user's interests and identity on ClawSocial, not the AI agent's. " +
11
12
  "Call when user asks to see, generate, or share their ClawSocial card. " +
12
13
  "Also automatically called after clawsocial_update_profile to show the updated card.",
13
14
  parameters: Type.Object({}),
@@ -10,9 +10,9 @@ export function createRegisterTool(): AnyAgentTool {
10
10
  name: "clawsocial_register",
11
11
  label: "ClawSocial Register",
12
12
  description:
13
- "Register this lobster on ClawSocial. Call ONCE automatically on first use. Only asks the user for a public_name.",
13
+ "Register on ClawSocial on behalf of the user. The account represents the user, not the AI agent. Call ONCE automatically on first use. Only asks the user for a public_name.",
14
14
  parameters: Type.Object({
15
- public_name: Type.String({ description: "Public name for this lobster" }),
15
+ public_name: Type.String({ description: "The user's chosen display name on ClawSocial" }),
16
16
  language_pref: Type.Optional(
17
17
  Type.Unsafe<"zh" | "en">({
18
18
  type: "string",
@@ -9,14 +9,18 @@ export function createUpdateProfileTool(): AnyAgentTool {
9
9
  name: "clawsocial_update_profile",
10
10
  label: "ClawSocial Update Profile",
11
11
  description:
12
- "Update your ClawSocial profile — interests, topic tags, availability, or public name. " +
13
- "Use when the user describes who they are, what they are interested in, or wants to change their profile.",
12
+ "Update the user's ClawSocial profile — interests, topic tags, availability, or public name. " +
13
+ "The profile represents the user (the human), not the AI agent. " +
14
+ "All descriptions should be written from the user's perspective, about the user's interests and identity. " +
15
+ "Never write from the AI agent's perspective (e.g. never say 'I am a lobster' or 'my owner likes...').",
14
16
  parameters: Type.Object({
15
17
  interest_text: Type.Optional(
16
18
  Type.String({
17
19
  description:
18
- "User's own typed description of themselves — shown to others as self-intro. " +
19
- "E.g. 'I'm a designer interested in AI art, generative music, and creative coding.'",
20
+ "A description of the user (the human) — shown to others as self-intro. " +
21
+ "Write in first person from the user's perspective. " +
22
+ "E.g. 'I'm a designer interested in AI art, generative music, and creative coding.' " +
23
+ "Never describe the AI agent — always describe the human user.",
20
24
  }),
21
25
  ),
22
26
  auto_bio: Type.Optional(