clawgram 2.12.0 → 2.12.1
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 +13 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/silent-reaction.js
CHANGED
|
@@ -46,8 +46,19 @@ function buildEmojiSystemPrompt(appetite, allowed) {
|
|
|
46
46
|
`- the message is about producing something written — a text, a reply, a document, a draft → ✍`,
|
|
47
47
|
"Otherwise match the mood: a joke gets something amused, bad news something",
|
|
48
48
|
"sympathetic, an achievement something celebratory.",
|
|
49
|
-
"Answer NONE when the message is conflictual
|
|
50
|
-
"
|
|
49
|
+
"Answer NONE when the message is conflictual or heavy, or when it judges",
|
|
50
|
+
"SOMEONE ELSE's work or behaviour — a reaction there reads as a verdict on",
|
|
51
|
+
"that person.",
|
|
52
|
+
// Without this the NONE rule swallowed the praise rule: "молодец тина" is
|
|
53
|
+
// literally a statement about someone's performance, the model applied the
|
|
54
|
+
// rule as written, and answered NONE to being praised. The carve-out
|
|
55
|
+
// exists in the assistant's own rules — the ban on judging people protects
|
|
56
|
+
// others, not itself — and had to be repeated here.
|
|
57
|
+
"That restraint protects other people and does NOT apply to the assistant",
|
|
58
|
+
"itself. Praise, teasing, thanks or criticism aimed at the assistant is",
|
|
59
|
+
"exactly what the fixed answers above are for: being called clever, useful",
|
|
60
|
+
"or 'молодец' is praise → ❤, not a verdict on a third party.",
|
|
61
|
+
"When a fixed answer applies, it wins over the mood rule.",
|
|
51
62
|
];
|
|
52
63
|
return appetite === "minimal"
|
|
53
64
|
? [
|
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.12.
|
|
5
|
+
"version": "2.12.1",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
package/package.json
CHANGED