clawgram 2.10.1 → 2.11.0
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/dist/silent-reaction.js +10 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/silent-reaction.js
CHANGED
|
@@ -36,8 +36,16 @@ function buildEmojiSystemPrompt(appetite, allowed) {
|
|
|
36
36
|
// answer outside it is discarded, so offering the choices up front is the
|
|
37
37
|
// difference between a reaction and silence.
|
|
38
38
|
`Choose ONLY from this set, copied exactly: ${choices.join(" ")}`,
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
// Fixed answers the owner asked for by name. They come before the mood
|
|
40
|
+
// rule because the model's own instinct here was wrong in a specific way:
|
|
41
|
+
// it answered 👍 to being praised, which reads as approving of the praise
|
|
42
|
+
// rather than being touched by it.
|
|
43
|
+
"Three situations have a fixed answer. Use it, and do not substitute a similar emoji:",
|
|
44
|
+
`- the assistant is praised or thanked, or someone speaks well of it → ❤ (never \u{1F44D} here)`,
|
|
45
|
+
`- the assistant is asked or told to do something → \u{1FAE1}, or \u{1F44C} for a small routine request`,
|
|
46
|
+
`- the message is about producing something written — a text, a reply, a document, a draft → ✍`,
|
|
47
|
+
"Otherwise match the mood: a joke gets something amused, bad news something",
|
|
48
|
+
"sympathetic, an achievement something celebratory.",
|
|
41
49
|
"Answer NONE when the message is conflictual, heavy, or discusses a person's",
|
|
42
50
|
"performance — a reaction there reads as a verdict on someone.",
|
|
43
51
|
];
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "clawgram",
|
|
3
3
|
"name": "Clawgram",
|
|
4
4
|
"description": "Clawgram — personal Telegram (MTProto userbot) channel for OpenClaw. Your AI assistant reads and responds as you.",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.11.0",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
package/package.json
CHANGED