zeptoclaw 0.7.4

Ultra-lightweight personal AI assistant
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Dependency manager — install, lifecycle, and health check for external deps.
//!
//! Components declare needs via `HasDependencies` trait. `DepManager` handles
//! download, install, start, health check, and stop.

pub mod fetcher;
pub mod manager;
pub mod registry;
pub mod types;

pub use manager::DepManager;
pub use types::{DepKind, Dependency, HasDependencies, HealthCheck};