clawdstrike 0.2.5

Security guards and policy engine for AI agent execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod cache;
pub mod circuit_breaker;
pub mod http;
pub mod rate_limit;
pub mod registry;
pub mod retry;
pub mod runtime;
pub mod threat_intel;

pub use runtime::AsyncGuardRuntime;
pub use types::{
    AsyncGuard, AsyncGuardConfig, AsyncGuardError, AsyncGuardErrorKind, CircuitBreakerConfig,
    RateLimitConfig, RetryConfig,
};

mod types;