agentwatch-core 0.1.2

Core detection library for AgentWatch - identifies AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ── Detection module ─────────────────────────────────────────────────────────
// Classifies OS processes into known AI agent types with role, confidence,
// and match reasoning.

pub mod types;
pub mod vendors;
pub mod fingerprint;
pub mod grouping;

#[cfg(test)]
mod tests;

// Re-exports for convenience
pub use types::{ProcessRole, DetectionResult, AgentFingerprint};
pub use fingerprint::{classify_process, get_agent_db, matches_patterns};
pub use grouping::generate_session_key;