Expand description
§MielinOS
MielinOS is a microkernel-based operating system designed for distributed AI agents with neural mesh networking capabilities.
§Crate Organization
This meta-crate re-exports all MielinOS components:
hal- Hardware Abstraction Layer for platform-independent hardware accessrt- Runtime for async execution and task schedulingmesh- Neural mesh networking (core + wire protocols)cells- Cell-based computation units for distributed processingwasm- WebAssembly runtime for portable agent executiontensor- Tensor operations for AI/ML workloads- [
kernel] - Microkernel (requireskernelfeature, bare-metal only)
§Quick Start
use mielin::prelude::*;
// Access HAL for hardware abstraction
// Access runtime for async execution
// Access mesh for distributed communication§Feature Flags
default- Core components (hal, rt, mesh, cells, wasm, tensor)full- All components including kernelkernel- Include microkernel (bare-metal targets only)
Re-exports§
pub use mielin_cells as cells;pub use mielin_hal as hal;pub use mielin_rt as rt;pub use mielin_tensor as tensor;pub use mielin_wasm as wasm;
Modules§
- mesh
- Mesh networking components - neural mesh networking for distributed agent communication.
- prelude
- Prelude module - convenient re-exports for common MielinOS usage.