Skip to main content

agentzero_plugins/
lib.rs

1//! WASM plugin runtime for AgentZero.
2//!
3//! Provides the sandboxed WebAssembly execution environment for plugins.
4//! Includes module compilation, ABI v2 dispatch, capability-based isolation,
5//! and plugin packaging/discovery utilities.
6
7pub mod package;
8mod package_ref;
9pub mod wasm;
10#[cfg(feature = "plugin-dev")]
11pub mod watcher;
12
13pub use package_ref::{parse_plugin_package_ref, PluginPackageRef, PluginRefError};