aperion-shield 1.0.0

Aperion Shield -- a local MCP guardrail for AI coding agents with optional biometric identity gates (ID.me). Standalone, free, open source.
1
2
3
4
5
6
7
8
9
10
//! Concrete `IdentityProvider` implementations.
//!
//! Today:
//!   * [`mock::MockProvider`] -- always verifies. Used by tests, demos,
//!     and any environment where ID.me credentials aren't available.
//!   * [`idme::IdMeProvider`] -- ID.me OAuth 2.0 + PKCE flow. Wired and
//!     ready; activates the moment we receive sandbox credentials.

pub mod idme;
pub mod mock;