arbiter-behavior 0.0.21

Operation-type drift detection for Arbiter task sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Operation-type drift detection for Arbiter task sessions.
//!
//! Tracks sequences of tool calls within a session, classifies each call
//! by its operation type (read/write/delete/admin), and flags divergence
//! when operation types fall outside the session's declared scope.

pub mod classifier;
pub mod detector;
pub mod tracker;

pub use classifier::{OperationType, classify_operation};
pub use detector::{AnomalyConfig, AnomalyDetector, AnomalyResponse};
pub use tracker::{BehaviorTracker, CallRecord};