feat: add sidecar crash recovery supervisor with exponential backoff

SidecarSupervisor wraps SidecarManager with auto-restart (1s-30s backoff,
5 retries), SidecarHealth enum, 5min stability window. 17 unit tests.
This commit is contained in:
Hibryda 2026-03-12 04:57:29 +01:00
parent 243faafd9e
commit 548478f115
2 changed files with 686 additions and 0 deletions

View file

@ -1,4 +1,6 @@
pub mod config;
pub mod event;
pub mod pty;
pub mod sandbox;
pub mod sidecar;
pub mod supervisor;