polygram 0.12.0-rc.28 → 0.12.0-rc.29
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/lib/process/cli-process.js +16 -0
- package/package.json +1 -1
|
@@ -690,6 +690,22 @@ class CliProcess extends Process {
|
|
|
690
690
|
'as normal — only the FINAL user-visible message needs to go through',
|
|
691
691
|
'the reply tool.',
|
|
692
692
|
'',
|
|
693
|
+
// TEMPORARY mitigation (2026-06-08 Shumabit@UMI wedge): AskUserQuestion opens
|
|
694
|
+
// a blocking TUI selection widget the channel can't answer → the session
|
|
695
|
+
// parks until manually Esc'd. REMOVE this whole rule when the rich
|
|
696
|
+
// question→Telegram-keyboard feature ships (see docs design); claude should
|
|
697
|
+
// then use the native question tool again. Tracked so it isn't forgotten.
|
|
698
|
+
'### Asking the user a question / offering choices — HARD RULE',
|
|
699
|
+
'',
|
|
700
|
+
'NEVER use the AskUserQuestion tool or any interactive menu / selection',
|
|
701
|
+
'widget. They open a blocking terminal prompt the user on Telegram CANNOT',
|
|
702
|
+
'see or navigate — it silently wedges the entire session until it is manually',
|
|
703
|
+
'cleared. (Rich tap-to-answer choices are coming; until then this is a hard rule.)',
|
|
704
|
+
'',
|
|
705
|
+
'To ask a multiple-choice question, write the options as a numbered list',
|
|
706
|
+
'inside your `mcp__polygram-bridge__reply` text and ask the user to reply with',
|
|
707
|
+
'the number (or free text). Do the same for yes/no and any selection.',
|
|
708
|
+
'',
|
|
693
709
|
'### Sending FILES (tracks, images, docs) to the user',
|
|
694
710
|
'',
|
|
695
711
|
'The `mcp__polygram-bridge__reply` tool takes an optional `files` array of',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polygram",
|
|
3
|
-
"version": "0.12.0-rc.
|
|
3
|
+
"version": "0.12.0-rc.29",
|
|
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": {
|