agentfortress 1.0.0

Runtime protection and security monitoring for AI agents — The CrowdStrike for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
// Policy engine placeholder — extend with custom rules
pub struct PolicyEngine;

impl PolicyEngine {
    pub fn new() -> Self { Self }
}

impl Default for PolicyEngine {
    fn default() -> Self { Self::new() }
}