Skip to main content

leviath_package/
lib.rs

1//! # Leviath Package
2//!
3//! Agent packaging, sharing, and installation.
4//!
5//! Provides tools for bundling agents with their blueprints and dependencies
6//! and installing them locally.
7
8pub mod bundler;
9pub mod installer;
10#[cfg(test)]
11mod test_support;
12
13pub use bundler::AgentBundler;
14pub use installer::{AgentInstaller, InstalledAgent};