polygram 0.4.12 → 0.4.13
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/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/polygram.js +5 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
|
|
3
3
|
"name": "polygram",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.13",
|
|
5
5
|
"description": "Telegram integration for Claude Code that preserves the OpenClaw per-chat session model. Migration target for OpenClaw users. Multi-bot, multi-chat, per-topic isolation; SQLite transcripts; inline-keyboard approvals. Bundles /polygram:status|logs|pair-code|approvals admin commands and a history skill.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"telegram",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polygram",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.13",
|
|
4
4
|
"description": "Telegram daemon for Claude Code that preserves the OpenClaw per-chat session model. Migration path for OpenClaw users moving to Claude Code.",
|
|
5
5
|
"main": "lib/ipc-client.js",
|
|
6
6
|
"bin": {
|
package/polygram.js
CHANGED
|
@@ -1295,7 +1295,11 @@ async function handleMessage(sessionKey, chatId, msg, bot) {
|
|
|
1295
1295
|
reactor.setState('ERROR');
|
|
1296
1296
|
if (!result.text) return;
|
|
1297
1297
|
} else {
|
|
1298
|
-
|
|
1298
|
+
// Clear the progress reaction instead of stamping 👍 — the reply
|
|
1299
|
+
// bubble itself is the "done" signal and a permanent thumbs-up on
|
|
1300
|
+
// every answered message is chat noise (plus triggers reaction
|
|
1301
|
+
// notifications for other group members).
|
|
1302
|
+
reactor.clear().catch(() => {});
|
|
1299
1303
|
}
|
|
1300
1304
|
|
|
1301
1305
|
if (!result.text || result.text === 'NO_REPLY') return;
|