agentzero-plugins 0.3.0

AgentZero — modular AI-agent runtime and tool framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WASM plugin runtime for AgentZero.
//!
//! Provides the sandboxed WebAssembly execution environment for plugins.
//! Includes module compilation, ABI v2 dispatch, capability-based isolation,
//! and plugin packaging/discovery utilities.

pub mod package;
mod package_ref;
pub mod wasm;
#[cfg(feature = "plugin-dev")]
pub mod watcher;

pub use package_ref::{parse_plugin_package_ref, PluginPackageRef, PluginRefError};