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 +1 -1
- package/src/tools/card.ts +3 -2
package/package.json
CHANGED
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
|
-
"
|
|
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();
|