-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolivre.html
More file actions
114 lines (103 loc) · 3.75 KB
/
Copy pathsolivre.html
File metadata and controls
114 lines (103 loc) · 3.75 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
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Solivre · Identity Kernel</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">Architecture</a>
<a href="solivre.html" class="active">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>
<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>Solivre Identity Kernel</h1>
<p class="section-lead">
Solivre is the identity-native kernel at the heart of LIVRE OS. It manages your
claims, keys, permissions, and proof descriptors without ever putting raw identity
data on-chain.
</p>
<div class="card-grid dev-grid">
<article class="card">
<h3>What Solivre manages</h3>
<ul class="bullets">
<li>Identity root commitments.</li>
<li>Claims (age, residency, qualifications, membership, etc.).</li>
<li>Permission policies & consent.</li>
<li>Proof descriptors for GC/MPC and other proving backends.</li>
<li>Bindings between identities and LivreID namespaces.</li>
</ul>
</article>
<article class="card">
<h3>Why it matters</h3>
<p>
Instead of scattering your data across institutions, Solivre gives you a single
sovereign identity engine that can answer questions about you cryptographically
— without ever leaking your underlying information.
</p>
<p>
Apps ask Solivre for <em>signals</em> (e.g. “is this user over 18?”) and receive
verifiable proofs, not raw documents. This keeps compliance manageable while
protecting the person behind the proofs.
</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>