polygram 0.5.2 → 0.5.3
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 +8 -8
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
|
|
3
3
|
"name": "polygram",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.3",
|
|
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.5.
|
|
3
|
+
"version": "0.5.3",
|
|
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
|
@@ -773,18 +773,18 @@ function formatConfigInfoText(chatConfig, show, sessionKey) {
|
|
|
773
773
|
const modelHelp = [
|
|
774
774
|
'',
|
|
775
775
|
'**Models**',
|
|
776
|
-
'🧠 **opus** —
|
|
777
|
-
'🤖 **sonnet** —
|
|
778
|
-
'⚡ **haiku** —
|
|
776
|
+
'🧠 **opus** — deep analysis, code refactor, multi-source reconciliation. ~5× sonnet cost.',
|
|
777
|
+
'🤖 **sonnet** — default. Most ops, code review, document summary.',
|
|
778
|
+
'⚡ **haiku** — quick simple tasks, classification, lookup.',
|
|
779
779
|
].join('\n');
|
|
780
780
|
|
|
781
781
|
const effortHelp = [
|
|
782
782
|
'',
|
|
783
|
-
'**Effort** —
|
|
784
|
-
'• **low** — fast replies,
|
|
785
|
-
'• **medium** — balanced default.
|
|
786
|
-
'• **high** —
|
|
787
|
-
'• **xhigh** / **max** —
|
|
783
|
+
'**Effort** — ceiling on how much Claude can think. Simple questions get fast replies; hard ones spend more tokens. Safe to set higher — Claude scales down automatically when it doesn\'t need to think.',
|
|
784
|
+
'• **low** — fast replies, minimum reasoning. Casual chat, simple lookups.',
|
|
785
|
+
'• **medium** — balanced default. Fits most use cases.',
|
|
786
|
+
'• **high** — multi-step tasks. Audit, debug, multi-source analysis.',
|
|
787
|
+
'• **xhigh** / **max** — heaviest. Hard reasoning, edge cases.',
|
|
788
788
|
].join('\n');
|
|
789
789
|
|
|
790
790
|
let body = head;
|