Interactive TUI dashboard, tmux scrollback, session exit summary#16
Merged
Interactive TUI dashboard, tmux scrollback, session exit summary#16
Conversation
- Full-screen interactive dashboard with recon-style keybindings (#11) - j/k/arrows to navigate, Enter to attach, x to stop, r to refresh, q to quit - Animated braille spinners for working states (bright green) - Animated quarter-circle spinners for waiting states (bright cyan) - Static icons: checkmark (complete), X (failed), square (stopped) - Row highlighting with reverse video + arrow indicator - Rounded borders in dim cyan, bright white title - Footer bar with keybinding hints - Falls back to passive --watch when stdout is not a TTY (piped) - Raw terminal via termios, no new dependencies - Enable tmux mouse scrolling and 50k line scrollback buffer (#14) - Sets mouse=on and history-limit=50000 on each new session - Keep tmux pane alive after task completion with summary (#15) - Prints task ID and how to check status/logs - Waits for Enter before closing (no more sudden [exited]) - 97 tests passing, ruff clean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Demo-ready UX overhaul: interactive TUI dashboard, tmux quality-of-life fixes.
Interactive TUI Dashboard (Closes #11)
autopilot status --watchis now a full-screen interactive dashboard inspired by gavraz/recon:j/kto navigate,Enterto attach,xto stop,rto refresh,qto quit►prefix + reverse videotermiosfor keyboard input (Unix standard, no pip install needed)tmux Scrollback (Closes #14)
Each new tmux session now has
mouse=onandhistory-limit=50000. You can scroll up with mouse wheel or trackpad — no more^[[Aescape sequences.Session Exit Summary (Closes #15)
When a task finishes, the tmux pane no longer vanishes with
[exited]. Instead it prints:Tests