Skip to main content

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
8#[cfg(feature = "audit")]
9pub mod audit;
10pub mod detect;
11pub mod skill;