tmai-core 0.8.2

Core library for tmai - agent detection, state management, and monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! PTY wrapping module for AI agent monitoring
//!
//! This module provides PTY proxy functionality to monitor AI agent I/O in real-time,
//! enabling more accurate state detection than traditional tmux capture-pane approach.

pub mod analyzer;
pub mod exfil_detector;
pub mod runner;

pub use exfil_detector::ExfilDetector;
pub use runner::PtyRunner;