docs: update runtime parity status
test / workspace (push) Successful in 18m44s

This commit is contained in:
Tom You
2026-07-09 00:58:24 -05:00
parent 2abb2b955e
commit bb375f0795
2 changed files with 10 additions and 2 deletions
+6 -2
View File
@@ -13,6 +13,10 @@ This file records what is now actually wired at runtime versus what is still mod
| Customization persistence | `6e08e0e` | UI settings can persist app config/theme through the Rust `JsonFileConfigStore`. | `cargo test -p rabby save_and_load_app_config_round_trips_custom_theme` |
| SSH command bridge | `fb5a028` | UI can submit a remote command through system `ssh` using BatchMode and connect timeout. Unit tests verify argument construction/validation without requiring a real server. | `cargo test -p rabby-runtime ssh_runtime::tests`; `cargo test -p rabby ssh_command_bridge_rejects_blank_host` |
| Interactive local PTY sessions | `f37ac6c` | Opens real pseudo-terminal sessions through `portable-pty`, supports write/read-until/resize/kill, and exposes a Tauri-managed session registry. | `cargo test -p rabby-runtime terminal_session::tests` |
| Safe wallet import boundary | `02ae7a0` | Validates seed phrase/private key/JSON keystore/watch-only import requests and redacts sensitive material in debug output. This is validation only, not key derivation/signing. | `cargo test -p rabby-core wallet_import::tests` |
| Interactive SSH PTY entrypoint | `2abb2b9` | Builds interactive `ssh -tt` PTY sessions through the terminal registry and exposes `terminal_session_start_ssh` for Tauri. Unit tests validate argument construction without requiring a real remote host. | `cargo test -p rabby-runtime terminal_session::tests` |
## Still not complete
These are still **not** full production parity:
@@ -22,8 +26,8 @@ These are still **not** full production parity:
- Real browser extension `window.ethereum` provider injection.
- Real portfolio API sync for balances/NFTs/DeFi positions.
- Real swap/bridge API execution.
- Interactive PTY terminal streaming with persistent sessions; current local terminal slice runs bounded commands.
- Interactive SSH shell with PTY, key selection, known-host management, SFTP, and port forwarding; current SSH slice runs bounded remote commands through system `ssh`.
- Full terminal renderer/event streaming into the UI; runtime PTY session registry exists, but the UI still needs continuous stream rendering.
- SSH key selection, known-host management, SFTP, and port forwarding; interactive SSH PTY entrypoint exists, but those advanced SSH workflows are not complete.
## Next order of work