agent_kit/lib.rs
1//! Agent Kit — toolkit for CLI tools integrating with AI agent loops.
2//!
3//! Provides shared infrastructure for:
4//! - Skill management (install/check/uninstall SKILL.md files)
5//! - Agent environment detection (Claude Code, OpenCode, etc.)
6//! - Instruction file auditing (via `instruction-files` crate, behind `audit` feature)
7//! - Hook-based event coordination between sessions (behind `hooks` feature)
8
9#[cfg(feature = "audit")]
10pub mod audit;
11pub mod detect;
12#[cfg(feature = "hooks")]
13pub mod hooks;
14pub mod skill;