//! # Tool telemetry
//!
//! Per-tool execution tracking, including success/failure counts, duration,
//! and the file changes each tool performed.
//!
//! | File | Responsibility |
//! |---|---|
//! | [`counter`] | [`AtomicToolCounter`] — lock-free success/failure counter |
//! | [`file_change`] | [`FileChange`] records emitted by filesystem tools |
//! | [`execution`] | [`ToolExecution`] — a single tool invocation record |
pub use AtomicToolCounter;
pub use ToolExecution;
pub use FileChange;