Skip to main content

agent_kit/
lib.rs

1//! Agent Kit — shared infrastructure for CLI tools integrating with AI agent loops.
2//!
3//! Provides:
4//! - Agent environment detection (Claude Code, OpenCode, Codex, Cursor, Generic)
5//! - Instruction file auditing (via `instruction-files` crate, behind `audit` feature)
6//! - Hook-based event coordination between sessions (behind `hooks` feature)
7//!
8//! Skill management has moved to the `agent-skills` crate.
9
10#[cfg(feature = "audit")]
11pub mod audit;
12pub mod audit_common;
13pub mod detect;
14#[cfg(feature = "hooks")]
15pub mod hooks;