agent-shield 0.8.7

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
pub mod event;
pub mod guard;
pub mod mcp_proxy;
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::{evaluate_runtime_event, invalid_runtime_guard_input, INVALID_INPUT_RULE_ID};
pub use mcp_proxy::{decide as decide_tool_call, FailOn, ProxyDecision, ProxyPolicy};
pub use redaction::{redact_runtime_event, redact_text, Redaction, RedactionKind, RedactionReport};
pub use schema::{runtime_event_schema_json, runtime_guard_result_schema_json};