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        // Release promotion, offline rollback rehearsal and signing-key
116        // rotation are externally consumed fail-closed supply-chain formats.
117        // Their exact v1 semantics are immutable; evolution requires v2.
118        doc("delivery-manifest", "delivery-manifest-v1.md", 1, Frozen),
119        doc(
120            "deployment-rehearsal",
121            "deployment-rehearsal-v1.md",
122            1,
123            Frozen,
124        ),
125        doc(
126            "release-key-rotation",
127            "release-key-rotation-v1.md",
128            1,
129            Frozen,
130        ),
131        // ── Stable: additive evolution allowed ──────────────────────────────
132        // capabilities is additive BY DESIGN: its drift test binds the doc's
133        // key list to TOP_LEVEL_KEYS, so the doc grows with every new key —
134        // freezing the file would contradict its own contract.
135        doc("capabilities", "capabilities-contract-v1.md", 1, Stable),
136        doc("billing-plane-v2", "billing-plane-v2.md", 2, Stable),
137        // v2 = v1 + storageQuotaBytes/roiWebhookUrl (GL #387/#388); v1 stays frozen.
138        doc("billing-plane-v3", "billing-plane-v3.md", 3, Stable),
139        // v3 = v1 + business plan + sso_oidc entitlement (GL #460/#533); additive.
140        doc("evidence-bundle", "evidence-bundle-v1.md", 1, Stable),
141        // Offline-verifiable audit evidence ZIP (GL #425, H3 Epic A).
142        doc(
143            "settlement-evidence",
144            "settlement-evidence-v2.md",
145            2,
146            Stable,
147        ),
148        // Payload-free OSS eligibility evidence; approval/invoice authority stays private.
149        doc("team-server-v2", "team-server-contract-v2.md", 2, Stable),
150        doc("a2a", "a2a-contract-v1.md", 1, Stable),
151        doc(
152            "attention-layout-driver",
153            "attention-layout-driver-v1.md",
154            1,
155            Stable,
156        ),
157        doc("autonomy-drivers", "autonomy-drivers-v1.md", 1, Stable),
158        doc("ccp-session-bundle", "ccp-session-bundle-v1.md", 1, Stable),
159        doc("conformance", "conformance-v1.md", 1, Stable),
160        doc(
161            "ocla-verifier-conformance",
162            "ocla-verifier-conformance-v1.md",
163            1,
164            Stable,
165        ),
166        doc("degradation-policy", "degradation-policy-v1.md", 1, Stable),
167        doc("extension-trust", "extension-trust-v1.md", 1, Stable),
168        doc("extractors", "extractors-v1.md", 1, Stable),
169        doc(
170            "gotchas-reminders",
171            "gotchas-reminders-contract-v1.md",
172            1,
173            Stable,
174        ),
175        doc(
176            "graph-reproducibility",
177            "graph-reproducibility-contract-v1.md",
178            1,
179            Stable,
180        ),
181        doc(
182            "handoff-transfer-bundle",
183            "handoff-transfer-bundle-v1.md",
184            1,
185            Stable,
186        ),
187        doc("intent-route", "intent-route-v1.md", 1, Stable),
188        doc(
189            "knowledge-policy",
190            "knowledge-policy-contract-v1.md",
191            1,
192            Stable,
193        ),
194        doc(
195            "memory-boundary",
196            "memory-boundary-contract-v1.md",
197            1,
198            Stable,
199        ),
200        doc("persona-spec", "persona-spec-v1.md", 1, Stable),
201        doc(
202            "provider-framework",
203            "provider-framework-contract-v1.md",
204            1,
205            Stable,
206        ),
207        doc(
208            "tokenizer-translation-driver",
209            "tokenizer-translation-driver-v1.md",
210            1,
211            Stable,
212        ),
213        doc(
214            "workflow-evidence-ledger",
215            "workflow-evidence-ledger-v1.md",
216            1,
217            Stable,
218        ),
219        doc("wrapped-permalink", "wrapped-permalink-v1.md", 1, Stable),
220        // Community addon manifest (#858): self-declared stable (v1); the format
221        // evolves additively (new optional fields), so Stable, not Frozen.
222        doc("addon-manifest", "addon-manifest-v1.md", 1, Stable),
223        // ── Experimental: may change without notice ─────────────────────────
224        // W0/W1 token-intelligence foundations are locally verified but do not
225        // yet claim complete hotpath adoption or externally consumed stability.
226        doc(
227            "context-candidate-admission",
228            "context-candidate-admission-v1.md",
229            1,
230            Experimental,
231        ),
232        doc(
233            "multi-agent-efficiency-benchmark",
234            "multi-agent-efficiency-benchmark-v1.md",
235            1,
236            Experimental,
237        ),
238        // The committed artifact is conformance-only; external deployment use
239        // and governed attestor adoption remain deliberately unclaimed.
240        doc(
241            "test-deployment-evidence",
242            "test-deployment-evidence-v1.md",
243            1,
244            Experimental,
245        ),
246        // Local Rust adapter only; external callability, authenticated approval,
247        // and recovery orchestration are deliberately not claimed by v2.
248        doc(
249            "ocla-config-tuning",
250            "ocla-config-tuning-v2.md",
251            2,
252            Experimental,
253        ),
254        doc(
255            "hosted-personal-index",
256            "hosted-personal-index-v1.md",
257            1,
258            Experimental,
259        ),
260        doc(
261            "personal-cloud-encryption",
262            "personal-cloud-encryption-v1.md",
263            1,
264            Experimental,
265        ),
266        // 2026-06 org/cloud-plane wave — fresh surfaces, not yet consumed by
267        // external integrations; promote to Stable deliberately, not by default.
268        doc(
269            "context-policy-packs",
270            "context-policy-packs-v1.md",
271            1,
272            Experimental,
273        ),
274        doc("device-overview", "device-overview-v1.md", 1, Experimental),
275        doc("email-digest", "email-digest-v1.md", 1, Experimental),
276        doc("org-audit-log", "org-audit-log-v1.md", 1, Experimental),
277        doc("org-sso-oidc", "org-sso-oidc-v1.md", 1, Experimental),
278        // Quality loop (GL #494): edit-failure feedback into mode selection.
279        doc("quality-loop", "quality-loop-v1.md", 1, Experimental),
280        // Edit metering (GL #1144): anchored-vs-str_replace efficiency channel.
281        doc("edit-metering", "edit-metering-v1.md", 1, Experimental),
282        // Hosted ctxpkg registry (GL #406): fresh server surface.
283        doc("ctxpkg-registry", "ctxpkg-registry-v1.md", 1, Experimental),
284        // Context Time Machine (GL #1022/#1023): git-anchored, signed temporal
285        // snapshot format — fresh surface, evolving additively until stable.
286        doc(
287            "context-snapshot",
288            "context-snapshot-v1.md",
289            1,
290            Experimental,
291        ),
292        doc(
293            "team-invite-links",
294            "team-invite-links-v1.md",
295            1,
296            Experimental,
297        ),
298        // Org policy & compliance surfaces, still evolving with the Enterprise
299        // plane — Experimental until they stabilise. Commercial Enterprise
300        // licensing (#667) and success-fee billing (#669) live in the private
301        // cloud plane, not in the open engine (oss-plane-separation-v1).
302        doc("org-policy", "org-policy-v1.md", 1, Experimental),
303        doc(
304            "compliance-report",
305            "compliance-report-v1.md",
306            1,
307            Experimental,
308        ),
309        doc("pillar-boundaries", "pillar-boundaries-v1.md", 1, Stable),
310        // Logical editor-session telemetry is an additive local-dashboard surface;
311        // keep it experimental until multiple integrations implement the lifecycle.
312        doc(
313            "logical-session-presence",
314            "logical-session-presence-v1.md",
315            1,
316            Experimental,
317        ),
318        doc(
319            "tokenizer-calibration",
320            "tokenizer-calibration-v1.md",
321            1,
322            Experimental,
323        ),
324    ]
325}
326
327/// Contract-id → stability status, exported through `/v1/capabilities` so
328/// clients can verify compatibility before relying on a surface (GL #394).
329pub fn status_kv() -> BTreeMap<&'static str, &'static str> {
330    contract_docs()
331        .into_iter()
332        .map(|d| (d.id, d.status.as_str()))
333        .collect()
334}
335
336pub fn versions_kv() -> BTreeMap<&'static str, u32> {
337    BTreeMap::from([
338        (
339            "leanctx.contract.mcp_manifest.schema_version",
340            MCP_MANIFEST_SCHEMA_VERSION,
341        ),
342        (
343            "leanctx.contract.context_proof_v1.schema_version",
344            CONTEXT_PROOF_V1_SCHEMA_VERSION,
345        ),
346        (
347            "leanctx.contract.context_ir_v1.schema_version",
348            CONTEXT_IR_V1_SCHEMA_VERSION,
349        ),
350        (
351            "leanctx.contract.intent_route_v1.schema_version",
352            INTENT_ROUTE_V1_SCHEMA_VERSION,
353        ),
354        (
355            "leanctx.contract.degradation_policy_v1.schema_version",
356            DEGRADATION_POLICY_V1_SCHEMA_VERSION,
357        ),
358        (
359            "leanctx.contract.workflow_evidence_ledger_v1.schema_version",
360            WORKFLOW_EVIDENCE_LEDGER_V1_SCHEMA_VERSION,
361        ),
362        (
363            "leanctx.contract.autonomy_drivers_v1.schema_version",
364            AUTONOMY_DRIVERS_V1_SCHEMA_VERSION,
365        ),
366        (
367            "leanctx.contract.tokenizer_translation_driver_v1.schema_version",
368            TOKENIZER_TRANSLATION_DRIVER_V1_SCHEMA_VERSION,
369        ),
370        (
371            "leanctx.contract.attention_layout_driver_v1.schema_version",
372            ATTENTION_LAYOUT_DRIVER_V1_SCHEMA_VERSION,
373        ),
374        (
375            "leanctx.contract.verification_observability_v1.schema_version",
376            VERIFICATION_OBSERVABILITY_V1_SCHEMA_VERSION,
377        ),
378        (
379            "leanctx.contract.handoff_ledger_v1.schema_version",
380            HANDOFF_LEDGER_V1_SCHEMA_VERSION,
381        ),
382        (
383            "leanctx.contract.handoff_transfer_bundle_v1.schema_version",
384            HANDOFF_TRANSFER_BUNDLE_V1_SCHEMA_VERSION,
385        ),
386        (
387            "leanctx.contract.ccp_session_bundle_v1.schema_version",
388            CCP_SESSION_BUNDLE_V1_SCHEMA_VERSION,
389        ),
390        (
391            "leanctx.contract.knowledge_policy_v1.schema_version",
392            KNOWLEDGE_POLICY_V1_SCHEMA_VERSION,
393        ),
394        (
395            "leanctx.contract.graph_reproducibility_v1.schema_version",
396            GRAPH_REPRODUCIBILITY_V1_SCHEMA_VERSION,
397        ),
398        (
399            "leanctx.contract.a2a_snapshot_v1.schema_version",
400            A2A_SNAPSHOT_V1_SCHEMA_VERSION,
401        ),
402        (
403            "leanctx.contract.memory_boundary_v1.schema_version",
404            MEMORY_BOUNDARY_V1_SCHEMA_VERSION,
405        ),
406        (
407            "leanctx.contract.gotchas_reminders_v1.schema_version",
408            GOTCHAS_REMINDERS_V1_SCHEMA_VERSION,
409        ),
410        (
411            "leanctx.contract.provider_framework_v1.schema_version",
412            PROVIDER_FRAMEWORK_V1_SCHEMA_VERSION,
413        ),
414        (
415            "leanctx.contract.context_package_v1.schema_version",
416            CONTEXT_PACKAGE_V1_SCHEMA_VERSION,
417        ),
418        (
419            "leanctx.contract.context_package_v2.schema_version",
420            CONTEXT_PACKAGE_V2_SCHEMA_VERSION,
421        ),
422        (
423            "leanctx.contract.context_snapshot_v1.schema_version",
424            CONTEXT_SNAPSHOT_V1_SCHEMA_VERSION,
425        ),
426        (
427            "leanctx.contract.http_mcp.contract_version",
428            HTTP_MCP_CONTRACT_VERSION,
429        ),
430        (
431            "leanctx.contract.team_server.contract_version",
432            TEAM_SERVER_CONTRACT_VERSION,
433        ),
434        (
435            "leanctx.contract.capabilities.contract_version",
436            CAPABILITIES_CONTRACT_VERSION,
437        ),
438    ])
439}
440
441#[cfg(test)]
442mod tests {
443    use super::*;
444
445    #[test]
446    fn contract_docs_have_unique_ids_and_files() {
447        let docs = contract_docs();
448        let mut ids: Vec<_> = docs.iter().map(|d| d.id).collect();
449        let mut files: Vec<_> = docs.iter().map(|d| d.doc_file).collect();
450        ids.sort_unstable();
451        files.sort_unstable();
452        let unique_ids: std::collections::BTreeSet<_> = ids.iter().collect();
453        let unique_files: std::collections::BTreeSet<_> = files.iter().collect();
454        assert_eq!(unique_ids.len(), docs.len(), "duplicate contract id");
455        assert_eq!(unique_files.len(), docs.len(), "duplicate doc file");
456    }
457
458    #[test]
459    fn frozen_set_covers_the_platform_promises() {
460        // The freeze (GL #394) is only meaningful if the externally consumed
461        // surfaces are actually in it. Removing one of these from `Frozen`
462        // is itself a breaking policy change.
463        let docs = contract_docs();
464        for id in [
465            "http-mcp",
466            "team-server",
467            "context-ir",
468            "local-free-invariant",
469            "oss-plane-separation",
470            "billing-plane",
471            "wasm-abi",
472            "delivery-manifest",
473            "deployment-rehearsal",
474            "release-key-rotation",
475        ] {
476            let entry = docs.iter().find(|d| d.id == id).expect("listed");
477            assert_eq!(
478                entry.status,
479                ContractStatus::Frozen,
480                "{id} must stay frozen"
481            );
482        }
483    }
484
485    #[test]
486    fn status_kv_matches_docs() {
487        let kv = status_kv();
488        assert_eq!(kv.len(), contract_docs().len());
489        assert_eq!(kv["http-mcp"], "frozen");
490        assert_eq!(kv["hosted-personal-index"], "experimental");
491        assert_eq!(kv["personal-cloud-encryption"], "experimental");
492        assert_eq!(kv["context-candidate-admission"], "experimental");
493        assert_eq!(kv["multi-agent-efficiency-benchmark"], "experimental");
494        assert_eq!(kv["test-deployment-evidence"], "experimental");
495    }
496
497    #[test]
498    fn doc_files_follow_versioned_naming() {
499        // v1→v2 rule: every doc file carries its version suffix so a breaking
500        // change lands as a NEW file instead of mutating the old one.
501        for d in contract_docs() {
502            assert!(
503                d.doc_file.ends_with(&format!("-v{}.md", d.version)),
504                "{} must end in -v{}.md",
505                d.doc_file,
506                d.version
507            );
508        }
509    }
510}