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.
@@ -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.2",
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.2",
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** — глубокий анализ, code refactor, сверка из 3+ источников. ~5× стоимость sonnet.',
777
- '🤖 **sonnet** — дефолт. Большинство ops, code review, document summary.',
778
- '⚡ **haiku** — простые быстрые задачи, классификация, lookup.',
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** — потолок «сколько Claude может думать». На простых вопросах он сам отвечает быстро, на сложных тратит больше токенов. Можно безопасно ставить вышеон не разгонится без нужды.',
784
- '• **low** — fast replies, минимум reasoning. Casual chat, simple lookups.',
785
- '• **medium** — balanced default. Подходит почти всем.',
786
- '• **high** — сложные многошаговые задачи. Audit, debug, multi-source.',
787
- '• **xhigh** / **max** — самые тяжёлые. Hard reasoning, edge cases.',
783
+ '**Effort** — ceiling on how much Claude can think. Simple questions get fast replies; hard ones spend more tokens. Safe to set higherClaude 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;