polygram 0.8.0-rc.35 → 0.8.0-rc.36
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
|
|
3
3
|
"name": "polygram",
|
|
4
|
-
"version": "0.8.0-rc.
|
|
4
|
+
"version": "0.8.0-rc.36",
|
|
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/lib/status-reactions.js
CHANGED
|
@@ -81,12 +81,17 @@ const DEFAULT_STALL_MS = 45_000;
|
|
|
81
81
|
const DEFAULT_FREEZE_MS = 180_000;
|
|
82
82
|
// rc.32: thinking-deepening cascade thresholds. Calibrated to Ivan DM
|
|
83
83
|
// 14-day production data (445 turns) — 8% finish <5s, 33% in 5-15s,
|
|
84
|
-
// 25% in 15-30s.
|
|
85
|
-
//
|
|
84
|
+
// 25% in 15-30s. rc.35 bump: 8s→12s, 20s→30s. User feedback after
|
|
85
|
+
// rc.32 deploy was that the cascade kicked in too eagerly — most
|
|
86
|
+
// 5-15s turns showed 🤨 briefly before resolving, and the resulting
|
|
87
|
+
// emoji churn felt noisy rather than informative. Bumping deeper to
|
|
88
|
+
// 12s lets the entire 5-15s bracket (33%) resolve on plain 🤔, and
|
|
89
|
+
// deepest to 30s lets the 15-30s bracket (25%) resolve on 🤨 without
|
|
90
|
+
// cascading. STALL still fires at 45s for the genuinely-long 17%.
|
|
86
91
|
// CODING / TOOL / WEB / WRITING reset the cascade (any state-change
|
|
87
92
|
// in setState clears the deepening timers).
|
|
88
|
-
const DEFAULT_THINKING_DEEPER_MS =
|
|
89
|
-
const DEFAULT_THINKING_DEEPEST_MS =
|
|
93
|
+
const DEFAULT_THINKING_DEEPER_MS = 12_000;
|
|
94
|
+
const DEFAULT_THINKING_DEEPEST_MS = 30_000;
|
|
90
95
|
|
|
91
96
|
// Tool name → state classifier. Case-insensitive substring match so we
|
|
92
97
|
// don't have to enumerate every existing or future tool. Order matters:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polygram",
|
|
3
|
-
"version": "0.8.0-rc.
|
|
3
|
+
"version": "0.8.0-rc.36",
|
|
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": {
|