feat: add interactive TUI process monitor (runbox monitor)#58
Open
feat: add interactive TUI process monitor (runbox monitor)#58
Conversation
Implements ISSUE-035 Phase 1-2: - Add 'runbox monitor' command for interactive process monitoring - Real-time auto-refresh (1 second interval) - Keyboard navigation (j/k, arrows, page up/down) - View logs for any process with Enter/l - Stop processes with s (graceful) or S (force) - Help overlay with ? key - Color-coded status indicators - Scrollable log viewer with follow mode Uses ratatui 0.26 and crossterm 0.27 for terminal UI.
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
Implements ISSUE-035: Ratatui TUI for enhanced CLI experience.
This PR adds an interactive terminal user interface for runbox using ratatui, providing:
runbox monitor): Real-time process list with auto-refreshChanges
New Files
crates/runbox-cli/src/tui/mod.rs- TUI module entry pointcrates/runbox-cli/src/tui/app.rs- Application state and event loopcrates/runbox-cli/src/tui/event.rs- Event handling (keyboard, tick)crates/runbox-cli/src/tui/ui.rs- UI rendering functionscrates/runbox-cli/src/tui/views/- View components (process list, log viewer)Modified Files
crates/runbox-cli/Cargo.toml- Added ratatui, crossterm, tokio dependenciescrates/runbox-cli/src/main.rs- AddedmonitorcommandFeatures
Process Monitor
Log Viewer
Help System
Acceptance Criteria Checklist
runbox monitorlaunches TUI with process listqexits cleanly, restores terminal stateFuture Enhancements (not in this PR)
runbox list --tui)Closes ISSUE-035