codetether-agent 4.6.1

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # 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 mod counter;
pub mod execution;
pub mod file_change;

pub use counter::AtomicToolCounter;
pub use execution::ToolExecution;
pub use file_change::FileChange;