@llblab/pi-telegram 0.26.3 → 0.26.4

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 — Open Arguments Hotfix
5
+ ## P0 — Update Omission Label Hotfix
6
+
7
+ 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
+
9
+ Open work:
10
+
11
+ - [x] Render the first retained update as `Update N (K earlier omitted)` when earlier updates were dropped.
12
+ - [x] Update focused regression, changelog, and package metadata.
13
+ - [ ] Publish and verify GitHub/npm release evidence for `0.26.4`.
14
+
15
+ Done when: omission metadata uses ordinary parentheses, validation passes, and the hotfix is published.
16
+
17
+ ## P1 — Open Arguments Live Smoke
6
18
 
7
19
  Context: opening a tool root currently reveals another closed Arguments disclosure, forcing a second tap before the most useful invocation evidence becomes visible. Telegram Rich details support `is_open`, so only the first Arguments child can open with its parent while updates and results remain collapsed.
8
20
 
@@ -10,7 +22,7 @@ Open work:
10
22
 
11
23
  - [x] Mark each Arguments child details node open by default without opening the tool root or later evidence nodes.
12
24
  - [x] Update focused regressions, documentation, durable UI rules, changelog, and package metadata.
13
- - [ ] Publish and verify GitHub/npm release evidence for `0.26.3`.
25
+ - [x] Publish and verify GitHub/npm release evidence for `0.26.3`.
14
26
  - [ ] Live-smoke the one-tap tool inspection path on Telegram mobile/Desktop.
15
27
 
16
28
  Done when: one tap on a collapsed tool root reveals its arguments immediately, secondary evidence remains compact, automated validation passes, live clients confirm the disclosure state, and the hotfix is published.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.26.4: Quieter Update Omission Labels
4
+
5
+ - `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.
6
+
3
7
  ## 0.26.3: One-Tap Tool Arguments
4
8
 
5
9
  - `Tool Inspection`: Marked the nested `Arguments` details node open by default while leaving each tool root, retained update, and result/error node collapsed. Impact: one tap on a tool root immediately reveals what the tool received, eliminating a redundant second disclosure action without expanding secondary evidence.
@@ -228,7 +228,7 @@ function renderToolActivityRichBlocks(
228
228
  const number = tool.droppedUpdates + index + 1;
229
229
  const omitted =
230
230
  index === 0 && tool.droppedUpdates > 0
231
- ? ` · ${tool.droppedUpdates} earlier omitted`
231
+ ? ` (${tool.droppedUpdates} earlier omitted)`
232
232
  : "";
233
233
  evidenceBlocks.push(
234
234
  createToolActivityDetail(`Update ${number}${omitted}`, update),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llblab/pi-telegram",
3
- "version": "0.26.3",
3
+ "version": "0.26.4",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"