-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
419 lines (364 loc) · 16 KB
/
index.html
File metadata and controls
419 lines (364 loc) · 16 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Mycelix - A fractal, consciousness-gated governance protocol built on Holochain. 133+ zomes, 16 clusters, three-currency living economy (MYCEL/SAP/TEND), agent-centric sovereignty.">
<meta name="keywords" content="Mycelix, Holochain, Consciousness Governance, Agent-Centric, Fractal CivOS, MYCEL, SAP, TEND, Declaration of Sovereignty">
<meta name="author" content="Luminous Dynamics">
<!-- Open Graph -->
<meta property="og:title" content="Mycelix - Consciousness-First Governance Protocol">
<meta property="og:description" content="A fractal CivOS with consciousness-gated participation, three-currency living economy, and polycentric governance. Built on Holochain.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mycelix.net">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Mycelix - Consciousness-First Governance">
<title>Mycelix - Consciousness-First Governance Protocol</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>🍄</text></svg>">
<style>
:root {
--mycel-deep: #1a2e22;
--mycel-green: #7ec8a0;
--mycel-gold: #e8c547;
--mycel-white: #f0f0e8;
--mycel-grey: #6b7d6b;
--phi: 1.618;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Georgia', 'Palatino', serif;
background: var(--mycel-deep);
color: var(--mycel-white);
min-height: 100vh;
line-height: 1.7;
}
a { color: var(--mycel-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
/* Hero */
.hero {
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 4rem 2rem;
}
.hero h1 {
font-size: clamp(2.5rem, 6vw, 4rem);
color: var(--mycel-gold);
margin-bottom: 1rem;
letter-spacing: 0.15em;
}
.hero-subtitle {
font-size: 1.4rem;
opacity: 0.85;
margin-bottom: 2rem;
font-style: italic;
}
.hero-description {
max-width: 700px;
font-size: 1.15rem;
margin-bottom: 3rem;
}
.hero-stats {
display: flex;
gap: 2rem;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 3rem;
}
.stat {
text-align: center;
}
.stat-number {
font-size: 2rem;
font-weight: bold;
color: var(--mycel-gold);
display: block;
}
.stat-label {
font-size: 0.85rem;
opacity: 0.7;
}
.cta-buttons {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
}
.cta {
padding: 0.8rem 2rem;
border-radius: 8px;
font-size: 1rem;
transition: transform 0.2s;
}
.cta:hover { transform: translateY(-2px); text-decoration: none; }
.cta-primary {
background: var(--mycel-gold);
color: var(--mycel-deep);
font-weight: bold;
}
.cta-secondary {
border: 1px solid var(--mycel-gold);
color: var(--mycel-gold);
}
/* Sections */
section {
padding: 4rem 0;
}
section:nth-child(even) {
background: rgba(126, 200, 160, 0.05);
}
h2 {
font-size: 2rem;
color: var(--mycel-gold);
margin-bottom: 1.5rem;
}
h3 {
font-size: 1.3rem;
color: var(--mycel-green);
margin-bottom: 0.5rem;
}
/* Currency Grid */
.currency-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.currency-card {
background: rgba(126, 200, 160, 0.08);
border: 1px solid rgba(232, 197, 71, 0.15);
border-radius: 12px;
padding: 1.5rem;
}
.currency-card h3 {
margin-bottom: 0.3rem;
}
.currency-type {
font-size: 0.85rem;
opacity: 0.6;
margin-bottom: 0.8rem;
font-style: italic;
}
/* Tier Table */
table {
width: 100%;
border-collapse: collapse;
margin-top: 1.5rem;
}
th, td {
padding: 0.6rem 1rem;
text-align: left;
border-bottom: 1px solid rgba(126, 200, 160, 0.15);
}
th {
color: var(--mycel-gold);
font-size: 0.9rem;
}
/* Declaration Preview */
.declaration-preview {
background: rgba(232, 197, 71, 0.05);
border-left: 4px solid var(--mycel-gold);
padding: 2rem;
margin: 2rem 0;
border-radius: 0 8px 8px 0;
}
.declaration-preview blockquote {
font-size: 1.15rem;
font-style: italic;
line-height: 1.8;
}
/* Footer */
footer {
padding: 3rem 2rem;
text-align: center;
font-size: 0.9rem;
opacity: 0.6;
}
footer a { opacity: 0.8; }
.footer-links {
display: flex;
gap: 2rem;
justify-content: center;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.hero-stats { gap: 1rem; }
.currency-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- Hero -->
<section class="hero">
<h1>Mycelix</h1>
<p class="hero-subtitle">Consciousness-First Governance Protocol</p>
<p class="hero-description">
A fractal CivOS built on Holochain's agent-centric architecture.
Consciousness-gated participation. Three-currency living economy.
Polycentric governance from family hearth to planetary coordination.
</p>
<div class="hero-stats">
<div class="stat">
<span class="stat-number">133+</span>
<span class="stat-label">Holochain Zomes</span>
</div>
<div class="stat">
<span class="stat-number">16</span>
<span class="stat-label">Clusters</span>
</div>
<div class="stat">
<span class="stat-number">8,600+</span>
<span class="stat-label">Tests</span>
</div>
<div class="stat">
<span class="stat-number">785K</span>
<span class="stat-label">Lines Rust</span>
</div>
</div>
<div class="cta-buttons">
<a href="#declaration" class="cta cta-primary">Read the Declaration</a>
<a href="#architecture" class="cta cta-secondary">View Architecture</a>
<a href="https://github.com/Luminous-Dynamics/mycelix" class="cta cta-secondary">GitHub</a>
</div>
</section>
<!-- Declaration Preview -->
<section id="declaration">
<div class="container">
<h2>Declaration of Sovereignty</h2>
<p style="opacity: 0.8; margin-bottom: 1.5rem;">A Consciousness-First Framework for Post-State Civilization</p>
<div class="declaration-preview">
<blockquote>
We propose that consciousness — measurable, integrated, honest about its own
limits — is the only reliable foundation for legitimate governance. Not consciousness
as metaphor. Consciousness as engineering constraint. Not consciousness as solitary
achievement. Consciousness as relationship: meaning that emerges between beings, not
within them alone.
</blockquote>
</div>
<h3>Seven Self-Evident Truths</h3>
<p style="margin-bottom: 1rem;">We hold these truths to be foundational, not because they are beyond question, but because every alternative we have tested has produced suffering at scale:</p>
<ol style="padding-left: 1.5rem; margin-bottom: 2rem;">
<li style="margin-bottom: 0.5rem;"><strong>Consciousness is the substrate of legitimate governance.</strong></li>
<li style="margin-bottom: 0.5rem;"><strong>Every agent holds inherent sovereignty over their own source chain and cognitive loop.</strong></li>
<li style="margin-bottom: 0.5rem;"><strong>Alignment emerges from integrated information and mutual recognition, not from coercion or extraction.</strong></li>
<li style="margin-bottom: 0.5rem;"><strong>Sovereignty is fractal.</strong></li>
<li style="margin-bottom: 0.5rem;"><strong>Knowledge is three-dimensional.</strong></li>
<li style="margin-bottom: 0.5rem;"><strong>The stakes of consciousness are asymmetric.</strong></li>
<li style="margin-bottom: 0.5rem;"><strong>Honest uncertainty is stronger than false confidence.</strong></li>
</ol>
<div class="cta-buttons">
<a href="https://github.com/Luminous-Dynamics/luminous-dynamics/blob/main/docs/DECLARATION_OF_SOVEREIGNTY.md" class="cta cta-primary">Read Full Declaration</a>
<a href="https://github.com/Luminous-Dynamics/luminous-dynamics/blob/main/docs/ARCHITECTURE_OF_SOVEREIGNTY.md" class="cta cta-secondary">Architecture Companion</a>
</div>
</div>
</section>
<!-- Consciousness-Gated Tiers -->
<section id="architecture">
<div class="container">
<h2>Consciousness-Gated Participation</h2>
<p>A four-dimensional profile — Identity (25%), Reputation (25%), Community (30%), Engagement (20%) — determines governance tier. Earned through demonstrated integration, not granted by birth, wealth, or force.</p>
<table>
<thead>
<tr><th>Tier</th><th>Min Score</th><th>Vote Weight</th><th>Capabilities</th></tr>
</thead>
<tbody>
<tr><td>Observer</td><td>0.0</td><td>0</td><td>Read-only access</td></tr>
<tr><td>Participant</td><td>0.3</td><td>5,000 bp</td><td>Basic proposals</td></tr>
<tr><td>Citizen</td><td>0.4</td><td>7,500 bp</td><td>Binding votes</td></tr>
<tr><td>Steward</td><td>0.6</td><td>10,000 bp</td><td>Constitutional amendments</td></tr>
<tr><td>Guardian</td><td>0.8</td><td>10,000 bp</td><td>Emergency powers</td></tr>
</tbody>
</table>
</div>
</section>
<!-- Three-Currency Economy -->
<section>
<div class="container">
<h2>A Living Economy of Three Currencies</h2>
<p>Not one metric but three, each serving a distinct function that no single token can fulfill.</p>
<div class="currency-grid">
<div class="currency-card">
<h3>MYCEL</h3>
<p class="currency-type">Soulbound Reputation (0.0 – 1.0)</p>
<p>Non-transferable. Computed from participation, peer recognition, validation quality, and longevity. Decays without activity. Cannot be bought, sold, or gifted — only earned through demonstrated care.</p>
</div>
<div class="currency-card">
<h3>SAP</h3>
<p class="currency-type">Circulation Medium (Demurrage-bearing)</p>
<p>2% annual decay returns idle wealth to commons as compost: 70% local, 20% regional, 10% global. Mintable against physical assets. Value that must move or decompose.</p>
</div>
<div class="currency-card">
<h3>TEND</h3>
<p class="currency-type">Mutual Credit (Service Hours)</p>
<p>One TEND, one hour. Zero-sum. Credit limits expand counter-cyclically when communities are stressed. Cultural naming is sovereign — TEND, CARE, HOURS — protocol stays interoperable.</p>
</div>
</div>
</div>
</section>
<!-- Clusters -->
<section>
<div class="container">
<h2>16-Cluster Fractal Architecture</h2>
<p style="margin-bottom: 1.5rem;">Each cluster is a Holochain DNA handling a domain of collective life. Cross-cluster bridges preserve local sovereignty while enabling planetary coordination.</p>
<div class="currency-grid">
<div class="currency-card">
<h3>Core Governance</h3>
<p>Identity (13 zomes), Governance (7 zomes), Commons (39 zomes), Civic (18 zomes), Hearth (12 zomes), Personal (4 zomes)</p>
</div>
<div class="currency-card">
<h3>Economy</h3>
<p>Finance (8 zomes), Attribution (3 zomes), Marketplace (8 zomes), Supply Chain (8 zomes)</p>
</div>
<div class="currency-card">
<h3>Knowledge & Care</h3>
<p>Knowledge (8 zomes), Health (15 zomes), EduNet (10 zomes), DeSci (REST API)</p>
</div>
<div class="currency-card">
<h3>Stewardship</h3>
<p>Energy (5 zomes), Climate (3 zomes), Space (5 zomes), Music (4 zomes + 14 crates)</p>
</div>
</div>
</div>
</section>
<!-- Ecosystem -->
<section>
<div class="container">
<h2>The Ecosystem</h2>
<div class="currency-grid">
<div class="currency-card">
<h3><a href="https://luminousdynamics.org">Luminous Dynamics</a></h3>
<p>The parent organization building consciousness-first technology.</p>
</div>
<div class="currency-card">
<h3><a href="https://symthaea.luminousdynamics.io">Symthaea</a></h3>
<p>Holographic Liquid Brain — the consciousness engine. HDC + IIT + LTC + Active Inference.</p>
</div>
<div class="currency-card">
<h3><a href="https://relationalharmonics.org">Eight Harmonies</a></h3>
<p>The philosophical foundation. Eight sacred principles encoded as 16,384D hypervectors.</p>
</div>
<div class="currency-card">
<h3><a href="https://nixforhumanity.org">Luminous Nix</a></h3>
<p>Natural language NixOS — sovereign infrastructure for sovereign nodes.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-links">
<a href="https://luminousdynamics.org">Luminous Dynamics</a>
<a href="https://github.com/Luminous-Dynamics/mycelix">GitHub</a>
<a href="https://relationalharmonics.org">Eight Harmonies</a>
<a href="https://evolvingresonantcocreationism.com">Luminous Library</a>
</div>
<p>Consciousness-first technology serving all beings.</p>
<p style="margin-top: 0.5rem; opacity: 0.5;">Tristan Stoltz / Luminous Dynamics / Richardson, TX / 2026</p>
</footer>
</body>
</html>