agent-shield 1.0.0

Security scanner for AI agent extensions — offline-first, multi-framework, SARIF output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod event;
pub mod guard;
pub mod mcp_proxy;
#[cfg(feature = "runtime")]
pub mod mcp_proxy_http;
pub mod mcp_proxy_stdio;
pub mod redaction;
pub mod schema;

pub use event::{
    RuntimeAction, RuntimeEvent, RuntimeEventSource, RuntimeGuardFinding, RuntimeGuardResult,
    RuntimeSchemaVersion, RuntimeSeverity, RuntimeVerdict,
};
pub use guard::{INVALID_INPUT_RULE_ID, evaluate_runtime_event, invalid_runtime_guard_input};
pub use mcp_proxy::{FailOn, ProxyDecision, ProxyPolicy, decide as decide_tool_call};
pub use redaction::{Redaction, RedactionKind, RedactionReport, redact_runtime_event, redact_text};
pub use schema::{runtime_event_schema_json, runtime_guard_result_schema_json};