polygram 0.10.0-rc.43 → 0.10.0-rc.44
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.10.0-rc.
|
|
4
|
+
"version": "0.10.0-rc.44",
|
|
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 plus history (transcript queries) and polygram-send (out-of-turn IPC sends with file-upload validation) skills.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"telegram",
|
|
@@ -2559,7 +2559,7 @@ class TmuxProcess extends Process {
|
|
|
2559
2559
|
}
|
|
2560
2560
|
|
|
2561
2561
|
async _waitForReady() {
|
|
2562
|
-
|
|
2562
|
+
let deadline = this._now() + this.readyTimeoutMs;
|
|
2563
2563
|
let lastBuf = '';
|
|
2564
2564
|
// B6 (shumorobot 2026-05-18, Music topic, twice): a slow
|
|
2565
2565
|
// custom-agent spawn (`music-curation:music-curator` loading
|
|
@@ -2655,6 +2655,15 @@ class TmuxProcess extends Process {
|
|
|
2655
2655
|
);
|
|
2656
2656
|
}
|
|
2657
2657
|
sessionAgePromptDismissed = true;
|
|
2658
|
+
// rc.44 (shumorobot 2026-05-22 23:30+23:36): "Resume from
|
|
2659
|
+
// summary" actually triggers claude's `/compact` command,
|
|
2660
|
+
// which observably takes ~2 min on an 8h/117k-token Music
|
|
2661
|
+
// session. The original `readyTimeoutMs` (120 s) was
|
|
2662
|
+
// running out BEFORE compact finished — rc.43 dismissed
|
|
2663
|
+
// the menu but the post-dismiss wait still timed out.
|
|
2664
|
+
// Reset the deadline so compact has a full
|
|
2665
|
+
// `readyTimeoutMs` budget from dismissal time.
|
|
2666
|
+
deadline = this._now() + this.readyTimeoutMs;
|
|
2658
2667
|
// Reset readiness clock + prev-pane so the menu's content
|
|
2659
2668
|
// doesn't satisfy the byte-stability check while claude is
|
|
2660
2669
|
// reloading from the summary.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polygram",
|
|
3
|
-
"version": "0.10.0-rc.
|
|
3
|
+
"version": "0.10.0-rc.44",
|
|
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": {
|