@gotgenes/pi-subagents 17.3.0 → 17.5.0
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/CHANGELOG.md +18 -0
- package/docs/architecture/architecture.md +54 -9
- package/docs/decisions/0004-reconsider-ui-direction.md +8 -0
- package/docs/plans/0462-navigation-renderer-tui-components.md +338 -0
- package/docs/plans/0463-file-snapshot-source-evicted-agents.md +306 -0
- package/docs/retro/0445-native-session-navigation.md +65 -0
- package/docs/retro/0462-navigation-renderer-tui-components.md +105 -0
- package/docs/retro/0463-file-snapshot-source-evicted-agents.md +49 -0
- package/package.json +1 -1
- package/src/index.ts +9 -1
- package/src/lifecycle/subagent-manager.ts +47 -1
- package/src/lifecycle/subagent-session.ts +6 -0
- package/src/lifecycle/subagent.ts +6 -1
- package/src/ui/session-navigation.ts +77 -46
- package/src/ui/session-navigator.ts +200 -33
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [17.5.0](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v17.4.0...pi-subagents-v17.5.0) (2026-06-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **pi-subagents:** add file-snapshot transcript source ([06a9ee3](https://github.com/gotgenes/pi-packages/commit/06a9ee39b5f529f770c39cf8d8bdcefd1511bb7d))
|
|
14
|
+
* **pi-subagents:** retain evicted-agent descriptors in the manager ([3128e2a](https://github.com/gotgenes/pi-packages/commit/3128e2a44b94be9b976b74d24cf5127ca0944074))
|
|
15
|
+
* **pi-subagents:** source evicted-agent transcripts from disk in /subagent-sessions ([b4da762](https://github.com/gotgenes/pi-packages/commit/b4da762b0574b49e028518c62e7b2f11acaf1ad4))
|
|
16
|
+
|
|
17
|
+
## [17.4.0](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v17.3.0...pi-subagents-v17.4.0) (2026-06-23)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add getToolDefinition accessor on subagent record ([#462](https://github.com/gotgenes/pi-packages/issues/462)) ([e0bfdac](https://github.com/gotgenes/pi-packages/commit/e0bfdacec33120d0f52e6294f3676f4776aee4af))
|
|
23
|
+
* expose getToolDefinition on the transcript source seam ([#462](https://github.com/gotgenes/pi-packages/issues/462)) ([669f5ff](https://github.com/gotgenes/pi-packages/commit/669f5ff71523122ebb011adc6875b54d7001d53a))
|
|
24
|
+
* render /subagent-sessions transcript with Pi per-entry components ([#462](https://github.com/gotgenes/pi-packages/issues/462)) ([b832a43](https://github.com/gotgenes/pi-packages/commit/b832a437c97378f701033ef8e98c6f7805d7e7a8))
|
|
25
|
+
|
|
8
26
|
## [17.3.0](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v17.2.0...pi-subagents-v17.3.0) (2026-06-22)
|
|
9
27
|
|
|
10
28
|
|
|
@@ -918,9 +918,9 @@ The end state deletes `agent-menu.ts` — the god-command that bundles four unre
|
|
|
918
918
|
Rather than surgically mutate that doomed module (and the #1 churn hotspot `index.ts`) once per option, Phase 19 first stands up the replacement surfaces additively, then removes the now-orphaned subtree in a single terminal cut.
|
|
919
919
|
This keeps every responsibility's old surface live until its replacement exists (ADR-0004's no-interim-regression invariant), turns the three replacement steps into genuinely parallel work (none touch `agent-menu.ts`), and reduces `index.ts` edits from four surgical removals to one deregistration.
|
|
920
920
|
|
|
921
|
-
Seven steps in three phases:
|
|
921
|
+
Seven numbered steps in three phases, plus two follow-ups (Steps 4a–4b) carved from the #445 slice:
|
|
922
922
|
|
|
923
|
-
- **Phase A — stand up replacements (additive):** spike, settings command, background widget, native session navigation (Steps 1–4).
|
|
923
|
+
- **Phase A — stand up replacements (additive):** spike, settings command, background widget, native session navigation and its renderer/source follow-ups (Steps 1–4, 4a–4b).
|
|
924
924
|
- **Phase B — dissolve `/agents` (terminal cut):** delete the orphaned subtree in two deletion commits, one per subtree (Steps 5–6).
|
|
925
925
|
- **Phase C — test health:** consolidate the test clones that survive the cut (Step 7).
|
|
926
926
|
|
|
@@ -987,7 +987,7 @@ Outcome: widget shows only background agents; foreground/widget duplication elim
|
|
|
987
987
|
|
|
988
988
|
`Release: independent`
|
|
989
989
|
|
|
990
|
-
### Step 4 — Implement native session navigation ([#445])
|
|
990
|
+
### ✅ Step 4 — Implement native session navigation ([#445])
|
|
991
991
|
|
|
992
992
|
Smell: Category C (coupling) — the bespoke `ConversationViewer` re-implements session-transcript rendering when Pi's own machinery targets the already-persisted child session JSONL.
|
|
993
993
|
This step adds the new surface alongside the existing viewer; it does not touch `agent-menu.ts`.
|
|
@@ -1013,11 +1013,48 @@ Outcome: operator views any subagent's session through Pi's native machinery —
|
|
|
1013
1013
|
Landed ([#445], sliced): #445 shipped the first releasable vertical slice — the `/subagent-sessions` command (`src/ui/session-navigator.ts`), the pure selection/sourcing/text-render core (`src/ui/session-navigation.ts`), and the typed `agentMessages` accessor (`SessionMessage` on `SubagentSession`/`Subagent`).
|
|
1014
1014
|
It is **live-source only** behind a renderer-agnostic `TranscriptSource` seam, rendered via Pi's `serializeConversation` text.
|
|
1015
1015
|
With the `manager.listAgents()`-only candidate set, no listed record is ever session-disposed (dispose-and-delete are atomic), so the file-snapshot branch has no reachable caller and was deferred to keep `fallow dead-code` clean.
|
|
1016
|
-
|
|
1017
|
-
The step heading stays unchecked until both land.
|
|
1016
|
+
Step 4 (#445, the slice) is complete and released (`pi-subagents` v17.3.0); the remaining work is now tracked as two follow-up steps behind the same seam: Step 4a ([#462]) upgrades the renderer from `serializeConversation` text to Pi's per-entry TUI components (gates Step 5 for rendering parity); Step 4b ([#463]) broadens the candidate set to evicted agents and adds the file-snapshot source (`parseSessionEntries` → `buildSessionContext`, independent).
|
|
1018
1017
|
|
|
1019
1018
|
`Release: independent` (spike-gated)
|
|
1020
1019
|
|
|
1020
|
+
### ✅ Step 4a — Upgrade native-navigation renderer to Pi TUI components ([#462])
|
|
1021
|
+
|
|
1022
|
+
Smell: Category C (coupling) — the #445 slice renders the transcript as `serializeConversation` plain text, while the bespoke `ConversationViewer` it replaces renders richer per-message formatting.
|
|
1023
|
+
Until the native renderer reaches parity, the terminal cut (Step 5) cannot delete the bespoke viewer without a fidelity regression.
|
|
1024
|
+
This step swaps the renderer behind the existing `TranscriptSource` seam (`src/ui/session-navigation.ts` / `session-navigator.ts`) for Pi's per-entry components (`AssistantMessageComponent` / `ToolExecutionComponent` / …); selection and sourcing are untouched.
|
|
1025
|
+
|
|
1026
|
+
Gates Step 5: per [ADR-0004]'s no-interim-regression invariant, the native navigator must reach rendering parity with the bespoke viewer before Step 5 deletes it.
|
|
1027
|
+
|
|
1028
|
+
Outcome: native session navigation renders at parity with the removed `ConversationViewer`; Step 5 can delete the bespoke viewer with no fidelity regression.
|
|
1029
|
+
|
|
1030
|
+
Landed ([#462]): the renderer now mounts Pi's per-entry components (`AssistantMessageComponent` / `ToolExecutionComponent` / `BashExecutionComponent` / `UserMessageComponent` / `CompactionSummaryMessageComponent` / `BranchSummaryMessageComponent` / `SkillInvocationMessageComponent`) into a `Container`, mirroring Pi's own `renderSessionContext` mapping.
|
|
1031
|
+
The `TranscriptOverlay` caches that `Container` and rebuilds it on source change only (Pi's `rebuildChatFromMessages` path), keeping the lightweight `◍` streaming indicator.
|
|
1032
|
+
Tool calls render with their real `ToolDefinition`, resolved through a dependency-safe `getToolDefinition` read accessor on the record (mirroring `agentMessages`) surfaced on the `TranscriptSource` seam — no inbound call into the core.
|
|
1033
|
+
The pure `session-navigation.ts` sheds `renderTranscriptLines`/`serializeConversation`; rendering now lives in the SDK/TUI `session-navigator.ts`, which threads `cwd` from the command context.
|
|
1034
|
+
`custom`-role messages are skipped (the bespoke viewer never rendered them either).
|
|
1035
|
+
Selection and sourcing are untouched; native navigation now renders at parity, unblocking Step 5 for rendering fidelity.
|
|
1036
|
+
|
|
1037
|
+
`Release: independent`
|
|
1038
|
+
|
|
1039
|
+
### ✅ Step 4b — File-snapshot source for evicted agents ([#463])
|
|
1040
|
+
|
|
1041
|
+
Smell: Category C (coupling) — the #445 slice sources transcripts live from `manager.listAgents()` only; an agent evicted by the 10-minute cleanup sweep has a persisted session JSONL but no live record, so it is unreachable.
|
|
1042
|
+
This step adds the file-snapshot `TranscriptSource` branch (`parseSessionEntries(readFile(outputFile))` → drop the `SessionHeader` → `buildSessionContext(...).messages`) and broadens the candidate set to evicted agents, behind the same seam; the renderer is untouched.
|
|
1043
|
+
|
|
1044
|
+
Independent: this is a new capability the bespoke viewer never had, so it gates nothing and is not a Step 5 prerequisite.
|
|
1045
|
+
Best sequenced after Step 4a (shared renderer), but carries no hard dependency.
|
|
1046
|
+
|
|
1047
|
+
Outcome: the operator can view a fully-evicted agent's transcript from its persisted session file; the dual-source design recorded in [ADR-0004] Addendum 2 is fully realized.
|
|
1048
|
+
|
|
1049
|
+
Landed ([#463]): `fileSnapshotSource(outputFile, readFile)` lands in the pure `session-navigation.ts` (`parseSessionEntries` → drop the `SessionHeader` → `buildSessionContext(...).messages`; a static no-subscribe, no-streaming source).
|
|
1050
|
+
The candidate set is broadened via **manager-retained descriptors**, not a directory scan: the persisted child session carries no subagent `type`/`description` (those live only on the in-memory record), so a scan would yield degraded labels and parse every file per open.
|
|
1051
|
+
Instead `SubagentManager.cleanup()` stashes a lightweight `EvictedSubagent` descriptor (label fields + `outputFile`, no messages) before disposing a record with a persisted file, exposed via `listEvicted()` and cleared by `clearCompleted()`/`dispose()`.
|
|
1052
|
+
`NavigationEntry` became a `live | evicted` discriminated union; the handler selects `liveSource` vs `fileSnapshotSource` by kind inside a `try/catch` (an unreadable file notifies and skips), and `index.ts` injects `readFileSync`.
|
|
1053
|
+
Evicted entries carry an `· evicted (snapshot)` label marker.
|
|
1054
|
+
Coverage is in-session evictions (the sweep's only targets); old-session orphan files — the ones a scan would surface with degraded labels — are out of scope.
|
|
1055
|
+
|
|
1056
|
+
`Release: independent`
|
|
1057
|
+
|
|
1021
1058
|
### Step 5 — Dissolve `/agents` and remove the conversation-viewer subtree ([#442])
|
|
1022
1059
|
|
|
1023
1060
|
Smell: Category A (dead subsystem) plus Category B (oversized) — once Steps 2–4 re-home all four menu responsibilities, the `/agents` command and everything reachable only from `agent-menu.ts` is an unreferenced subtree.
|
|
@@ -1079,20 +1116,25 @@ flowchart LR
|
|
|
1079
1116
|
S1["✅ Step 1 - Spike (#446)"]
|
|
1080
1117
|
S2["✅ Step 2 - Settings command (#447)"]
|
|
1081
1118
|
S3["✅ Step 3 - Background widget (#444)"]
|
|
1082
|
-
S4["Step 4 - Native session nav (#445)"]
|
|
1119
|
+
S4["✅ Step 4 - Native session nav slice (#445)"]
|
|
1120
|
+
S4a["✅ Step 4a - Renderer to TUI components (#462)"]
|
|
1121
|
+
S4b["✅ Step 4b - File-snapshot source (#463)"]
|
|
1083
1122
|
S5["Step 5 - Dissolve /agents + viewer (#442)"]
|
|
1084
1123
|
S6["Step 6 - Remove definition mgmt (#441)"]
|
|
1085
1124
|
S7["Step 7 - Test clones (#443)"]
|
|
1086
1125
|
|
|
1087
1126
|
S1 --> S4
|
|
1127
|
+
S4 --> S4a
|
|
1128
|
+
S4 --> S4b
|
|
1088
1129
|
S2 --> S5
|
|
1089
1130
|
S3 --> S5
|
|
1090
|
-
|
|
1131
|
+
S4a --> S5
|
|
1091
1132
|
S5 --> S6
|
|
1092
1133
|
S6 --> S7
|
|
1093
1134
|
```
|
|
1094
1135
|
|
|
1095
|
-
The terminal cut (Step 5) depends on all three replacements — settings (Step 2), widget (Step 3), and session navigation (Step
|
|
1136
|
+
The terminal cut (Step 5) depends on all three replacements — settings (Step 2), widget (Step 3), and session navigation **at rendering parity** (Step 4a, which completes the #445 slice) — because each of the four `/agents` options must have its responsibility re-homed, and the viewer replacement at parity, before its branch can die.
|
|
1137
|
+
Step 4b (file-snapshot source) is a new capability and gates nothing.
|
|
1096
1138
|
The old `S1 → S6 → S7` chain hid the widget dependency; this diagram makes it explicit.
|
|
1097
1139
|
|
|
1098
1140
|
### Parallel tracks
|
|
@@ -1100,6 +1142,7 @@ The old `S1 → S6 → S7` chain hid the widget dependency; this diagram makes i
|
|
|
1100
1142
|
- **Track A — Replacements (Steps 1–4):** the spike gates session navigation (Step 1 → Step 4); settings (Step 2) and the background widget (Step 3) are independent of the spike and of each other.
|
|
1101
1143
|
None of these steps edits `agent-menu.ts`, so they carry no shared-file collision on the menu — genuinely parallelizable, unlike the prior plan's Steps 2/3/5, which all collided on `agent-menu.ts` and `index.ts`.
|
|
1102
1144
|
Steps 2 and 4 each append a command registration to `index.ts` (additive, low-conflict).
|
|
1145
|
+
Steps 4a (renderer parity) and 4b (file-snapshot source) complete the #445 slice behind its `TranscriptSource` seam; Step 4a gates Step 5, Step 4b is independent.
|
|
1103
1146
|
- **Track B — Dissolution (Steps 5 → 6):** the terminal cut, gated on all of Track A landing.
|
|
1104
1147
|
Hub-first ordering is forced: Step 5 deletes `agent-menu.ts` (orphaning the leaves), then Step 6 `git rm`s the now-orphaned definition-management subtree.
|
|
1105
1148
|
- **Track C — Test health (Step 7):** clone consolidation, run after the cut so no surviving helper is extracted into a doomed file.
|
|
@@ -1108,7 +1151,7 @@ The old `S1 → S6 → S7` chain hid the widget dependency; this diagram makes i
|
|
|
1108
1151
|
|
|
1109
1152
|
- **Batch "dissolve-agents":** Steps 5, 6 (ship together; tail = Step 6).
|
|
1110
1153
|
Depends on Steps 2, 3, 4 already merged.
|
|
1111
|
-
- Independently releasable: Steps 1, 2, 3, 4, 7.
|
|
1154
|
+
- Independently releasable: Steps 1, 2, 3, 4, 4a, 4b, 7.
|
|
1112
1155
|
|
|
1113
1156
|
## Refactoring history
|
|
1114
1157
|
|
|
@@ -1230,5 +1273,7 @@ The upstream test suite is run periodically as a regression canary for the sessi
|
|
|
1230
1273
|
[#445]: https://github.com/gotgenes/pi-packages/issues/445
|
|
1231
1274
|
[#446]: https://github.com/gotgenes/pi-packages/issues/446
|
|
1232
1275
|
[#447]: https://github.com/gotgenes/pi-packages/issues/447
|
|
1276
|
+
[#462]: https://github.com/gotgenes/pi-packages/issues/462
|
|
1277
|
+
[#463]: https://github.com/gotgenes/pi-packages/issues/463
|
|
1233
1278
|
[ADR-0002]: ../decisions/0002-extensions-on-a-minimal-core.md
|
|
1234
1279
|
[ADR-0004]: ../decisions/0004-reconsider-ui-direction.md
|
|
@@ -248,7 +248,15 @@ This matches the bespoke viewer's current reach (gated on `record.isSessionReady
|
|
|
248
248
|
A foreground agent is navigable only _after_ it completes — while it runs, the root turn is blocked on it — whereas a background agent is navigable live.
|
|
249
249
|
The background widget ([#444]) remains the optional secondary selection gesture for background agents; the command is the primary, unit-testable surface.
|
|
250
250
|
|
|
251
|
+
**Evicted-agent candidate set ([#463]).**
|
|
252
|
+
Step 4b realizes the file-snapshot branch for fully-evicted agents.
|
|
253
|
+
The candidate set is broadened via **manager-retained descriptors**, not a directory scan of the tasks directory: the persisted child session carries no subagent `type`/`description` (those live only on the in-memory record), so a scan yields degraded labels and parses every file per picker open.
|
|
254
|
+
The cleanup sweep instead stashes a lightweight `EvictedSubagent` descriptor (label fields + `outputFile`, no messages) before disposing a record, preserving rich labels and bounded memory.
|
|
255
|
+
This covers in-session evictions — the sweep's only targets, since a fresh manager per session never reloads prior-process subagents.
|
|
256
|
+
The "render from the file snapshot" mechanism for an evicted agent (above) is unchanged; only the candidate-set _enumeration_ is pinned to descriptors.
|
|
257
|
+
|
|
251
258
|
[#444]: https://github.com/gotgenes/pi-packages/issues/444
|
|
252
259
|
[#445]: https://github.com/gotgenes/pi-packages/issues/445
|
|
253
260
|
[#446]: https://github.com/gotgenes/pi-packages/issues/446
|
|
254
261
|
[#447]: https://github.com/gotgenes/pi-packages/issues/447
|
|
262
|
+
[#463]: https://github.com/gotgenes/pi-packages/issues/463
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
---
|
|
2
|
+
issue: 462
|
|
3
|
+
issue_title: "pi-subagents: upgrade /subagent-sessions renderer to Pi per-entry TUI components"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Upgrade `/subagent-sessions` renderer to Pi per-entry TUI components
|
|
7
|
+
|
|
8
|
+
## Release Recommendation
|
|
9
|
+
|
|
10
|
+
**Release:** ship independently
|
|
11
|
+
|
|
12
|
+
Phase 19 Step 4a ([#462]) carries `Release: independent` in the architecture roadmap.
|
|
13
|
+
It swaps the renderer behind the existing `TranscriptSource` seam; it is not a member of Phase 19's only batch ("dissolve-agents", Steps 5–6, [#442]/[#441]).
|
|
14
|
+
Step 4a gates Step 5 ([#442]) for rendering parity, but a gate is a sequencing dependency, not a release batch — this step ships on its own once it lands.
|
|
15
|
+
|
|
16
|
+
## Problem Statement
|
|
17
|
+
|
|
18
|
+
The #445 slice ([#445]) stood up native session navigation — list → pick → read-only scrollable transcript — behind a renderer-agnostic `TranscriptSource` seam, using Pi's `serializeConversation` plain text as the first renderer.
|
|
19
|
+
That text dump is lower fidelity than the bespoke `ConversationViewer` it is slated to replace, which renders richer per-message formatting (tool call/result blocks, bash execution, markdown).
|
|
20
|
+
ADR-0004 Decision B's full intent is native-fidelity rendering through Pi's **own** interactive components ([ADR-0004] Addendum, Finding 1): `AssistantMessageComponent`, `ToolExecutionComponent`, `UserMessageComponent`, `BashExecutionComponent`, `CompactionSummaryMessageComponent`, `BranchSummaryMessageComponent`, and the skill-block components.
|
|
21
|
+
This follow-up swaps the renderer behind the same seam — selection and sourcing are untouched — so the native navigator reaches rendering parity with the bespoke viewer, which unblocks Step 5's deletion of that viewer without a fidelity regression.
|
|
22
|
+
|
|
23
|
+
## Goals
|
|
24
|
+
|
|
25
|
+
- Replace the `serializeConversation` text path with a per-entry Pi TUI component tree, mirroring Pi's own `renderSessionContext` message→component mapping.
|
|
26
|
+
- Drive the component tree by **rebuild-on-change**: on each `TranscriptSource` change, clear and reconstruct the cached component `Container` from the current message snapshot (Pi's own `rebuildChatFromMessages` path); each paint reuses the cached tree, so markdown highlighting does not re-run per frame.
|
|
27
|
+
- Render tool calls at full fidelity by passing each tool's real `ToolDefinition`, sourced through a new dependency-safe `getToolDefinition` read accessor on the record (mirroring the existing `agentMessages` accessor) and surfaced on the `TranscriptSource` seam.
|
|
28
|
+
- Keep the existing lightweight `◍ describeActivity` streaming-indicator line for a running agent's live activity (the high-frequency streaming text it absorbs is why rebuild-on-change stays cheap).
|
|
29
|
+
- Confirm rendering parity with the bespoke `ConversationViewer` so Step 5 ([#442]) can delete it with no fidelity regression.
|
|
30
|
+
|
|
31
|
+
Non-breaking: this is an internal renderer swap behind the seam.
|
|
32
|
+
No public export, command name, default, or observable behavior changes.
|
|
33
|
+
The internal `renderTranscriptLines` export is removed, but its only consumers are within this package (the overlay and its tests).
|
|
34
|
+
|
|
35
|
+
## Non-Goals
|
|
36
|
+
|
|
37
|
+
- Do **not** implement the **file-snapshot** source branch (`parseSessionEntries` → `buildSessionContext`) or broaden the candidate set to evicted agents — that is Step 4b ([#463]), independent and unblocked by this step.
|
|
38
|
+
- Do **not** add in-session steering or any interactive gesture — the overlay stays strictly read-only; steering remains in `steer_subagent` and the widget.
|
|
39
|
+
- Do **not** touch `agent-menu.ts`, `conversation-viewer.ts`, or `message-formatters.ts` — they stay live until the terminal cut (Step 5, [#442]).
|
|
40
|
+
- Do **not** change `listNavigableAgents` selection or the `liveSource` sourcing semantics — only the renderer changes, plus the additive `getToolDefinition` accessor.
|
|
41
|
+
- Do **not** render `custom`-role messages through `CustomMessageComponent` — it requires the session's `extensionRunner.getMessageRenderer`, which the navigator does not hold (see Open Questions); custom messages are skipped, matching the bespoke viewer, which never rendered them either.
|
|
42
|
+
|
|
43
|
+
## Background
|
|
44
|
+
|
|
45
|
+
Relevant existing modules:
|
|
46
|
+
|
|
47
|
+
- `src/ui/session-navigation.ts` (pure) — owns selection and sourcing: `listNavigableAgents`, `liveSource`, and the interfaces `NavigableSubagent`, `NavigationEntry`, `StreamingState`, `TranscriptSource`.
|
|
48
|
+
It currently also owns `renderTranscriptLines(source): string[]` (the `serializeConversation` text path) and its `toMessages` adapter — these are text rendering via a pure SDK utility.
|
|
49
|
+
- `src/ui/session-navigator.ts` (SDK/TUI consumer) — owns `TranscriptOverlay` (a read-only scrollable `Component`) and `SessionNavigatorHandler`.
|
|
50
|
+
`TranscriptOverlay.buildContentLines` currently calls `renderTranscriptLines(this.source)`, then wraps each line with the injected `wrapText`.
|
|
51
|
+
- `src/lifecycle/subagent-session.ts` — `SubagentSession` wraps `_session: AgentSession`.
|
|
52
|
+
It already exposes `get agentMessages(): readonly SessionMessage[]` returning `this._session.messages`.
|
|
53
|
+
The SDK `AgentSession` exposes `getToolDefinition(name: string): ToolDefinition | undefined` (a definition-first registry retained per session).
|
|
54
|
+
- `src/lifecycle/subagent.ts` — `Subagent` delegates `get agentMessages()` to `this.subagentSession?.agentMessages ?? []`; this is the exact pattern the new `getToolDefinition` accessor follows.
|
|
55
|
+
- `src/ui/display.ts` — `describeActivity(activeTools, responseText)`, `getDisplayName`, `formatDuration`.
|
|
56
|
+
- `src/index.ts` — registers the `subagent-sessions` command; the handler already receives `ctx` (which carries `ctx.cwd: string` and `ctx.ui`).
|
|
57
|
+
|
|
58
|
+
Pi SDK facts verified for this plan (against the bundled `@earendil-works/pi-coding-agent`):
|
|
59
|
+
|
|
60
|
+
- The per-entry components are all re-exported from the public root barrel: `AssistantMessageComponent`, `UserMessageComponent`, `ToolExecutionComponent`, `BashExecutionComponent`, `CompactionSummaryMessageComponent`, `BranchSummaryMessageComponent`, `SkillInvocationMessageComponent`, `CustomMessageComponent`.
|
|
61
|
+
`parseSkillBlock`, `getMarkdownTheme`, and the `ToolDefinition` type are also public.
|
|
62
|
+
- Component constructors are heterogeneous and stateful (`Container` subclasses):
|
|
63
|
+
- `AssistantMessageComponent(message?, hideThinkingBlock?, markdownTheme?, hiddenThinkingLabel?)`.
|
|
64
|
+
- `UserMessageComponent(text: string, markdownTheme?)`.
|
|
65
|
+
- `ToolExecutionComponent(toolName, toolCallId, args, options, toolDefinition, ui: TUI, cwd: string)`, with `updateResult(result)` called separately to attach the tool result.
|
|
66
|
+
- `BashExecutionComponent(command, ui: TUI, excludeFromContext?)`, with `appendOutput` / `setComplete`.
|
|
67
|
+
- `CompactionSummaryMessageComponent(message, markdownTheme?)` / `BranchSummaryMessageComponent(message, markdownTheme?)`.
|
|
68
|
+
- Pi's own message→component mapping is `interactive-mode.ts`'s `renderSessionContext(sessionContext)` (and the `addMessageToChat` helper it calls); `rebuildChatFromMessages()` is `chatContainer.clear()` + `renderSessionContext(buildSessionContext())`.
|
|
69
|
+
This plan mirrors that mapping; the `toolResult` → pending-tool match (`renderedPendingTools.get(toolCallId).updateResult(message)`) is reproduced.
|
|
70
|
+
- `Container` (from `@earendil-works/pi-tui`) exposes `addChild`, `clear`, and `render(width): string[]`, which stacks children vertically — so a `Container` of per-entry components renders to the `string[]` the existing scroll overlay already consumes.
|
|
71
|
+
- No higher-level "message list" / "transcript" renderer is exported from the SDK — the mapping must be mirrored, not imported.
|
|
72
|
+
|
|
73
|
+
AGENTS.md / package constraints:
|
|
74
|
+
|
|
75
|
+
- pi-subagents is a minimal core; the navigator is an in-core reactive consumer with **no inbound call** into the core.
|
|
76
|
+
The new `getToolDefinition` accessor is a read-only getter (like `agentMessages`) — it adds no inbound call and preserves the Phase 18 spine invariants ([#422]–[#425]).
|
|
77
|
+
This is the dependency-safe answer to "wire real tool definitions": arrows still point inward (navigator → record getter → wrapped `AgentSession.getToolDefinition`); `SubagentManager` tracks nothing extra and no dependency is inverted.
|
|
78
|
+
- Keep Pi SDK *coupling* out of pure helpers: per-entry components require a `TUI`, `cwd`, and `markdownTheme`, so the component-building renderer lives in the SDK/TUI module `session-navigator.ts`, not in the pure `session-navigation.ts`.
|
|
79
|
+
The `serializeConversation` text renderer leaves the pure module entirely.
|
|
80
|
+
- Use narrow interface types (not the concrete `Subagent`) at the seam — unchanged from the slice.
|
|
81
|
+
|
|
82
|
+
## Design Overview
|
|
83
|
+
|
|
84
|
+
The `TranscriptSource` seam is the change point.
|
|
85
|
+
Its sourcing surface (`getMessages` / `subscribe` / `streaming`) is unchanged except for one additive method (`getToolDefinition`); the **renderer** moves from the pure module into the SDK/TUI module and changes shape from text to a component tree.
|
|
86
|
+
|
|
87
|
+
### Dependency-safe tool definitions
|
|
88
|
+
|
|
89
|
+
The SDK `AgentSession` already retains a definition-first tool registry and exposes `getToolDefinition(name)`.
|
|
90
|
+
A new read accessor surfaces it through the record, mirroring `agentMessages`:
|
|
91
|
+
|
|
92
|
+
```typescript
|
|
93
|
+
// SubagentSession
|
|
94
|
+
getToolDefinition(name: string): ToolDefinition | undefined {
|
|
95
|
+
return this._session.getToolDefinition(name);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// Subagent
|
|
99
|
+
getToolDefinition(name: string): ToolDefinition | undefined {
|
|
100
|
+
return this.subagentSession?.getToolDefinition(name);
|
|
101
|
+
}
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
This is a pure outward read — no inbound call, no `SubagentManager` bookkeeping, no dependency inversion.
|
|
105
|
+
|
|
106
|
+
### Seam: `TranscriptSource` gains `getToolDefinition`
|
|
107
|
+
|
|
108
|
+
`TranscriptSource` (and the `NavigableSubagent` record interface it sources from) gain the lookup; `liveSource` delegates to the record:
|
|
109
|
+
|
|
110
|
+
```typescript
|
|
111
|
+
export interface TranscriptSource {
|
|
112
|
+
getMessages(): readonly SessionMessage[];
|
|
113
|
+
subscribe(onChange: () => void): (() => void) | undefined;
|
|
114
|
+
streaming(): StreamingState | undefined;
|
|
115
|
+
getToolDefinition(name: string): ToolDefinition | undefined; // new
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
A future file-snapshot source (Step 4b) returns `undefined` here → generic fallback tool rendering, with no renderer change.
|
|
120
|
+
Placing the lookup on the seam (not on the renderer's separate params) keeps the seam the single change point across both follow-ups.
|
|
121
|
+
|
|
122
|
+
### Renderer: per-entry component tree (`session-navigator.ts`)
|
|
123
|
+
|
|
124
|
+
A new function builds a `Container` of per-entry components from a message snapshot, mirroring `renderSessionContext`:
|
|
125
|
+
|
|
126
|
+
```typescript
|
|
127
|
+
function buildTranscriptComponents(
|
|
128
|
+
messages: readonly SessionMessage[],
|
|
129
|
+
opts: { tui: TUI; cwd: string; markdownTheme: MarkdownTheme; getToolDefinition: (name: string) => ToolDefinition | undefined },
|
|
130
|
+
): Container {
|
|
131
|
+
const container = new Container();
|
|
132
|
+
const pendingTools = new Map<string, ToolExecutionComponent>();
|
|
133
|
+
for (const message of messages) {
|
|
134
|
+
switch (message.role) {
|
|
135
|
+
case "assistant": { /* AssistantMessageComponent + per-toolCall ToolExecutionComponent (track pending by id) */ }
|
|
136
|
+
case "toolResult": { /* pendingTools.get(toolCallId)?.updateResult(message) */ }
|
|
137
|
+
case "user": { /* parseSkillBlock → SkillInvocation(+UserMessage) | UserMessageComponent */ }
|
|
138
|
+
case "bashExecution": { /* BashExecutionComponent + appendOutput + setComplete */ }
|
|
139
|
+
case "compactionSummary": { /* CompactionSummaryMessageComponent */ }
|
|
140
|
+
case "branchSummary": { /* BranchSummaryMessageComponent */ }
|
|
141
|
+
// custom: skipped (no message renderer available — see Open Questions)
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
return container;
|
|
145
|
+
}
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
`ToolExecutionComponent` is constructed with `opts.getToolDefinition(content.name)` for its definition, `opts.tui`, and `opts.cwd`, and `{ showImages: false }` (the read-only viewer does not render images).
|
|
149
|
+
Spacers between entries follow Pi's own spacing in `addMessageToChat`.
|
|
150
|
+
|
|
151
|
+
### Overlay: rebuild-on-change with a cached `Container`
|
|
152
|
+
|
|
153
|
+
`TranscriptOverlay` caches the component tree and rebuilds it only when the source changes — never per frame:
|
|
154
|
+
|
|
155
|
+
```typescript
|
|
156
|
+
// constructor: build once, then subscribe
|
|
157
|
+
this.content = this.rebuild();
|
|
158
|
+
this.unsubscribe = source.subscribe(() => {
|
|
159
|
+
if (this.closed) return;
|
|
160
|
+
this.content = this.rebuild(); // rebuild on change only
|
|
161
|
+
this.tui.requestRender();
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
private rebuild(): Container {
|
|
165
|
+
return buildTranscriptComponents(this.source.getMessages(), {
|
|
166
|
+
tui: this.tui, cwd: this.cwd, markdownTheme: this.markdownTheme,
|
|
167
|
+
getToolDefinition: (name) => this.source.getToolDefinition(name),
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
private buildContentLines(innerW: number): string[] {
|
|
172
|
+
const lines = this.content.render(innerW); // components own their own wrapping
|
|
173
|
+
const streaming = this.source.streaming();
|
|
174
|
+
if (streaming) lines.push("", `◍ ${describeActivity(streaming.activeTools, streaming.responseText)}`);
|
|
175
|
+
return lines.map((l) => truncateToWidth(l, innerW)); // defensive truncate; no re-wrap
|
|
176
|
+
}
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
The per-frame `render(width)` chrome (header/footer/scroll math) is unchanged; only the content source changes from `renderTranscriptLines(source)` to the cached `Container`.
|
|
180
|
+
Because the components already wrap to width, the overlay no longer re-wraps each line — the injected `wrapText` collaborator is removed from `TranscriptOverlayOptions` and the handler call site.
|
|
181
|
+
|
|
182
|
+
### Handler / registration
|
|
183
|
+
|
|
184
|
+
`SessionNavigatorParams` gains `cwd: string`; `index.ts` passes `ctx.cwd`:
|
|
185
|
+
|
|
186
|
+
```typescript
|
|
187
|
+
await sessionNavigator.handle({ ui: ctx.ui, agents: manager.listAgents(), registry, cwd: ctx.cwd });
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
The handler obtains `markdownTheme` via `getMarkdownTheme()` (current theme; Pi has initialized it at startup) and threads `cwd` + `markdownTheme` into the `TranscriptOverlay` it mounts through `ui.custom`.
|
|
191
|
+
`manager.listAgents()` is still called in the registration, never inside the navigator — the navigator stays a reactive consumer with no inbound core call.
|
|
192
|
+
|
|
193
|
+
### Consumer call-site sketch (Tell-Don't-Ask / LoD check)
|
|
194
|
+
|
|
195
|
+
The renderer talks only to `TranscriptSource`: it reads `source.getMessages()` and `source.getToolDefinition(name)`, never reaching through the record to a stranger.
|
|
196
|
+
`liveSource.getToolDefinition` delegates to `record.getToolDefinition` (the record's own getter), which delegates to the wrapped `AgentSession` internally — a one-hop delegation, not a `record.session.x.y` chain.
|
|
197
|
+
No output arguments: the renderer constructs and returns a `Container`; nothing writes back into the record or the source.
|
|
198
|
+
|
|
199
|
+
### Design-review findings
|
|
200
|
+
|
|
201
|
+
| Smell | Location | Evidence | Result |
|
|
202
|
+
| ------------------------------ | ------------------------------ | ---------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- |
|
|
203
|
+
| Dependency width | `TranscriptSource` (4 methods) | renderer reads `getMessages`/`streaming`/`getToolDefinition`; overlay reads `subscribe` | Acceptable — cohesive sourcing seam; every method is a real read |
|
|
204
|
+
| LoD violation | `liveSource.getToolDefinition` | one-hop delegation `record.getToolDefinition` → `AgentSession.getToolDefinition` | None — delegation through the record's own getter, no chain |
|
|
205
|
+
| Output argument | `buildTranscriptComponents` | returns a `Container`; `updateResult` mutates the tool component it owns, not a received bag | None |
|
|
206
|
+
| Concrete-class leak | seam interfaces | renderer depends on `TranscriptSource`, not the concrete `Subagent` | None — narrow interface |
|
|
207
|
+
| Pi SDK coupling in pure module | `session-navigation.ts` | component rendering moves out to `session-navigator.ts`; pure module keeps selection + sourcing only | Improved — pure module sheds the `serializeConversation` renderer |
|
|
208
|
+
|
|
209
|
+
The new collaborator (`buildTranscriptComponents`) gives behavior to data — it maps message data to stateful components and returns a renderable tree — not procedure-splitting.
|
|
210
|
+
|
|
211
|
+
### Edge cases
|
|
212
|
+
|
|
213
|
+
- Empty history (`getMessages()` is `[]`) → empty `Container`; the overlay renders an empty viewport (no crash); the existing "no sessions" notify path is unchanged at the selection layer.
|
|
214
|
+
- Running agent → component tree for finalized messages plus the appended `◍ describeActivity` indicator; a `subscribeToUpdates` event rebuilds the tree and re-renders.
|
|
215
|
+
- A partially-streamed assistant message present in `getMessages()` → rendered by `AssistantMessageComponent`; the indicator also shows activity (parity with the bespoke viewer, which showed both).
|
|
216
|
+
- `toolResult` with no matching pending tool (out-of-order / truncated history) → no-op (matches Pi's `renderedPendingTools.get` miss).
|
|
217
|
+
- `getToolDefinition` returns `undefined` (definition not registered, or a future file source) → `ToolExecutionComponent` generic fallback rendering.
|
|
218
|
+
- Very narrow terminal width → `render` returns `[]` below the minimum width (unchanged chrome guard).
|
|
219
|
+
|
|
220
|
+
## Module-Level Changes
|
|
221
|
+
|
|
222
|
+
- **Changed** `src/types.ts` — re-export or reference the SDK `ToolDefinition` type for the seam interfaces (import from `@earendil-works/pi-coding-agent`); confirm a consumer imports it from the barrel if added there (no speculative re-export).
|
|
223
|
+
- **Changed** `src/lifecycle/subagent-session.ts` — add `getToolDefinition(name): ToolDefinition | undefined` delegating to `this._session.getToolDefinition(name)`.
|
|
224
|
+
- **Changed** `src/lifecycle/subagent.ts` — add `getToolDefinition(name): ToolDefinition | undefined` delegating to `this.subagentSession?.getToolDefinition(name)`.
|
|
225
|
+
- **Changed** `src/ui/session-navigation.ts` — add `getToolDefinition` to `NavigableSubagent` and `TranscriptSource`; `liveSource` delegates it.
|
|
226
|
+
**Remove** `renderTranscriptLines`, its `toMessages` adapter, and the `serializeConversation` + `describeActivity` imports (rendering moves to `session-navigator.ts`).
|
|
227
|
+
- **Changed** `src/ui/session-navigator.ts` — add `buildTranscriptComponents`; rewrite `TranscriptOverlay` to cache + rebuild the `Container` (drop `wrapText` from `TranscriptOverlayOptions`); add `describeActivity`, `getMarkdownTheme`, `Container`, and the per-entry component imports; add `cwd` (+ `markdownTheme` wiring) to `SessionNavigatorParams`/the overlay.
|
|
228
|
+
- **Changed** `src/index.ts` — pass `cwd: ctx.cwd` into `sessionNavigator.handle(...)`.
|
|
229
|
+
- **Changed** `test/lifecycle/subagent-session.test.ts`, `test/lifecycle/subagent.test.ts` — add `getToolDefinition` accessor tests.
|
|
230
|
+
- **Changed** `test/ui/session-navigation.test.ts` — remove the `renderTranscriptLines` describe block; add `liveSource.getToolDefinition` delegation; add `getToolDefinition` to the `makeNavigable` factory.
|
|
231
|
+
- **Changed** `test/ui/session-navigator.test.ts` — assert component-rendered content (text still appears via markdown), add a tool-call render test (stub `getToolDefinition`), add `getToolDefinition` to `fakeSource`/`makeNavigable`, pass `cwd` in handler tests, drop `wrapText`.
|
|
232
|
+
|
|
233
|
+
Removed-symbol grep: `renderTranscriptLines` is the sole removed export.
|
|
234
|
+
Its consumers are `src/ui/session-navigator.ts` (rewritten this issue) and `test/ui/session-navigation.test.ts` (block removed); confirmed no other `src/`/`test/` references and no `.pi/skills/package-pi-subagents/SKILL.md` mention.
|
|
235
|
+
|
|
236
|
+
Doc / skill updates:
|
|
237
|
+
|
|
238
|
+
- `docs/architecture/architecture.md` — flip Step 4a's status to landed (mirroring the Step 4 "Landed" note style) and update the Phase 19 Mermaid node label `S4a` from pending to done; record that the native navigator now renders at parity, unblocking Step 5.
|
|
239
|
+
Defer the status-line/Mermaid flip to ship time if preferred (matches the [#447] precedent), but the rescoping note belongs in this issue's doc step.
|
|
240
|
+
- `.pi/skills/package-pi-subagents/SKILL.md` — the UI domain count is a coarse summary (no file added or removed here); leave unless the operator asks otherwise.
|
|
241
|
+
|
|
242
|
+
## Test Impact Analysis
|
|
243
|
+
|
|
244
|
+
1. **New tests enabled.**
|
|
245
|
+
The `getToolDefinition` accessor gets direct unit tests on `SubagentSession` and `Subagent` (mirroring `agentMessages`).
|
|
246
|
+
The component renderer is exercised through `TranscriptOverlay` against a `fakeSource` — asserting that message text renders (via the components) and that a tool call renders with its definition.
|
|
247
|
+
2. **Existing tests that become redundant.**
|
|
248
|
+
The `renderTranscriptLines` describe block in `session-navigation.test.ts` is removed — the function it tests is gone (rendering moved and changed shape).
|
|
249
|
+
No other tests become redundant.
|
|
250
|
+
3. **Existing tests that must stay as-is.**
|
|
251
|
+
`listNavigableAgents` and `liveSource` selection/sourcing tests stay (selection and sourcing semantics are unchanged; `liveSource` only gains the `getToolDefinition` delegation).
|
|
252
|
+
All bespoke-viewer and menu tests (`conversation-viewer.test.ts`, `message-formatters.test.ts`, `agent-menu.test.ts`) stay untouched — Step 5 deletes those.
|
|
253
|
+
|
|
254
|
+
## Invariants at risk
|
|
255
|
+
|
|
256
|
+
This issue swaps a renderer behind the seam, adds one read accessor, and threads `cwd`; it does not touch the Phase 18 spine.
|
|
257
|
+
The relevant `Outcome:` invariants and their pins:
|
|
258
|
+
|
|
259
|
+
- **[#422] — runtime holds zero UI state.**
|
|
260
|
+
The overlay holds its own cached `Container` + scroll state; nothing is pushed onto the runtime.
|
|
261
|
+
Pinned by the runtime/service-spine tests; unchanged.
|
|
262
|
+
- **[#423] — UI is a reactive consumer with no inbound calls from core spawn tools.**
|
|
263
|
+
The navigator reads via the injected `manager.listAgents()` snapshot and record getters only; the new `getToolDefinition` accessor is a read-only getter.
|
|
264
|
+
Pinned by the navigator-reads-only test from the slice (extend it to assert the handler reads `getToolDefinition` only through the source).
|
|
265
|
+
- **[#424] — the `subagent` tool depends only on manager/runtime/settings/registry.**
|
|
266
|
+
No tool change.
|
|
267
|
+
- **[#425] — declared event channels equal emitted channels, no vacant hook.**
|
|
268
|
+
The navigator subscribes to existing record updates; it declares/emits no new channel.
|
|
269
|
+
Pinned by the events-contract suite; unchanged.
|
|
270
|
+
|
|
271
|
+
A later phase step (Step 4b file source, Step 5 deletion) must not regress these with a green suite — the navigator-reads-only test pins #423 for the seam.
|
|
272
|
+
|
|
273
|
+
## TDD Order
|
|
274
|
+
|
|
275
|
+
1. **Red→Green: `getToolDefinition` read accessor on the record.**
|
|
276
|
+
Test surface: `test/lifecycle/subagent-session.test.ts`, `test/lifecycle/subagent.test.ts`.
|
|
277
|
+
Tests: `SubagentSession.getToolDefinition` delegates to the wrapped session; `Subagent.getToolDefinition` delegates to the session and returns `undefined` when no session.
|
|
278
|
+
Implementation: reference the SDK `ToolDefinition` type (via `src/types.ts` or a direct import); add the two getters.
|
|
279
|
+
Run `pnpm run check` (verifies `AgentSession.getToolDefinition` resolves).
|
|
280
|
+
Commit: `feat: add getToolDefinition accessor on subagent record (#462)`.
|
|
281
|
+
2. **Red→Green: surface `getToolDefinition` on the seam (additive).**
|
|
282
|
+
Test surface: `test/ui/session-navigation.test.ts`.
|
|
283
|
+
Tests: `liveSource.getToolDefinition` delegates to `record.getToolDefinition`; add `getToolDefinition` to the `makeNavigable` factory.
|
|
284
|
+
Implementation: add `getToolDefinition` to `NavigableSubagent` and `TranscriptSource`; `liveSource` delegates.
|
|
285
|
+
This step is pure addition — `renderTranscriptLines` still exists and compiles.
|
|
286
|
+
Commit: `feat: expose getToolDefinition on the transcript source seam (#462)`.
|
|
287
|
+
3. **Red→Green: component-tree renderer + overlay rewrite + `cwd` wiring.**
|
|
288
|
+
Test surface: `test/ui/session-navigator.test.ts` (+ remove the `renderTranscriptLines` block from `test/ui/session-navigation.test.ts`).
|
|
289
|
+
Tests:
|
|
290
|
+
- `TranscriptOverlay.render` paints component-rendered content for user/assistant messages (text appears); a tool call renders via `ToolExecutionComponent` using a stubbed `getToolDefinition`; the `◍` streaming indicator still appends while running; rebuild-on-change re-renders after a `subscribe` callback; `esc`/`q` calls `done`; `dispose` unsubscribes.
|
|
291
|
+
- `SessionNavigatorHandler.handle`: empty entries → `notify`, no `custom`; cancel → no `custom`; valid pick → `custom` opened with an overlay sourced from the picked record and the passed `cwd`.
|
|
292
|
+
Implementation (one commit — removing `renderTranscriptLines` breaks the overlay and its tests at the type level, so the rewrite, the export removal, the test updates, and the `index.ts` call-site update land together):
|
|
293
|
+
- Add `buildTranscriptComponents` and rewrite `TranscriptOverlay` (cached `Container`, rebuild-on-change, drop `wrapText`) in `session-navigator.ts`.
|
|
294
|
+
- Remove `renderTranscriptLines`/`toMessages`/`serializeConversation`/`describeActivity` from `session-navigation.ts`.
|
|
295
|
+
- Add `cwd` to `SessionNavigatorParams`; update `index.ts` to pass `ctx.cwd`.
|
|
296
|
+
- Remove the `renderTranscriptLines` describe block from `session-navigation.test.ts`.
|
|
297
|
+
Run `pnpm run check` immediately (shared-interface + single-call-site change) and `pnpm fallow dead-code` before pushing (confirms no orphaned helper after the renderer move).
|
|
298
|
+
Commit: `feat: render /subagent-sessions transcript with Pi per-entry components (#462)`.
|
|
299
|
+
4. **Docs: record rendering parity and flip Step 4a.**
|
|
300
|
+
Test surface: none (docs).
|
|
301
|
+
Update `docs/architecture/architecture.md` Step 4a status to landed and the `S4a` Mermaid node; note the native navigator now renders at parity, unblocking Step 5.
|
|
302
|
+
Commit: `docs: mark native-navigation renderer upgrade landed (#462)`.
|
|
303
|
+
|
|
304
|
+
## Risks and Mitigations
|
|
305
|
+
|
|
306
|
+
- **Risk: Pi's per-entry components depend on interactive-mode globals (e.g. `initTheme`) not initialized in this context.**
|
|
307
|
+
Mitigation: the navigator runs inside a live Pi session where theme is already initialized; `getMarkdownTheme()` returns the active theme.
|
|
308
|
+
The overlay-render tests construct components against a mock `TUI` and assert text appears — a smoke test that the components render outside interactive mode.
|
|
309
|
+
If a component throws without a global, narrow the role set or supply the missing default at the boundary.
|
|
310
|
+
- **Risk: rebuilding the component tree re-runs markdown highlighting and is expensive under live streaming.**
|
|
311
|
+
Mitigation: rebuild happens on **source change only** (cached `Container`), not per frame, and the high-frequency streaming text is absorbed by the `◍` indicator (so the tree changes at message granularity).
|
|
312
|
+
Incremental `updateContent`/`updateResult` reconciliation remains a clean follow-up behind the same seam if profiling ever shows cost (track-and-watch).
|
|
313
|
+
- **Risk: `ToolExecutionComponent` needs `cwd`/`tui`/options not previously threaded.**
|
|
314
|
+
Mitigation: `cwd` comes from `ctx.cwd` (verified present on the command context), `tui` from the `ui.custom` factory, options default to `{ showImages: false }`.
|
|
315
|
+
- **Risk: removing `renderTranscriptLines` and its tests leaves orphaned imports.**
|
|
316
|
+
Mitigation: Step 3 removes the `serializeConversation`/`describeActivity` imports from `session-navigation.ts` in the same commit; `pnpm fallow dead-code` and a re-read of the file confirm no orphans (Biome `noUnusedImports` is warning-level).
|
|
317
|
+
- **Risk: parity is asserted only by "text appears", missing richer formatting differences.**
|
|
318
|
+
Mitigation: the goal is *native-fidelity via Pi's own components* — using the same components Pi uses **is** the parity definition; the tests assert the component path is taken (tool call renders via `ToolExecutionComponent`, bash via `BashExecutionComponent`), not byte-equality with the bespoke output.
|
|
319
|
+
|
|
320
|
+
## Open Questions
|
|
321
|
+
|
|
322
|
+
- **`custom`-role messages** — `CustomMessageComponent` requires the session's `extensionRunner.getMessageRenderer(customType)`, which the navigator does not hold.
|
|
323
|
+
This issue skips custom messages (the bespoke viewer never rendered them either, so this is not a parity regression).
|
|
324
|
+
If custom-message fidelity is later wanted, a follow-up would surface a message-renderer lookup on the seam — not filed now (speculative).
|
|
325
|
+
- **Step 4a doc flip timing** — flip the architecture status line and Mermaid node in this issue's doc step, or defer to a Phase 19 doc-sync ([#447] precedent); the plan does it in-issue (TDD step 4) by default.
|
|
326
|
+
|
|
327
|
+
[#441]: https://github.com/gotgenes/pi-packages/issues/441
|
|
328
|
+
[#442]: https://github.com/gotgenes/pi-packages/issues/442
|
|
329
|
+
[#445]: https://github.com/gotgenes/pi-packages/issues/445
|
|
330
|
+
[#447]: https://github.com/gotgenes/pi-packages/issues/447
|
|
331
|
+
[#462]: https://github.com/gotgenes/pi-packages/issues/462
|
|
332
|
+
[#463]: https://github.com/gotgenes/pi-packages/issues/463
|
|
333
|
+
[#422]: https://github.com/gotgenes/pi-packages/issues/422
|
|
334
|
+
[#423]: https://github.com/gotgenes/pi-packages/issues/423
|
|
335
|
+
[#424]: https://github.com/gotgenes/pi-packages/issues/424
|
|
336
|
+
[#425]: https://github.com/gotgenes/pi-packages/issues/425
|
|
337
|
+
|
|
338
|
+
[ADR-0004]: https://github.com/gotgenes/pi-packages/blob/main/packages/pi-subagents/docs/decisions/0004-reconsider-ui-direction.md
|