Skip to main content

skill_harness/
lib.rs

1//! Agent Skills — management for contextually-activated instruction bundles.
2//!
3//! Provides skill install/check/uninstall for AI agent environments.
4//! When the `detect` feature is enabled, uses `agent-kit` for environment detection.
5
6pub mod manage;
7
8pub use manage::SkillConfig;
9
10#[cfg(feature = "detect")]
11pub use agent_kit::detect::Environment;