-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchitecture.html
More file actions
108 lines (97 loc) · 3.77 KB
/
Copy patharchitecture.html
File metadata and controls
108 lines (97 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Architecture · LIVRE OS</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<!-- Shared nav -->
<header class="nav">
<div class="nav-inner">
<a href="index.html" class="nav-logo">
LIVRE<span>OS</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation">
<span></span><span></span><span></span>
</button>
<nav class="nav-links">
<a href="architecture.html" class="active">Architecture</a>
<a href="solivre.html">Solivre</a>
<a href="livreid.html">LivreID</a>
<a href="vault.html">Vault</a>
<a href="developers.html">Developers</a>
<a href="roadmap.html">Roadmap</a>
<a href="contact.html">Contact</a>
<div class="nav-dropdown">
<button class="nav-drop-btn">
MVPs <span class="chevron">▾</span>
</button>
<div class="nav-drop-menu">
<a href="mvps.html#identity-node">Identity Node</a>
<a href="mvps.html#agent-console">Agent Console</a>
<a href="mvps.html#verifier-console">Verifier Console</a>
<a href="mvps.html#livre-vault">Livre Vault</a>
<a href="mvps.html#id-kernel">ID Kernel</a>
</div>
</div>
<!-- Direct links to MVP UI on GitHub Pages -->
<a href="https://livre-os.github.io/solivre-mvp-ui/agent.html" target="_blank" rel="noreferrer">
MVP Agent
</a>
<a href="https://livre-os.github.io/solivre-mvp-ui/verifier.html" target="_blank" rel="noreferrer">
MVP Verifier
</a>
</nav>
</div>
</header>
<main>
<section class="section">
<div class="container">
<h1>Architecture</h1>
<p class="section-lead">
LIVRE OS is organized as a layered operating system: from COTI’s gcEVM up through
Solivre, LivreID, LivreVault, and the applications that consume proofs.
</p>
<div class="card-grid arch-grid">
<article class="card">
<h3>Layer Model</h3>
<ul class="bullets">
<li><strong>Layer 5</strong> — Apps & Institutions</li>
<li><strong>Layer 4</strong> — LivreKit SDK & APIs</li>
<li><strong>Layer 3</strong> — LivreID, Proof Engine, LivreVault</li>
<li><strong>Layer 2</strong> — Solivre Kernel</li>
<li><strong>Layer 1</strong> — Core Contracts on COTI</li>
<li><strong>Layer 0</strong> — COTI gcEVM Network</li>
</ul>
</article>
<article class="card">
<h3>Design Principles</h3>
<ul class="bullets">
<li>Zero raw identity on-chain.</li>
<li>User-owned keys and storage.</li>
<li>Minimal, non-linkable proofs.</li>
<li>Composable claims and policies.</li>
<li>Auditable contracts & circuits.</li>
</ul>
<p class="arch-note">
Full architecture specs live in the internal LIVRE OS documentation:
Solivre Kernel, LivreID, Proof Engine, Vault, Key Management, Nodes & Compute.
</p>
</article>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-inner">
<span>© <span id="year"></span> LIVRE OS · Sovereign Identity Operating System</span>
<span class="footer-note">
Solivre · LivreID · LivreVault · Built for COTI gcEVM · Experimental, not production-ready.
</span>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>