Back to Documentation Index
ADR-0002 Architectural BaselineSystem Architecture

ADR-0002: Sovereign Offline-First Data Vault

Architectural specification enforcing 100% air-gapped data storage and local workstation compute under ADR-0002.

Compliance Standard
ITAR & CMMC Level 3
Data Encryption
AES-256-GCM Vault Storage
Telemetry Policy
Zero External Outbound HTTP Requests
Storage Payload
SQLite (.zforge) Integrated Container

Architectural Decision Record 0002 dictates that all ZylForge core operations must execute without requiring active internet connectivity.

Local project vaults (.zforge) embed B-Rep geometry, FEA mesh nodes, GD&T drawings, and neural intent caches into a single encrypted SQLite file container.

Defense and aerospace contractors can deploy ZylForge in secure classified facilities with complete data sovereignty guarantee.

Technical Code Example
Production API
// Vault Cryptographic Initialization
const vault = new ZylforgeLocalVault({
  path: "./project.zforge",
  encryption: "AES-256-GCM",
  offlineOnly: true
});
Documentation verified against ZylForge Release v1.0.0-rc1
Get Desktop Build