ontocore-plugin 0.13.0

Plugin manifest discovery for OntoCore (v0.14 host foundation)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Plugin host foundation for OntoCore (v0.14 MVP).
//!
//! Parses plugin manifests and discovers them under `.ontocore/plugins/`.
//! Runtime provider registration ships in v0.14 — see [PLUGIN_SPEC](https://github.com/eddiethedean/ontocode/blob/main/docs/design/PLUGIN_SPEC.md).

mod discovery;
mod manifest;

pub use discovery::{discover_plugins, PluginDiscoveryError, PLUGIN_DIR};
pub use manifest::{parse_manifest, DiscoveredPlugin, PluginCapabilities, PluginManifest};