Skip to main content

harmont_cli/plugin/
mod.rs

1//! In-process plugin host.
2//!
3//! Loads `.wasm` plugins via Extism, validates their manifests, exposes the
4//! host-fn surface from the design spec (see
5//! `docs/superpowers/specs/2026-05-18-hm-local-first-redesign-design.md` ยง3.3).
6
7pub mod embedded;
8pub mod host;
9pub mod host_fns;
10pub mod install;
11pub mod manifest;
12pub mod paths;
13pub mod pool;
14pub mod registry;
15pub mod signal;
16
17pub use host::LoadedPlugin;
18pub use registry::{PluginRegistry, RegistryConfig};