Skip to main content

lean_ctx/core/
contracts.rs

1use std::collections::BTreeMap;
2
3// Machine-verified contract versions.
4pub const MCP_MANIFEST_SCHEMA_VERSION: u32 = 1;
5pub const CONTEXT_PROOF_V1_SCHEMA_VERSION: u32 = 1;
6pub const CONTEXT_IR_V1_SCHEMA_VERSION: u32 = 1;
7pub const INTENT_ROUTE_V1_SCHEMA_VERSION: u32 = 1;
8pub const DEGRADATION_POLICY_V1_SCHEMA_VERSION: u32 = 1;
9pub const WORKFLOW_EVIDENCE_LEDGER_V1_SCHEMA_VERSION: u32 = 1;
10pub const AUTONOMY_DRIVERS_V1_SCHEMA_VERSION: u32 = 1;
11pub const TOKENIZER_TRANSLATION_DRIVER_V1_SCHEMA_VERSION: u32 = 1;
12pub const ATTENTION_LAYOUT_DRIVER_V1_SCHEMA_VERSION: u32 = 1;
13pub const VERIFICATION_OBSERVABILITY_V1_SCHEMA_VERSION: u32 = 1;
14pub const HANDOFF_LEDGER_V1_SCHEMA_VERSION: u32 = 1;
15pub const HANDOFF_TRANSFER_BUNDLE_V1_SCHEMA_VERSION: u32 = 1;
16pub const CCP_SESSION_BUNDLE_V1_SCHEMA_VERSION: u32 = 1;
17pub const KNOWLEDGE_POLICY_V1_SCHEMA_VERSION: u32 = 1;
18pub const GRAPH_REPRODUCIBILITY_V1_SCHEMA_VERSION: u32 = 1;
19pub const A2A_SNAPSHOT_V1_SCHEMA_VERSION: u32 = 1;
20pub const MEMORY_BOUNDARY_V1_SCHEMA_VERSION: u32 = 1;
21pub const GOTCHAS_REMINDERS_V1_SCHEMA_VERSION: u32 = 1;
22pub const PROVIDER_FRAMEWORK_V1_SCHEMA_VERSION: u32 = 1;
23pub const CONTEXT_PACKAGE_V1_SCHEMA_VERSION: u32 = 1;
24pub const CONTEXT_PACKAGE_V2_SCHEMA_VERSION: u32 = 2;
25pub const CONTEXT_SNAPSHOT_V1_SCHEMA_VERSION: u32 = 1;
26
27pub const PACKAGE_EXTENSION: &str = "ctxpkg";
28pub const LEGACY_PACKAGE_EXTENSION: &str = "lctxpkg";
29pub const MAX_PACKAGE_FILE_BYTES: u64 = 10 * 1024 * 1024; // 10 MB
30
31pub fn is_package_file(path: &std::path::Path) -> bool {
32    path.extension()
33        .and_then(|e| e.to_str())
34        .is_some_and(|ext| ext == PACKAGE_EXTENSION || ext == LEGACY_PACKAGE_EXTENSION)
35}
36
37pub fn default_package_filename(name: &str, version: &str) -> String {
38    format!("{name}-{version}.{PACKAGE_EXTENSION}")
39}
40
41// Documentation-level contracts (do not have a schema field in payloads).
42pub const HTTP_MCP_CONTRACT_VERSION: u32 = 1;
43pub const TEAM_SERVER_CONTRACT_VERSION: u32 = 1;
44pub const CAPABILITIES_CONTRACT_VERSION: u32 = 1;
45
46/// Stability classification of a contract document (GL #394).
47///
48/// The classification is normative — `tests/contracts_frozen.rs` enforces it:
49/// * `Frozen` — the normative surface is immutable. Any change to the doc file
50///   fails CI; semantic evolution requires a new `-v2.md` file (the v1 file
51///   stays in place for existing integrations).
52/// * `Stable` — additive evolution allowed (new optional fields, new sections);
53///   breaking changes still require a version bump per CONTRACTS.md rules.
54/// * `Experimental` — may change or disappear without notice; not covered by
55///   the deprecation policy.
56#[derive(Debug, Clone, Copy, PartialEq, Eq)]
57pub enum ContractStatus {
58    Frozen,
59    Stable,
60    Experimental,
61}
62
63impl ContractStatus {
64    pub fn as_str(self) -> &'static str {
65        match self {
66            ContractStatus::Frozen => "frozen",
67            ContractStatus::Stable => "stable",
68            ContractStatus::Experimental => "experimental",
69        }
70    }
71}
72
73/// One contract document under `docs/contracts/`, classified for the
74/// stability matrix in CONTRACTS.md and the `/v1/capabilities` response.
75pub struct ContractDoc {
76    /// Short stable identifier (used in capabilities `contract_status`).
77    pub id: &'static str,
78    /// File name inside `docs/contracts/` (the normative artifact).
79    pub doc_file: &'static str,
80    pub version: u32,
81    pub status: ContractStatus,
82}
83
84/// The complete classified inventory of `docs/contracts/*.md` — the single
85/// source of truth for the stability matrix. `tests/contracts_frozen.rs`
86/// asserts that every file in the directory is listed here (no contract can
87/// stay unclassified) and that frozen docs never change.
88pub fn contract_docs() -> Vec<ContractDoc> {
89    use ContractStatus::{Experimental, Frozen, Stable};
90    let doc = |id, doc_file, version, status| ContractDoc {
91        id,
92        doc_file,
93        version,
94        status,
95    };
96    vec![
97        // ── Frozen: externally consumed platform/transport promises ────────
98        doc("http-mcp", "http-mcp-contract-v1.md", 1, Frozen),
99        doc("team-server", "team-server-contract-v1.md", 1, Frozen),
100        doc("context-ir", "context-ir-v1.md", 1, Frozen),
101        doc(
102            "local-free-invariant",
103            "local-free-invariant-v1.md",
104            1,
105            Frozen,
106        ),
107        doc(
108            "oss-plane-separation",
109            "oss-plane-separation-v1.md",
110            1,
111            Frozen,
112        ),
113        doc("billing-plane", "billing-plane-v1.md", 1, Frozen),
114        doc("wasm-abi", "wasm-abi-v1.md", 1, Frozen),
115        // ── Stable: additive evolution allowed ──────────────────────────────
116        // capabilities is additive BY DESIGN: its drift test binds the doc's
117        // key list to TOP_LEVEL_KEYS, so the doc grows with every new key —
118        // freezing the file would contradict its own contract.
119        doc("capabilities", "capabilities-contract-v1.md", 1, Stable),
120        doc("billing-plane-v2", "billing-plane-v2.md", 2, Stable),
121        // v2 = v1 + storageQuotaBytes/roiWebhookUrl (GL #387/#388); v1 stays frozen.
122        doc("billing-plane-v3", "billing-plane-v3.md", 3, Stable),
123        // v3 = v1 + business plan + sso_oidc entitlement (GL #460/#533); additive.
124        doc("evidence-bundle", "evidence-bundle-v1.md", 1, Stable),
125        // Offline-verifiable audit evidence ZIP (GL #425, H3 Epic A).
126        doc("team-server-v2", "team-server-contract-v2.md", 2, Stable),
127        doc("a2a", "a2a-contract-v1.md", 1, Stable),
128        doc(
129            "attention-layout-driver",
130            "attention-layout-driver-v1.md",
131            1,
132            Stable,
133        ),
134        doc("autonomy-drivers", "autonomy-drivers-v1.md", 1, Stable),
135        doc("ccp-session-bundle", "ccp-session-bundle-v1.md", 1, Stable),
136        doc("conformance", "conformance-v1.md", 1, Stable),
137        doc("degradation-policy", "degradation-policy-v1.md", 1, Stable),
138        doc("extension-trust", "extension-trust-v1.md", 1, Stable),
139        doc("extractors", "extractors-v1.md", 1, Stable),
140        doc(
141            "gotchas-reminders",
142            "gotchas-reminders-contract-v1.md",
143            1,
144            Stable,
145        ),
146        doc(
147            "graph-reproducibility",
148            "graph-reproducibility-contract-v1.md",
149            1,
150            Stable,
151        ),
152        doc(
153            "handoff-transfer-bundle",
154            "handoff-transfer-bundle-v1.md",
155            1,
156            Stable,
157        ),
158        doc("intent-route", "intent-route-v1.md", 1, Stable),
159        doc(
160            "knowledge-policy",
161            "knowledge-policy-contract-v1.md",
162            1,
163            Stable,
164        ),
165        doc(
166            "memory-boundary",
167            "memory-boundary-contract-v1.md",
168            1,
169            Stable,
170        ),
171        doc("persona-spec", "persona-spec-v1.md", 1, Stable),
172        doc(
173            "provider-framework",
174            "provider-framework-contract-v1.md",
175            1,
176            Stable,
177        ),
178        doc(
179            "tokenizer-translation-driver",
180            "tokenizer-translation-driver-v1.md",
181            1,
182            Stable,
183        ),
184        doc(
185            "workflow-evidence-ledger",
186            "workflow-evidence-ledger-v1.md",
187            1,
188            Stable,
189        ),
190        doc("wrapped-permalink", "wrapped-permalink-v1.md", 1, Stable),
191        // Community addon manifest (#858): self-declared stable (v1); the format
192        // evolves additively (new optional fields), so Stable, not Frozen.
193        doc("addon-manifest", "addon-manifest-v1.md", 1, Stable),
194        // ── Experimental: may change without notice ─────────────────────────
195        doc(
196            "hosted-personal-index",
197            "hosted-personal-index-v1.md",
198            1,
199            Experimental,
200        ),
201        doc(
202            "personal-cloud-encryption",
203            "personal-cloud-encryption-v1.md",
204            1,
205            Experimental,
206        ),
207        // 2026-06 org/cloud-plane wave — fresh surfaces, not yet consumed by
208        // external integrations; promote to Stable deliberately, not by default.
209        doc(
210            "context-policy-packs",
211            "context-policy-packs-v1.md",
212            1,
213            Experimental,
214        ),
215        doc("device-overview", "device-overview-v1.md", 1, Experimental),
216        doc("email-digest", "email-digest-v1.md", 1, Experimental),
217        doc("org-audit-log", "org-audit-log-v1.md", 1, Experimental),
218        doc("org-sso-oidc", "org-sso-oidc-v1.md", 1, Experimental),
219        // Quality loop (GL #494): edit-failure feedback into mode selection.
220        doc("quality-loop", "quality-loop-v1.md", 1, Experimental),
221        // Edit metering (GL #1144): anchored-vs-str_replace efficiency channel.
222        doc("edit-metering", "edit-metering-v1.md", 1, Experimental),
223        // Hosted ctxpkg registry (GL #406): fresh server surface.
224        doc("ctxpkg-registry", "ctxpkg-registry-v1.md", 1, Experimental),
225        // Context Time Machine (GL #1022/#1023): git-anchored, signed temporal
226        // snapshot format — fresh surface, evolving additively until stable.
227        doc(
228            "context-snapshot",
229            "context-snapshot-v1.md",
230            1,
231            Experimental,
232        ),
233        doc(
234            "team-invite-links",
235            "team-invite-links-v1.md",
236            1,
237            Experimental,
238        ),
239        // Org policy & compliance surfaces, still evolving with the Enterprise
240        // plane — Experimental until they stabilise. Commercial Enterprise
241        // licensing (#667) and success-fee billing (#669) live in the private
242        // cloud plane, not in the open engine (oss-plane-separation-v1).
243        doc("org-policy", "org-policy-v1.md", 1, Experimental),
244        doc(
245            "compliance-report",
246            "compliance-report-v1.md",
247            1,
248            Experimental,
249        ),
250    ]
251}
252
253/// Contract-id → stability status, exported through `/v1/capabilities` so
254/// clients can verify compatibility before relying on a surface (GL #394).
255pub fn status_kv() -> BTreeMap<&'static str, &'static str> {
256    contract_docs()
257        .into_iter()
258        .map(|d| (d.id, d.status.as_str()))
259        .collect()
260}
261
262pub fn versions_kv() -> BTreeMap<&'static str, u32> {
263    BTreeMap::from([
264        (
265            "leanctx.contract.mcp_manifest.schema_version",
266            MCP_MANIFEST_SCHEMA_VERSION,
267        ),
268        (
269            "leanctx.contract.context_proof_v1.schema_version",
270            CONTEXT_PROOF_V1_SCHEMA_VERSION,
271        ),
272        (
273            "leanctx.contract.context_ir_v1.schema_version",
274            CONTEXT_IR_V1_SCHEMA_VERSION,
275        ),
276        (
277            "leanctx.contract.intent_route_v1.schema_version",
278            INTENT_ROUTE_V1_SCHEMA_VERSION,
279        ),
280        (
281            "leanctx.contract.degradation_policy_v1.schema_version",
282            DEGRADATION_POLICY_V1_SCHEMA_VERSION,
283        ),
284        (
285            "leanctx.contract.workflow_evidence_ledger_v1.schema_version",
286            WORKFLOW_EVIDENCE_LEDGER_V1_SCHEMA_VERSION,
287        ),
288        (
289            "leanctx.contract.autonomy_drivers_v1.schema_version",
290            AUTONOMY_DRIVERS_V1_SCHEMA_VERSION,
291        ),
292        (
293            "leanctx.contract.tokenizer_translation_driver_v1.schema_version",
294            TOKENIZER_TRANSLATION_DRIVER_V1_SCHEMA_VERSION,
295        ),
296        (
297            "leanctx.contract.attention_layout_driver_v1.schema_version",
298            ATTENTION_LAYOUT_DRIVER_V1_SCHEMA_VERSION,
299        ),
300        (
301            "leanctx.contract.verification_observability_v1.schema_version",
302            VERIFICATION_OBSERVABILITY_V1_SCHEMA_VERSION,
303        ),
304        (
305            "leanctx.contract.handoff_ledger_v1.schema_version",
306            HANDOFF_LEDGER_V1_SCHEMA_VERSION,
307        ),
308        (
309            "leanctx.contract.handoff_transfer_bundle_v1.schema_version",
310            HANDOFF_TRANSFER_BUNDLE_V1_SCHEMA_VERSION,
311        ),
312        (
313            "leanctx.contract.ccp_session_bundle_v1.schema_version",
314            CCP_SESSION_BUNDLE_V1_SCHEMA_VERSION,
315        ),
316        (
317            "leanctx.contract.knowledge_policy_v1.schema_version",
318            KNOWLEDGE_POLICY_V1_SCHEMA_VERSION,
319        ),
320        (
321            "leanctx.contract.graph_reproducibility_v1.schema_version",
322            GRAPH_REPRODUCIBILITY_V1_SCHEMA_VERSION,
323        ),
324        (
325            "leanctx.contract.a2a_snapshot_v1.schema_version",
326            A2A_SNAPSHOT_V1_SCHEMA_VERSION,
327        ),
328        (
329            "leanctx.contract.memory_boundary_v1.schema_version",
330            MEMORY_BOUNDARY_V1_SCHEMA_VERSION,
331        ),
332        (
333            "leanctx.contract.gotchas_reminders_v1.schema_version",
334            GOTCHAS_REMINDERS_V1_SCHEMA_VERSION,
335        ),
336        (
337            "leanctx.contract.provider_framework_v1.schema_version",
338            PROVIDER_FRAMEWORK_V1_SCHEMA_VERSION,
339        ),
340        (
341            "leanctx.contract.context_package_v1.schema_version",
342            CONTEXT_PACKAGE_V1_SCHEMA_VERSION,
343        ),
344        (
345            "leanctx.contract.context_package_v2.schema_version",
346            CONTEXT_PACKAGE_V2_SCHEMA_VERSION,
347        ),
348        (
349            "leanctx.contract.context_snapshot_v1.schema_version",
350            CONTEXT_SNAPSHOT_V1_SCHEMA_VERSION,
351        ),
352        (
353            "leanctx.contract.http_mcp.contract_version",
354            HTTP_MCP_CONTRACT_VERSION,
355        ),
356        (
357            "leanctx.contract.team_server.contract_version",
358            TEAM_SERVER_CONTRACT_VERSION,
359        ),
360        (
361            "leanctx.contract.capabilities.contract_version",
362            CAPABILITIES_CONTRACT_VERSION,
363        ),
364    ])
365}
366
367#[cfg(test)]
368mod tests {
369    use super::*;
370
371    #[test]
372    fn contract_docs_have_unique_ids_and_files() {
373        let docs = contract_docs();
374        let mut ids: Vec<_> = docs.iter().map(|d| d.id).collect();
375        let mut files: Vec<_> = docs.iter().map(|d| d.doc_file).collect();
376        ids.sort_unstable();
377        files.sort_unstable();
378        let unique_ids: std::collections::BTreeSet<_> = ids.iter().collect();
379        let unique_files: std::collections::BTreeSet<_> = files.iter().collect();
380        assert_eq!(unique_ids.len(), docs.len(), "duplicate contract id");
381        assert_eq!(unique_files.len(), docs.len(), "duplicate doc file");
382    }
383
384    #[test]
385    fn frozen_set_covers_the_platform_promises() {
386        // The freeze (GL #394) is only meaningful if the externally consumed
387        // surfaces are actually in it. Removing one of these from `Frozen`
388        // is itself a breaking policy change.
389        let docs = contract_docs();
390        for id in [
391            "http-mcp",
392            "team-server",
393            "context-ir",
394            "local-free-invariant",
395            "oss-plane-separation",
396            "billing-plane",
397            "wasm-abi",
398        ] {
399            let entry = docs.iter().find(|d| d.id == id).expect("listed");
400            assert_eq!(
401                entry.status,
402                ContractStatus::Frozen,
403                "{id} must stay frozen"
404            );
405        }
406    }
407
408    #[test]
409    fn status_kv_matches_docs() {
410        let kv = status_kv();
411        assert_eq!(kv.len(), contract_docs().len());
412        assert_eq!(kv["http-mcp"], "frozen");
413        assert_eq!(kv["hosted-personal-index"], "experimental");
414        assert_eq!(kv["personal-cloud-encryption"], "experimental");
415    }
416
417    #[test]
418    fn doc_files_follow_versioned_naming() {
419        // v1→v2 rule: every doc file carries its version suffix so a breaking
420        // change lands as a NEW file instead of mutating the old one.
421        for d in contract_docs() {
422            assert!(
423                d.doc_file.ends_with(&format!("-v{}.md", d.version)),
424                "{} must end in -v{}.md",
425                d.doc_file,
426                d.version
427            );
428        }
429    }
430}