astrid-capsule 0.2.0

Core runtime management for User-Space Capsules in Astrid OS
Documentation
#![deny(unreachable_pub)]

//! Core runtime management for User-Space Capsules in Astrid OS.
//!
//! Core capsule runtime implementing the "Manifest-First" architecture.
//! It provides the definition for `Capsule.toml`
//! manifests, handles discovery, and routes execution to the appropriate
//! environments (WASM sandboxes, legacy host processes, or OpenClaw bridges).

pub mod capsule;
pub mod context;
pub mod discovery;
pub mod dispatcher;
pub mod engine;
pub mod error;
pub mod loader;
pub mod manifest;
pub mod registry;
pub mod security;
pub mod tool;
pub mod toposort;
pub(crate) mod watcher;