determs 0.1.0

Deterministic replay & proof engine for verifiable automated decisions — capture, verify, and replay records anyone can check. AI agents are the first profile.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod agent_replay;

use crate::capsule::Capsule;

pub fn registry() -> Vec<&'static dyn Capsule> {
    vec![&agent_replay::AGENT_ACTION_REPLAY_V1]
}

pub fn find(id: &str) -> Option<&'static dyn Capsule> {
    registry().into_iter().find(|capsule| capsule.id() == id)
}