agentic-identity 0.1.0

Cryptographic identity anchor for AI agents — persistent identity, signed actions, revocable trust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Action receipts — signed proofs that an agent took an action.

pub mod action;
pub mod chain;
#[allow(clippy::module_inception)]
pub mod receipt;
pub mod verify;
pub mod witness;

pub use action::{ActionContent, ActionType};
pub use receipt::{ActionReceipt, ReceiptId};
pub use verify::ReceiptVerification;
pub use witness::WitnessSignature;