1 2 3 4 5 6 7 8 9
//! Claude Code skill management module. //! //! This module handles installation, uninstallation, and management //! of the GDELT skill for Claude Code. pub mod installer; pub mod manifest; pub use installer::{install_skill, uninstall_skill, update_skill};