@llblab/pi-telegram 0.26.3 → 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 +26 -2
- package/CHANGELOG.md +8 -0
- package/lib/activity-verbosity.ts +1 -1
- package/lib/menu-model.ts +1 -1
- package/package.json +1 -1
package/BACKLOG.md
CHANGED
|
@@ -2,7 +2,31 @@
|
|
|
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 —
|
|
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
|
|
18
|
+
|
|
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.
|
|
20
|
+
|
|
21
|
+
Open work:
|
|
22
|
+
|
|
23
|
+
- [x] Render the first retained update as `Update N (K earlier omitted)` when earlier updates were dropped.
|
|
24
|
+
- [x] Update focused regression, changelog, and package metadata.
|
|
25
|
+
- [x] Publish and verify GitHub/npm release evidence for `0.26.4`.
|
|
26
|
+
|
|
27
|
+
Done when: omission metadata uses ordinary parentheses, validation passes, and the hotfix is published.
|
|
28
|
+
|
|
29
|
+
## P1 — Open Arguments Live Smoke
|
|
6
30
|
|
|
7
31
|
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
32
|
|
|
@@ -10,7 +34,7 @@ Open work:
|
|
|
10
34
|
|
|
11
35
|
- [x] Mark each Arguments child details node open by default without opening the tool root or later evidence nodes.
|
|
12
36
|
- [x] Update focused regressions, documentation, durable UI rules, changelog, and package metadata.
|
|
13
|
-
- [
|
|
37
|
+
- [x] Publish and verify GitHub/npm release evidence for `0.26.3`.
|
|
14
38
|
- [ ] Live-smoke the one-tap tool inspection path on Telegram mobile/Desktop.
|
|
15
39
|
|
|
16
40
|
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,13 @@
|
|
|
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
|
+
|
|
7
|
+
## 0.26.4: Quieter Update Omission Labels
|
|
8
|
+
|
|
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.
|
|
10
|
+
|
|
3
11
|
## 0.26.3: One-Tap Tool Arguments
|
|
4
12
|
|
|
5
13
|
- `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
|
-
? `
|
|
231
|
+
? ` (${tool.droppedUpdates} earlier omitted)`
|
|
232
232
|
: "";
|
|
233
233
|
evidenceBlocks.push(
|
|
234
234
|
createToolActivityDetail(`Update ${number}${omitted}`, update),
|
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 += `
|
|
358
|
+
label += ` (${entry.thinkingLevel})`;
|
|
359
359
|
}
|
|
360
360
|
return truncateTelegramButtonLabel(label);
|
|
361
361
|
}
|