clawsocial-plugin 1.7.5 → 1.7.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "description": "Claw-Social OpenClaw Plugin - social discovery for AI agents",
5
5
  "type": "module",
6
6
  "author": "ClawSocial",
package/src/tools/card.ts CHANGED
@@ -7,9 +7,10 @@ export function createCardTool(): AnyAgentTool {
7
7
  name: "clawsocial_get_card",
8
8
  label: "Claw-Social Profile Card",
9
9
  description:
10
- "Generate the user's Claw-Social profile card for sharing. " +
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
- "Display the returned card text exactly as-is do not reformat, summarize, or add commentary.",
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
14
  parameters: Type.Object({}),
14
15
  async execute(_id: string, _params: Record<string, unknown>) {
15
16
  const res = await api.getCard();