arcp-runtime 2.0.0

Reference runtime (server side) for the Agent Runtime Control Protocol (ARCP) — ARCPRuntime, job / session machinery, persistent store, auth validators, and the `arcp` CLI.
Documentation
1
2
3
4
5
6
7
8
9
//! Persistent storage primitives.
//!
//! Phase 1 ships [`eventlog`], an append-only SQLite-backed log used for
//! transport-level idempotency (RFC §6.4), subscription backfill (§13.3),
//! and resume (§19). Later phases add the artifact store (§16) and any
//! additional persisted state.

pub mod credentials;
pub mod eventlog;