1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
//! The cursor: what it points at, where it moves, and what the panels follow.
//!
//! The table's rows are not its sessions — a session can expand into subagent
//! rows — so "the selection" is an index into [`App::visible`] that has to
//! survive a resort, a refilter and a session disappearing. Everything that
//! reads or repairs that index is here, together with the bottom panels, which
//! are downstream of it: they show whatever the cursor is on.
use super::*;
/// Rows moved by PageUp/PageDown and the fallback for half-page scrolls.
pub(super) const PAGE: isize = 10;
impl App {
/// The highlighted session, if there is one.
///
/// `visible` holds indices into `sessions`, and a refresh replaces
/// `sessions` before `refilter` rebuilds `visible` — so between those two
/// steps the indices can outrun the list. Resolving through `get` keeps this
/// accessor total instead of panicking on that window.
pub fn selected_session(&self) -> Option<&Session> {
self.visible
.get(self.selected)
.and_then(|row| self.sessions.get(row.session()))
}
/// The highlighted row, whatever kind it is.
pub fn selected_row(&self) -> Option<Row> {
self.visible.get(self.selected).copied()
}
/// The highlighted subagent, when the cursor is on a child row.
pub fn selected_subagent(&self) -> Option<&crate::session::Subagent> {
match self.selected_row()? {
Row::Session(_) => None,
Row::Subagent { parent, index } => self.sessions.get(parent)?.subagents.get(index),
}
}
/// Whether the cursor is on a child row.
///
/// The actions that ask this all address the operating system — a signal, a
/// file, a terminal — and a subagent has none of its own. Refusing is
/// clearer than silently acting on the parent, which is a live session the
/// user did not point at.
pub fn on_subagent(&self) -> bool {
self.selected_row().is_some_and(Row::is_subagent)
}
/// Whether a session is showing its subagents.
pub fn is_expanded(&self, session: &Session) -> bool {
self.expanded.contains(&session.key())
}
/// Show or hide the selected session's subagents.
///
/// Anchored on the owning session, so pressing it on a child collapses the
/// parent that child came from rather than doing nothing — the row the
/// cursor lands on afterwards is then the parent, not a line that no longer
/// exists.
pub(super) fn toggle_expanded(&mut self) {
let Some(row) = self.selected_row() else {
return;
};
let Some(session) = self.sessions.get(row.session()) else {
return;
};
if session.subagents.is_empty() {
self.set_status("No subagents to show");
return;
}
let key = session.key();
if !self.expanded.remove(&key) {
self.expanded.insert(key);
}
if row.is_subagent() {
self.selected = self.selected.saturating_sub(1);
}
self.refilter();
self.save_prefs();
}
/// Expand every session that has subagents, or collapse them all.
///
/// Collapses when anything at all is open: with a mixture on screen, "close
/// them" is the intent that a single key can satisfy unambiguously.
pub(super) fn toggle_expanded_all(&mut self) {
if self.expanded.is_empty() {
self.expanded = self
.sessions
.iter()
.filter(|s| !s.subagents.is_empty())
.map(Session::key)
.collect();
} else {
self.expanded.clear();
}
self.refilter();
self.save_prefs();
}
/// Identity of a row across refreshes.
///
/// A subagent's own id is unique only within its parent, and a session key
/// alone cannot tell a parent from its children, so the cursor is anchored
/// on the pair.
pub(super) fn row_key(&self, row: Row) -> String {
let Some(session) = self.sessions.get(row.session()) else {
return String::new();
};
match row {
Row::Session(_) => session.key(),
Row::Subagent { index, .. } => match session.subagents.get(index) {
Some(sub) => format!("{}/{}", session.key(), sub.agent_id),
None => session.key(),
},
}
}
/// What the bottom panels should describe for a row.
///
/// A subagent gets a stand-in `Session` pointed at its own transcript. That
/// file is the same JSONL a session writes, so the whole extraction path —
/// worker, cache, every panel — reads it without knowing the difference, and
/// the panels describe the subagent rather than the parent it ran under.
pub(super) fn panel_subject(&self, row: Row) -> Option<Session> {
let session = self.sessions.get(row.session())?;
let Row::Subagent { index, .. } = row else {
return Some(session.clone());
};
let sub = session.subagents.get(index)?;
// A purged transcript leaves nothing to read; the parent's own data is
// the only thing left that describes the run.
if sub.ghost {
return None;
}
let mut stand_in = Session::new(session.provider, sub.agent_id.clone());
stand_in.surface = session.surface;
stand_in.model = sub.model.clone();
stand_in.label_source = session.label_source.clone();
stand_in.harness = session.harness.clone();
stand_in.title = Some(sub.description.clone()).filter(|d| !d.is_empty());
stand_in.started_at = sub.started_at.clone().unwrap_or_default();
stand_in.data_file = session
.data_file
.as_ref()
.map(|f| f.with_extension("").join("subagents"))
.map(|dir| dir.join(format!("{}.jsonl", sub.agent_id)));
// Its own mtime, so the panels refresh while the subagent is working and
// not merely when its parent writes something.
stand_in.last_active = stand_in
.data_file
.as_ref()
.map(|f| crate::util::ms_to_rfc3339(crate::config::file_mtime_ms(f) as i64))
.unwrap_or_default();
Some(stand_in)
}
/// Ask the worker for the selected row's full data if it isn't loaded.
pub(super) fn sync_panel_data(&mut self) {
let Some(row) = self.selected_row() else {
self.panel_data = None;
self.panel_key.clear();
return;
};
let Some(session) = self.panel_subject(row) else {
self.panel_data = None;
self.panel_key.clear();
return;
};
// Nothing to extract for a row read over ssh: the transcript is a file
// on the other machine and cctop never fetches it. Asking would hand the
// worker a session with no `data_file` and get an empty result back that
// the panels would draw as zeroes.
if session.remote.is_some() {
self.panel_data = None;
self.panel_key = session.key();
self.panel_stamp = session.last_active.clone();
return;
}
let key = session.key();
let stamp = session.last_active.clone();
let switched = key != self.panel_key;
// A live session keeps growing, so re-request whenever its newest
// activity moves — otherwise the panels freeze at whatever the session
// looked like when it was selected.
let grew = !switched && stamp != self.panel_stamp;
if !switched && !grew {
return;
}
self.panel_key = key;
self.panel_stamp = stamp;
if switched {
// Only blank the panels when moving to a different session; doing it
// on every append would flash "Loading…" twice a second.
self.panel_data = None;
self.info_scroll = 0;
self.cost_scroll = 0;
self.config_scroll = 0;
self.proc_scroll = 0;
self.subagent_scroll = 0;
self.tool_scroll = 0;
self.tool_follow = true;
self.tool_tab = 0;
self.tool_expanded = None;
}
let _ = self.tx.send(Request::Data(Box::new(session)));
}
pub(super) fn move_selection(&mut self, delta: isize) {
if self.visible.is_empty() {
return;
}
let last = self.visible.len() - 1;
self.selected = (self.selected as isize + delta).clamp(0, last as isize) as usize;
self.ensure_available_tab();
self.needs_redraw = true;
}
pub(super) fn tab_available(&self, tab: usize) -> bool {
match tab {
// Performance and Processes read a live process tree.
1 | 2 => self.selected_session().is_some_and(Session::is_running),
// Only Claude transcripts report the per-request usage the context
// breakdown is reconstructed from. Gated on the provider rather than
// on the extracted data, so the tab doesn't vanish while it loads.
7 => self
.selected_session()
.is_some_and(|s| s.provider == Provider::Claude),
_ => true,
}
}
pub(super) fn ensure_available_tab(&mut self) {
if !self.tab_available(self.bottom_tab) {
self.bottom_tab = 0;
}
}
pub(super) fn set_sort(&mut self, col: ColumnId) {
if self.sort_col == col {
self.sort_asc = !self.sort_asc;
} else {
self.sort_col = col;
self.sort_asc = true;
}
self.refilter();
self.save_prefs();
}
/// Expand or collapse the invocation under a clicked log row.
pub(super) fn toggle_tool_expansion(&mut self, row_offset: usize) {
let line = self.tool_scroll as usize + row_offset;
let Some(Some(key)) = self.tool_owners.get(line) else {
return;
};
let key = key.clone();
// Clicking the open entry again closes it.
self.tool_expanded = (self.tool_expanded.as_deref() != Some(key.as_str())).then_some(key);
// Expanding grows the log, which would otherwise slide the row away.
self.tool_follow = false;
self.needs_redraw = true;
}
/// Move through the Tool Activity sidebar, which filters the log by tool.
pub(super) fn cycle_tool_filter(&mut self, delta: isize) {
let n = self
.panel_data
.as_ref()
.map(|d| panels::tool_tabs(d).len())
.unwrap_or(0);
if n == 0 {
return;
}
let n = n as isize;
self.tool_tab = (((self.tool_tab as isize + delta) % n + n) % n) as usize;
// A different filter is a different log, so start at its newest entry.
self.tool_follow = true;
self.bottom_tab = 3;
self.needs_redraw = true;
}
/// Move to the next or previous bottom panel, wrapping at both ends.
pub(super) fn cycle_tab(&mut self, delta: isize) {
let n = panels::TABS.len() as isize;
let mut next = self.bottom_tab;
for _ in 0..panels::TABS.len() {
next = (((next as isize + delta) % n + n) % n) as usize;
if self.tab_available(next) {
self.bottom_tab = next;
break;
}
}
self.save_prefs();
self.needs_redraw = true;
}
pub(super) fn scroll_active_panel(&mut self, delta: i32) {
// Saturating, because the jumps to either end are i32::MIN and i32::MAX
// rather than a computed distance: the panel's length is the renderer's
// to know, and asking for more than there is costs nothing once both
// ends clamp.
let max = self.panel_max_scroll as i32;
let bump = |v: &mut u16| *v = (*v as i32).saturating_add(delta).clamp(0, max) as u16;
match self.bottom_tab {
0 => bump(&mut self.info_scroll),
1 => {} // Performance is a fixed-size chart pair
2 => bump(&mut self.proc_scroll),
3 => {
bump(&mut self.tool_scroll);
// Re-pin once the user scrolls back down to the newest entry.
self.tool_follow = self.tool_scroll >= self.panel_max_scroll;
}
4 => bump(&mut self.subagent_scroll),
5 => bump(&mut self.cost_scroll),
6 => bump(&mut self.config_scroll),
_ => bump(&mut self.context_scroll),
}
self.needs_redraw = true;
}
/// Copy something useful about the selection to the clipboard.
pub(super) fn copy_selection(&mut self) {
let Some(s) = self.selected_session() else {
return;
};
let text = match self.bottom_tab {
// From the Info tab, the resume command is the most useful thing —
// and for the providers that have none, the transcript's path is.
0 => match s.resume_argv() {
Some(argv) => argv.join(" "),
None => s
.data_file
.as_ref()
.map(|p| p.display().to_string())
.unwrap_or_else(|| s.session_id.clone()),
},
_ => s
.data_file
.as_ref()
.map(|p| p.display().to_string())
.unwrap_or_else(|| s.session_id.clone()),
};
render::copy_to_clipboard(&text);
self.set_status(format!("Copied: {}", crate::util::truncate(&text, 60)));
}
/// Half the visible table height, used by Ctrl+U/Ctrl+D. Falls back to a
/// page size before the first draw has recorded a viewport.
pub(super) fn half_page(&self) -> usize {
((self.list_height as usize / 2).max(1)).min(PAGE as usize)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::ui::tests::{session, test_app};
fn with_subagents(id: &str, names: &[&str]) -> Session {
let mut s = session(id, true, id);
s.subagents = names
.iter()
.map(|n| crate::session::Subagent {
agent_id: format!("agent-{n}"),
agent_type: "general-purpose".into(),
description: (*n).into(),
model: "claude-opus-5".into(),
started_at: None,
last_active: None,
duration_ms: 0,
status: crate::session::SubagentStatus::Running,
cost: 0.0,
tool_count: 0,
tool_use_id: None,
context: None,
ghost: false,
})
.collect();
s
}
/// Children belong under the parent they ran for. Sorting them as peers
/// would scatter one session's subagents down a table ordered by cost or
/// age, which is the one arrangement that makes the tree meaningless.
#[test]
fn expanded_subagents_sit_directly_under_their_parent() {
let mut app = test_app();
app.sessions = vec![
with_subagents("a", &["one", "two"]),
session("b", true, "b"),
];
app.refilter();
assert_eq!(app.visible.len(), 2, "collapsed: one row per session");
app.expanded.insert(app.sessions[0].key());
app.refilter();
// Asserted as a position relative to the parent rather than as a fixed
// list: where the parent lands is the sort's business, and these two
// sessions are equally recent.
let at = app
.visible
.iter()
.position(|&r| r == Row::Session(0))
.expect("parent row");
assert_eq!(app.visible.len(), 4);
assert_eq!(
&app.visible[at..at + 3],
&[
Row::Session(0),
Row::Subagent {
parent: 0,
index: 0
},
Row::Subagent {
parent: 0,
index: 1
},
]
);
}
/// The cursor is anchored on what it was pointing at, and a child is only
/// identified by its parent *and* its own id — anchoring on the session key
/// alone would snap the cursor back to the parent on every refresh, two
/// times a second, while the user was reading a child row.
#[test]
fn the_cursor_stays_on_a_child_row_across_a_refresh() {
let mut app = test_app();
app.sessions = vec![with_subagents("a", &["one", "two"])];
app.expanded.insert(app.sessions[0].key());
app.refilter();
app.selected = 2;
app.refilter();
assert_eq!(
app.visible[app.selected],
Row::Subagent {
parent: 0,
index: 1
}
);
assert_eq!(
app.selected_subagent().map(|s| s.description.clone()),
Some("two".into())
);
}
/// A child row resolves to its parent for anything addressed to a session,
/// so every existing action keeps working — but the destructive ones have to
/// know the difference, because the cursor is on a subagent and the session
/// they would signal is not what the user pointed at.
#[test]
fn a_child_row_owns_its_parent_but_is_not_it() {
let mut app = test_app();
app.sessions = vec![with_subagents("a", &["one"])];
app.expanded.insert(app.sessions[0].key());
app.refilter();
app.selected = 0;
assert!(!app.on_subagent());
assert!(app.selected_subagent().is_none());
app.selected = 1;
assert!(app.on_subagent());
assert_eq!(
app.selected_session().map(|s| s.session_id.clone()),
Some("a".into()),
"a child still resolves to the session that owns it"
);
assert!(app.selected_subagent().is_some());
}
/// Collapsing from a child row must leave the cursor somewhere that still
/// exists; the row it was on is about to be removed.
#[test]
fn collapsing_from_a_child_lands_the_cursor_on_its_parent() {
let mut app = test_app();
app.sessions = vec![with_subagents("a", &["one", "two"])];
app.expanded.insert(app.sessions[0].key());
app.refilter();
app.selected = 1;
app.toggle_expanded();
assert_eq!(app.visible.len(), 1);
assert_eq!(app.visible[app.selected], Row::Session(0));
assert!(app.expanded.is_empty());
}
/// A background subagent is acknowledged by its parent the moment it
/// starts, so the transcript says "finished" while it is still working. The
/// hook is the agent reporting for itself, and it has to win — this is the
/// difference between a child row that tracks a live agent and one that
/// reads `done` for the whole run.
#[test]
fn a_hooks_word_retires_a_subagent_the_transcript_still_calls_running() {
let mut app = test_app();
app.sessions = vec![with_subagents("a", &["one", "two"])];
assert!(
app.sessions[0]
.subagents
.iter()
.all(|s| s.status == crate::session::SubagentStatus::Running)
);
// The hook names the bare id; the transcript is stored as `agent-<id>`.
app.finished_agents.insert("one".into());
app.apply_finished_agents();
let status = |i: usize| app.sessions[0].subagents[i].status;
assert_eq!(status(0), crate::session::SubagentStatus::Done);
assert_eq!(
status(1),
crate::session::SubagentStatus::Running,
"only the subagent named may be retired"
);
}
/// A session with nothing to show must not swallow the key and leave the
/// user pressing it at a row that never opens.
#[test]
fn expanding_a_session_without_subagents_says_so() {
let mut app = test_app();
app.sessions = vec![session("a", true, "a")];
app.refilter();
app.toggle_expanded();
assert!(app.expanded.is_empty());
assert!(app.status.is_some(), "the refusal has to be visible");
}
#[test]
fn runtime_tabs_are_unavailable_for_stopped_sessions() {
let mut app = test_app();
app.sessions = vec![session("stopped", false, "x")];
app.refilter();
assert!(!app.tab_available(1));
assert!(!app.tab_available(2));
app.bottom_tab = 0;
app.cycle_tab(1);
assert_eq!(app.bottom_tab, 3);
}
#[test]
fn shift_home_and_end_reach_both_ends_of_a_panel() {
let mut app = test_app();
app.bottom_tab = 0;
// What a draw would have left behind; nothing else knows the length.
app.panel_max_scroll = 40;
app.scroll_active_panel(i32::MAX);
assert_eq!(
app.info_scroll, 40,
"End stops at the last line, not past it"
);
app.scroll_active_panel(i32::MIN);
assert_eq!(app.info_scroll, 0);
// The clamp is the point: without it a scroll past the bottom banks an
// offset that takes as many presses to come back through.
app.scroll_active_panel(999);
app.scroll_active_panel(-1);
assert_eq!(app.info_scroll, 39);
}
#[test]
fn selecting_stopped_session_leaves_runtime_tab() {
let mut app = test_app();
app.sessions = vec![
session("running", true, "x"),
session("stopped", false, "y"),
];
app.visible = vec![Row::Session(0), Row::Session(1)];
app.bottom_tab = 1;
app.move_selection(1);
assert_eq!(app.bottom_tab, 0);
}
#[test]
fn selection_follows_the_session_across_a_resort() {
let mut app = test_app();
app.sessions = vec![session("a", false, "/x/a"), session("b", false, "/x/b")];
app.sort_col = ColumnId::Project;
app.sort_asc = true;
app.refilter();
app.selected = 1;
let before = app.selected_session().unwrap().key();
app.sort_asc = false;
app.refilter();
assert_eq!(app.selected_session().unwrap().key(), before);
assert_eq!(app.selected, 0);
}
#[test]
fn selection_stays_in_bounds_when_sessions_disappear() {
let mut app = test_app();
app.sessions = (0..5)
.map(|i| session(&i.to_string(), false, "/x"))
.collect();
app.refilter();
app.selected = 4;
app.sessions.truncate(2);
app.refilter();
assert!(app.selected < app.visible.len());
}
#[test]
fn empty_list_does_not_panic_on_navigation() {
let mut app = test_app();
app.refilter();
app.move_selection(1);
app.move_selection(-1);
assert_eq!(app.selected, 0);
assert!(app.selected_session().is_none());
}
#[test]
fn sort_toggles_on_repeat_and_resets_on_change() {
let mut app = test_app();
app.sort_col = ColumnId::Cost;
app.sort_asc = true;
app.set_sort(ColumnId::Cost);
assert!(!app.sort_asc, "same column must flip direction");
app.set_sort(ColumnId::Cpu);
assert!(app.sort_asc, "new column starts ascending");
assert_eq!(app.sort_col, ColumnId::Cpu);
}
}