lean-ctx-ocla 1.0.0

Open Context & Token Lifecycle Architecture — the stable, provider-neutral contract boundary (14 traits, canonical types, token envelopes) shared between lean-ctx-core (OSS) and lean-ctx-enterprise (proprietary).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Open Context & Token Lifecycle Architecture (OCLA) — the stable contract
//! boundary between lean-ctx-core (Apache-2.0 OSS) and lean-ctx-enterprise
//! (proprietary). All 14 OCLA traits, canonical types, token envelopes,
//! and agent message primitives live here.
//!
//! Dependency direction:
//!   lean-ctx-core depends on lean-ctx-ocla (OSS → OSS)
//!   lean-ctx-enterprise depends on lean-ctx-ocla (Proprietary → OSS)
//!   lean-ctx-ocla depends on NOTHING from lean-ctx-core or enterprise

pub mod traits;
pub mod types;

pub use traits::*;
pub use types::*;