Add command interface and status indicator.

This commit is contained in:
Drew 2026-02-24 14:23:33 -08:00
parent 5cb6647513
commit 7b9525ef95
7 changed files with 358 additions and 22 deletions

View file

@ -61,7 +61,7 @@ Events use parent IDs forming a tree (not a flat list). This enables future bran
- Unit tests go in the same file as the code (`#[cfg(test)] mod tests`)
- Integration tests go in `tests/`
- TUI widget tests use `ratatui::backend::TestBackend` + `insta` snapshots
- TUI widget tests use `ratatui::backend::TestBackend`
- Provider tests replay recorded SSE fixtures from `tests/fixtures/`
- Sandbox tests use `tempdir` and skip Landlock-specific assertions if kernel < 5.13
- Run `cargo test` before every commit