| 1 | //! Agent Fleet control plane — local-first manager, ledger, and workers. |
| 2 | |
| 3 | pub mod alerts; |
| 4 | pub mod capability_badges; |
| 5 | pub mod control; |
| 6 | pub mod exact; |
| 7 | pub mod executor; |
| 8 | pub mod host; |
| 9 | pub mod ledger; |
| 10 | pub mod manager; |
| 11 | pub mod profile; |
| 12 | pub mod roster; |
| 13 | pub mod scheduler; |
| 14 | pub mod scout; |
| 15 | pub mod store; |
| 16 | pub mod task_spec; |
| 17 | pub mod worker_runtime; |
| 18 |