Skip to main content

kernel/
lib.rs

1//! The Hedos kernel: the headless core that discovers, identifies, installs,
2//! and manages local models. Pure logic and the filesystem — no async runtime,
3//! no UI. Higher layers (gateway, cli) are thin shells over this crate.
4
5pub mod artifacts;
6pub mod capabilities;
7pub mod discovery;
8pub mod fs;
9pub mod install;
10pub mod jobs;
11pub mod manifests;
12pub mod persistence;
13pub mod profiles;
14pub mod records;
15pub mod registry;
16pub mod removal;
17pub mod resolution;
18pub mod time;
19
20pub use registry::{Registry, RegistryError};