@llblab/pi-telegram 0.26.4 → 0.26.5

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/BACKLOG.md CHANGED
@@ -2,7 +2,19 @@
2
2
 
3
3
  _This backlog tracks only open release-relevant work: hotfixes, bounded maintenance, live runtime verification, evidence-gated Telegram client follow-ups, and upstream Pi API blockers. Completed outcomes and validation evidence belong in `CHANGELOG.md`, not in this queue._
4
4
 
5
- ## P0 — Update Omission Label Hotfix
5
+ ## P0 — Scoped Model Thinking Label Hotfix
6
+
7
+ Context: scoped model buttons still separate their optional thinking level with a middle dot. Parentheses match the quieter subordinate-metadata convention now used by Activity update omission labels.
8
+
9
+ Open work:
10
+
11
+ - [x] Render scoped model buttons as `provider/model (level)` when a thinking level is attached.
12
+ - [x] Update focused regression, changelog, and package metadata.
13
+ - [ ] Publish and verify GitHub/npm release evidence for `0.26.5`.
14
+
15
+ Done when: optional thinking metadata uses parentheses consistently, validation passes, and the hotfix is published.
16
+
17
+ ## P1 — Update Omission Label Release
6
18
 
7
19
  Context: the retained-update summary currently separates its dropped-count suffix with a middle dot. Parentheses communicate subordinate metadata more quietly and avoid an unnecessary visual separator.
8
20
 
@@ -10,7 +22,7 @@ Open work:
10
22
 
11
23
  - [x] Render the first retained update as `Update N (K earlier omitted)` when earlier updates were dropped.
12
24
  - [x] Update focused regression, changelog, and package metadata.
13
- - [ ] Publish and verify GitHub/npm release evidence for `0.26.4`.
25
+ - [x] Publish and verify GitHub/npm release evidence for `0.26.4`.
14
26
 
15
27
  Done when: omission metadata uses ordinary parentheses, validation passes, and the hotfix is published.
16
28
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.26.5: Quieter Scoped Model Labels
4
+
5
+ - `Model Microcopy`: Replaced the middle-dot separator in scoped model buttons with parentheses, rendering optional thinking metadata as `provider/model (level)`. Impact: model identity stays primary while its attached thinking level reads as subordinate metadata consistently with Activity omission labels.
6
+
3
7
  ## 0.26.4: Quieter Update Omission Labels
4
8
 
5
9
  - `Tool Microcopy`: Replaced the middle-dot suffix in retained update summaries with ordinary parentheses: `Update N (K earlier omitted)`. Impact: dropped-update evidence remains explicit while reading as subordinate metadata instead of another visual segment.
package/lib/menu-model.ts CHANGED
@@ -355,7 +355,7 @@ export function formatScopedModelButtonText<
355
355
  ): string {
356
356
  let label = `${modelsMatch(entry.model, currentModel) ? "🟢 " : ""}${entry.model.provider}/${entry.model.id}`;
357
357
  if (entry.thinkingLevel) {
358
- label += ` · ${entry.thinkingLevel}`;
358
+ label += ` (${entry.thinkingLevel})`;
359
359
  }
360
360
  return truncateTelegramButtonLabel(label);
361
361
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llblab/pi-telegram",
3
- "version": "0.26.4",
3
+ "version": "0.26.5",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"