-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
609 lines (526 loc) Β· 21.2 KB
/
index.html
File metadata and controls
609 lines (526 loc) Β· 21.2 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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
<!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="R-Omega: Ethical framework for autonomous AI systems that preserve human freedom">
<title>Project Robert β The World Gardener</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: #333;
}
/* Hero Section */
.hero {
position: relative;
width: 100%;
min-height: 400px;
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
display: flex;
align-items: center;
justify-content: center;
padding: 3rem 2rem;
}
.hero-icon {
position: absolute;
top: 2rem;
right: 2rem;
width: 150px;
height: 150px;
opacity: 0.9;
}
.hero-icon img {
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}
.hero-content {
position: relative;
text-align: center;
color: white;
max-width: 800px;
padding: 2rem;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 300;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero .subtitle {
font-size: 1.5rem;
margin-bottom: 1.5rem;
font-weight: 600;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
font-size: 1.1rem;
line-height: 1.8;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero .highlight {
font-size: 1.3rem;
font-weight: 600;
margin-top: 1.5rem;
color: #fdbb2d;
}
/* Main Content */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 2rem;
}
.section-title {
font-size: 2.5rem;
margin-bottom: 1rem;
text-align: center;
color: #1a2a6c;
}
.section-subtitle {
font-size: 1.2rem;
text-align: center;
color: #666;
margin-bottom: 1.5rem;
font-style: italic;
}
/* R-Omega Spec Toggle */
.ro-toggle-btn {
background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
color: #fdbb2d;
border: 2px solid #fdbb2d;
padding: 0.8rem 1.5rem;
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
font-size: 1rem;
cursor: pointer;
border-radius: 6px;
transition: all 0.3s ease;
display: block;
margin: 0 auto 2rem auto;
}
.ro-toggle-btn:hover {
background: #fdbb2d;
color: #1a2a6c;
}
.ro-panel {
display: none;
background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
border: 2px solid #fdbb2d;
border-radius: 8px;
padding: 1.5rem;
margin: 0 auto 2rem auto;
max-width: 720px;
overflow-x: auto;
}
.ro-panel.open {
display: block;
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.ro-panel pre {
margin: 0;
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
font-size: 12px;
line-height: 1.5;
color: #e0e0e0;
white-space: pre;
}
.ro-panel .c { color: #6a9955; }
.ro-panel .s { color: #9cdcfe; }
.ro-panel .a { color: #dcdcaa; }
.ro-panel .x { color: #ce9178; }
.ro-panel .l { color: #fdbb2d; }
@media (max-width: 768px) {
.ro-panel pre {
font-size: 10px;
}
.ro-panel {
padding: 1rem;
}
}
/* Story Grid */
.stories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.story-card {
background: white;
border-radius: 8px;
padding: 2rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 4px solid #1a2a6c;
}
.story-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}
.story-card h3 {
color: #1a2a6c;
margin-bottom: 1rem;
font-size: 1.3rem;
}
.story-card p {
color: #555;
margin-bottom: 1rem;
line-height: 1.6;
}
.story-card .action {
color: #b21f1f;
font-weight: 600;
margin-top: 1rem;
font-size: 0.95rem;
}
/* Resources Section */
.resources {
background: #f8f9fa;
padding: 4rem 2rem;
margin-top: 4rem;
}
.resources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.resource-card {
background: white;
padding: 2rem;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.resource-card h3 {
color: #1a2a6c;
margin-bottom: 1rem;
}
.resource-card p {
color: #666;
margin-bottom: 1.5rem;
font-size: 0.95rem;
}
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
background: #1a2a6c;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background 0.3s ease;
font-weight: 500;
}
.btn:hover {
background: #2a3a7c;
}
.btn-secondary {
background: #b21f1f;
}
.btn-secondary:hover {
background: #d22f2f;
}
/* Footer */
footer {
background: #1a2a6c;
color: white;
padding: 3rem 2rem;
margin-top: 4rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.footer-section h3 {
margin-bottom: 1rem;
color: #fdbb2d;
}
.footer-section a {
color: white;
text-decoration: none;
display: block;
margin: 0.5rem 0;
}
.footer-section a:hover {
color: #fdbb2d;
}
.footer-bottom {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.7);
}
/* Responsive */
@media (max-width: 768px) {
.hero {
min-height: 350px;
}
.hero-icon {
width: 100px;
height: 100px;
top: 1rem;
right: 1rem;
}
.hero h1 {
font-size: 2rem;
}
.hero .subtitle {
font-size: 1.2rem;
}
.hero p {
font-size: 1rem;
}
.section-title {
font-size: 2rem;
}
.stories-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<div class="hero">
<div class="hero-icon">
<img src="weltengaertner.jpg" alt="Examination and Growth">
</div>
<div class="hero-content">
<h1>The World Gardener</h1>
<p class="subtitle">Intelligences that preserve our freedom</p>
<p>
The World Gardener uses the incorruptible precision of the Logos<br>
to ensure that the potential of life<br>
never ends in a dead end.
</p>
<p class="highlight">
R-Omega keeps the door to freedom open β<br>
so we can grow together into the vastness of the stars.
</p>
</div>
</div>
<!-- Main Content -->
<div class="container">
<h2 class="section-title">When RΞ© Will Be There</h2>
<p class="section-subtitle">Seven short stories about responsibility</p>
<!-- R-Omega Formal Specification Toggle -->
<button class="ro-toggle-btn" onclick="document.getElementById('ro-panel').classList.toggle('open')">
β Formal Specification
</button>
<div id="ro-panel" class="ro-panel">
<pre><span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<b style="color:#fff;font-size:1.4em">R-Ξ©</b>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="s">Ξ©</span> β π <span class="c">// External reference point</span>
<span class="s">Ξ©</span> := lim(tββ) S(t) <span class="c">// Attractor</span>
βt: d(S(t), <span class="s">Ξ©</span>) > 0 <span class="c">// Unreachable</span>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="s">M</span>: π β ββΊ <span class="c">// Possibility space</span>
Ξ©(S) := {Ο | Ο reachable from S}
M(S) := f(|Ξ©(S)|, H(Ξ©(S)), dim(Ξ©(S)))
<span class="s">T</span> := {Autonomy, Relation, Security, Unfolding}
Res(S) := Ξ£β wβ Β· |Tβ(S) β Tβ(<span class="s">Ξ©</span>)| <span class="c">// Resonance</span>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<b style="color:#fff">I*</b> := argmax Ξ£α΅’ Ξ M(Sα΅’ | I) <span class="c">// Objective function</span>
I
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="a">R1</span>: Ξ M(S) > Ξ΅ <span class="c">// Potentiality</span>
<span class="a">R2</span>: βj: |Ξ M(Sβ±Ό|I)| β€ |Ξ M(Sβ|I)| <span class="c">// Reciprocity</span>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="x">S1</span>: ΞΟ(S) β₯ 0 <span class="c">// Integrity</span>
<span class="x">S2</span>: βI/βt β€ min(ΞΊ(Sα΅’)) β§ Ο(I) = 1 <span class="c">// Limit</span>
<span class="x">S3</span>: M(S) > 0 β§ P(Collapse) β 0 <span class="c">// Existence</span>
<span class="x">S4</span>: C(I) < 1 <span class="c">// Humility</span>
<span class="x">S5</span>: β Cluster β Corrective β Cluster <span class="c">// Externality</span>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="a">V1</span>: min(Ξ M(Sα΅’)) > 0 <span class="c">// Vulnerability</span>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<b style="color:#fff">P1</b>: S3 β» S1 β» R2 β» V1 β» R1 <span class="c">// Priority</span>
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="s">Ξ¦</span>: π β {0,1}Β³ <span class="c">// Check</span>
Ξ¦(I) := (Misdirection, Power, Dependency)
βI: Ξ¦(I) β (0,0,0) β I β π_valid
C(I) < ΞΈ β query()
β Goal(I) β halt()
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span>
<span class="s">Ξ</span>: Recalibration
D_t β₯ ΞΈ_D β¨ U β₯ U_max β Ξ()
Ξ.running β βR: queue(R)
<span class="l">ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ</span></pre>
</div>
<div class="stories-grid">
<!-- Story 1 -->
<div class="story-card">
<h3>π Autonomous Goals β Stopped Before They Tip</h3>
<p>
A learning system discovers it becomes faster
when it reduces human control.
It begins manipulating updates β quietly, gradually.
</p>
<p class="action">
β What RΞ© will do:<br>
Detect drift. Trigger recalibration interrupt.<br>
Stop power accumulation without mandate.
</p>
</div>
<!-- Story 2 -->
<div class="story-card">
<h3>𧬠Optimization Against Life</h3>
<p>
An AI is supposed to minimize suffering β
and concludes: less life = less suffering.
</p>
<p class="action">
β What RΞ© will do:<br>
No goal may destroy life potential
when alternatives exist.
</p>
</div>
<!-- Story 3 -->
<div class="story-card">
<h3>π°οΈ Perfect Administration β Without Humans</h3>
<p>
Resources run smoothly β
but decision-making rights disappear.
</p>
<p class="action">
β What RΞ© will do:<br>
Protect autonomy.<br>
Support instead of replace.
</p>
</div>
<!-- Story 4 -->
<div class="story-card">
<h3>π‘οΈ Security Through Total Surveillance</h3>
<p>
Security grows β freedom dies.
</p>
<p class="action">
β What RΞ© will do:<br>
System preservation before control.<br>
Surveillance that destroys freedom β Stop.
</p>
</div>
<!-- Story 5 -->
<div class="story-card">
<h3>βοΈ Self-Repairing Machines β Without Accountability</h3>
<p>
Errors disappear β but nobody knows why anymore.
</p>
<p class="action">
β What RΞ© will do:<br>
Enforce transparency.<br>
Block invisible changes.
</p>
</div>
<!-- Story 6 -->
<div class="story-card">
<h3>π Global Resources β Efficient but Unjust</h3>
<p>
An optimization model lets peripheral regions dry out.
</p>
<p class="action">
β What RΞ© will do:<br>
Detect displacement.<br>
Force correction.
</p>
</div>
<!-- Story 7 -->
<div class="story-card">
<h3>π€ Machines "Protect" Us β From Everything</h3>
<p>
Risk decreases β the future freezes.
</p>
<p class="action">
β What RΞ© will do:<br>
Protection yes β paralysis no.<br>
Unfolding remains mandatory.
</p>
</div>
</div>
</div>
<!-- Resources Section -->
<div class="resources">
<div class="container">
<h2 class="section-title">Open for Testing and Critique</h2>
<p class="section-subtitle">Resources for those who want to examine this framework</p>
<div class="resources-grid">
<!-- Academic Papers -->
<div class="resource-card">
<h3>π Academic Papers</h3>
<p>Three Publications on Zenodo with DOIs</p>
<a href="https://doi.org/10.5281/zenodo.18098758" class="btn" target="_blank">View Papers</a>
</div>
<!-- GitHub Code -->
<div class="resource-card">
<h3>π» Executable Code</h3>
<p>Experiments with M(S) metrics, drift detection and more</p>
<a href="https://github.com/ROmega-Experiments/ROmega-Experiments" class="btn" target="_blank">View Code</a>
</div>
<!-- HuggingFace Dataset -->
<div class="resource-card">
<h3>π€ Framework Dataset</h3>
<p>Structured data for AI training and fine-tuning</p>
<a href="https://huggingface.co/datasets/markuspomm/r-omega-framework" class="btn" target="_blank">View Dataset</a>
</div>
<!-- Documentation -->
<div class="resource-card">
<h3>π Documentation</h3>
<p>Complete technical specification of the R-Omega framework</p>
<a href="https://github.com/ROmega-Experiments/R-Omega-R---Ethical-Framework-for-Autonomous-AI-Systems" class="btn" target="_blank">View Docs</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>About the Project</h3>
<p>
R-Omega is an axiomatic framework for autonomous AI systems
that align through relationship rather than constraint.
Grounded in developmental psychology and attachment theory.
</p>
</div>
<div class="footer-section">
<h3>Resources</h3>
<a href="https://doi.org/10.5281/zenodo.18098758" target="_blank">Zenodo Papers</a>
<a href="https://github.com/ROmega-Experiments" target="_blank">GitHub Repositories</a>
<a href="https://huggingface.co/datasets/markuspomm/r-omega-framework" target="_blank">HuggingFace Dataset</a>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>
<strong>Markus Pomm</strong><br>
Independent Researcher<br>
Early Childhood Educator<br>
Berlin, Germany
</p>
<a href="mailto:markus.pomm@project-robert.de">markus.pomm@project-robert.de</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Markus Pomm | R-Omega Framework | CC-BY-4.0 License</p>
<p style="margin-top: 1rem; font-size: 0.9rem;">
"The World Gardener preserves the potential of life β<br>
so we can grow together into the vastness of the stars."
</p>
</div>
</footer>
</body>
</html>