agent-kit 0.3.0

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

#[cfg(feature = "audit")]
pub mod audit;
pub mod detect;
#[cfg(feature = "hooks")]
pub mod hooks;
pub mod skill;