-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.html
More file actions
954 lines (830 loc) · 41.7 KB
/
Copy pathindex.html
File metadata and controls
954 lines (830 loc) · 41.7 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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
<!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="Mimir - The Memory OS for Developers and Autonomous Agents. Open-source graph-powered memory with multi-agent orchestration.">
<meta name="keywords" content="AI memory, graph database, multi-agent, RAG, semantic search, developer tools, open source">
<title>Mimir - Memory OS for AI Agents</title>
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:title" content="Mimir - Memory OS for AI Agents">
<meta property="og:description" content="Graph-powered persistent memory for autonomous agents. Free, open-source, and enterprise-ready.">
<meta property="og:image" content="https://github.com/user-attachments/assets/f4e3be80-79fe-4e10-b010-9a39b5f70584">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #FFD700;
--primary-dark: #B8941F;
--secondary: #00D9FF;
--dark-bg: #0A0E1A;
--darker-bg: #060911;
--card-bg: #111827;
--text-primary: #F9FAFB;
--text-secondary: #9CA3AF;
--border: #1F2937;
--gradient-start: #FFD700;
--gradient-end: #00D9FF;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--dark-bg);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* Animated background */
.animated-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
opacity: 0.4;
background:
radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.container {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Header */
header {
padding: 2rem 0;
border-bottom: 1px solid var(--border);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.5rem;
font-weight: 800;
color: var(--primary);
text-decoration: none;
}
.logo img {
width: 48px;
height: 48px;
filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary);
}
.btn {
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--darker-bg);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}
.btn-secondary {
border: 2px solid var(--primary);
color: var(--primary);
background: transparent;
}
.btn-secondary:hover {
background: var(--primary);
color: var(--darker-bg);
}
/* Hero Section */
.hero {
padding: 6rem 0;
text-align: center;
}
.hero h1 {
font-size: 4rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero .subtitle {
font-size: 1.5rem;
color: var(--text-secondary);
margin-bottom: 1rem;
font-weight: 300;
}
.hero .tagline {
font-size: 1.25rem;
color: var(--text-primary);
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.badges {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.badges img {
height: 20px;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
/* Features Section */
.section {
padding: 5rem 0;
}
.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.section-subtitle {
text-align: center;
color: var(--text-secondary);
font-size: 1.25rem;
margin-bottom: 4rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: var(--card-bg);
padding: 2rem;
border-radius: 1rem;
border: 1px solid var(--border);
transition: all 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary);
}
.feature-card p {
color: var(--text-secondary);
}
/* Competitive Edge */
.competitive-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.edge-card {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
padding: 1.5rem;
border-radius: 1rem;
border: 1px solid var(--border);
}
.edge-card h3 {
font-size: 1.25rem;
margin-bottom: 0.75rem;
color: var(--secondary);
}
.edge-card p {
color: var(--text-secondary);
font-size: 0.9rem;
}
/* Comparison Table */
.comparison-table {
background: var(--card-bg);
border-radius: 1rem;
overflow: hidden;
border: 1px solid var(--border);
}
.comparison-table table {
width: 100%;
border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid var(--border);
}
.comparison-table th {
background: var(--darker-bg);
font-weight: 600;
color: var(--primary);
}
.comparison-table tr:last-child td {
border-bottom: none;
}
.check {
color: #10B981;
}
.cross {
color: #EF4444;
}
.warning {
color: #F59E0B;
}
/* Code Block */
.code-block {
background: var(--darker-bg);
border: 1px solid var(--border);
border-radius: 1rem;
padding: 2rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
overflow-x: auto;
margin-top: 2rem;
}
.code-block pre {
color: var(--text-primary);
line-height: 1.8;
}
.code-comment {
color: var(--text-secondary);
}
.code-keyword {
color: #C678DD;
}
.code-string {
color: #98C379;
}
.code-function {
color: var(--secondary);
}
/* Stats */
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}
.stat {
padding: 2rem;
background: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
}
.stat-number {
font-size: 3rem;
font-weight: 800;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
color: var(--text-secondary);
margin-top: 0.5rem;
}
/* Footer */
footer {
padding: 3rem 0;
border-top: 1px solid var(--border);
text-align: center;
color: var(--text-secondary);
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--primary);
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero .subtitle {
font-size: 1.25rem;
}
.hero .tagline {
font-size: 1rem;
}
.nav-links {
gap: 1rem;
}
.section-title {
font-size: 2rem;
}
.features-grid,
.competitive-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="animated-bg"></div>
<header>
<nav class="container">
<a href="#" class="logo">
<img src="https://github.com/user-attachments/assets/f4e3be80-79fe-4e10-b010-9a39b5f70584" alt="Mimir Logo">
<span>MIMIR</span>
</a>
<div class="nav-links">
<a href="https://github.com/orneryd/Mimir">GitHub</a>
<a href="https://github.com/orneryd/Mimir/tree/main/docs">Mimir Docs</a>
<a href="https://orneryd.github.io/nornicdb/">NornicDB Docs</a>
<a href="https://marketplace.visualstudio.com/items?itemName=OrneryD.mimir-chat">VS Code Extension</a>
</div>
</nav>
</header>
<main>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>The Memory OS for<br>Autonomous Agents</h1>
<p class="subtitle">Graph-Powered Persistent Memory + Multi-Agent Orchestration</p>
<p class="tagline">Give your AI a brain that remembers, learns, and builds knowledge over time. Free, open-source, and enterprise-ready.</p>
<div class="badges">
<a href="https://github.com/orneryd/Mimir"><img src="https://img.shields.io/github/stars/orneryd/Mimir?style=for-the-badge&logo=github&color=FFD700" alt="GitHub Stars"></a>
<a href="https://github.com/orneryd/Mimir/fork"><img src="https://img.shields.io/github/forks/orneryd/Mimir?style=for-the-badge&logo=github&color=00D9FF" alt="GitHub Forks"></a>
<a href="https://github.com/orneryd/Mimir/issues"><img src="https://img.shields.io/github/issues/orneryd/Mimir?style=for-the-badge&logo=github&color=FFD700" alt="GitHub Issues"></a>
<a href="https://github.com/orneryd/Mimir/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=for-the-badge" alt="MIT License"></a>
<a href="https://www.docker.com/"><img src="https://img.shields.io/badge/docker-ready-blue?style=for-the-badge&logo=docker" alt="Docker Ready"></a>
<a href="https://neo4j.com/"><img src="https://img.shields.io/badge/neo4j-5.15-008CC1?style=for-the-badge&logo=neo4j" alt="Neo4j"></a>
</div>
<div class="cta-buttons">
<a href="https://github.com/orneryd/Mimir" class="btn btn-primary">
<span>⭐ Star on GitHub</span>
</a>
<a href="https://github.com/orneryd/Mimir/tree/main/docs/getting-started" class="btn btn-secondary">
<span>📚 Get Started</span>
</a>
<a href="https://marketplace.visualstudio.com/items?itemName=OrneryD.mimir-chat" class="btn btn-secondary">
<span>🔌 VS Code Extension</span>
</a>
</div>
</div>
</section>
<!-- Problem/Solution -->
<section class="section">
<div class="container">
<h2 class="section-title">Why Mimir Exists</h2>
<p class="section-subtitle">Most AI agents forget everything between conversations. Mimir changes that.</p>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🧠</div>
<h3>Graph-Powered Memory</h3>
<p>Not just a vector store—a living knowledge graph that understands relationships between tasks, files, and concepts. ACID transactions guarantee your data is always consistent.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🤖</div>
<h3>Multi-Agent Coordination</h3>
<p>PM → Worker → QC workflows out of the box. Multiple agents share a single brain, preventing conflicts with built-in locking and coordination.</p>
</div>
<div class="feature-card">
<div class="feature-icon">💻</div>
<h3>Code-Aware Intelligence</h3>
<p>Automatically indexes your codebase, tracks architecture decisions, and surfaces relevant context. Perfect for developers managing complex projects.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔍</div>
<h3>Semantic Search</h3>
<p>Find tasks by meaning, not keywords. Vector embeddings + graph traversal = discover connections you didn't know existed.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔐</div>
<h3>Enterprise-Ready Security</h3>
<p>RBAC, OAuth 2.0, audit logs, multi-tenant isolation. Built on Neo4j's battle-tested transactional guarantees.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🏠</div>
<h3>100% Self-Hosted</h3>
<p>Your data stays on your infrastructure. No vendor lock-in, no usage limits, no subscription fees. MIT licensed and truly free.</p>
</div>
</div>
</div>
</section>
<!-- Competitive Edge -->
<section class="section" style="background: var(--darker-bg);">
<div class="container">
<h2 class="section-title">What Makes Mimir Different</h2>
<p class="section-subtitle">The only open-source solution combining Graph-RAG with multi-agent orchestration</p>
<div class="competitive-grid">
<div class="edge-card">
<h3>🕸️ Native Graph Intelligence</h3>
<p>Competitors store isolated vectors. Mimir understands how everything relates—tasks, files, concepts, and decisions.</p>
</div>
<div class="edge-card">
<h3>🤝 Multi-Agent by Design</h3>
<p>Built-in PM/Worker/QC patterns. Most frameworks have no concept of shared agent memory or coordination.</p>
</div>
<div class="edge-card">
<h3>💾 ACID Transactions</h3>
<p>Neo4j guarantees data consistency. Vector databases don't—your data could be corrupted and you'd never know.</p>
</div>
<div class="edge-card">
<h3>🔌 MCP Protocol Native</h3>
<p>Direct integration with Claude, ChatGPT, and any MCP-compatible assistant. No custom adapters needed.</p>
</div>
<div class="edge-card">
<h3>📊 Visual Debugging</h3>
<p>Mimir Studio lets you see agent memory, task dependencies, and knowledge graphs in real-time. Competitors give you logs.</p>
</div>
<div class="edge-card">
<h3>💰 Truly Free Forever</h3>
<p>MIT licensed with no catches. Pinecone starts at $70/mo, Weaviate at $25/mo. Mimir: $0.</p>
</div>
</div>
</div>
</section>
<!-- Comparison Table -->
<section class="section">
<div class="container">
<h2 class="section-title">Feature Comparison</h2>
<p class="section-subtitle">See how Mimir stacks up against other solutions</p>
<div class="comparison-table">
<table>
<thead>
<tr>
<th>Feature</th>
<th>Mimir</th>
<th>Pinecone</th>
<th>Weaviate</th>
<th>Milvus</th>
<th>Qdrant</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Graph Relationships</strong></td>
<td class="check">✅ Native</td>
<td class="cross">❌ None</td>
<td class="warning">⚠️ Limited</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
</tr>
<tr>
<td><strong>Vector Search</strong></td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
</tr>
<tr>
<td><strong>ACID Transactions</strong></td>
<td class="check">✅ Full</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
</tr>
<tr>
<td><strong>Multi-Agent Support</strong></td>
<td class="check">✅ Built-in</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
</tr>
<tr>
<td><strong>MCP Integration</strong></td>
<td class="check">✅ Native</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
<td class="cross">❌ None</td>
</tr>
<tr>
<td><strong>Self-Hosting</strong></td>
<td class="check">✅ Free</td>
<td class="cross">❌ Cloud-only</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
</tr>
<tr>
<td><strong>Open Source</strong></td>
<td class="check">✅ MIT</td>
<td class="cross">❌ No</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
<td class="check">✅ Yes</td>
</tr>
<tr>
<td><strong>Starting Cost</strong></td>
<td class="check">💰 $0</td>
<td class="cross">💰 $70/mo</td>
<td class="warning">💰 $25/mo</td>
<td class="check">💰 $0</td>
<td class="check">💰 $0</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Quick Start -->
<section class="section" style="background: var(--darker-bg);">
<div class="container">
<h2 class="section-title">Get Started in 60 Seconds</h2>
<p class="section-subtitle">One command to launch. That's it.</p>
<!-- Platform Toggle -->
<div style="display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem;">
<button id="btn-macos" class="btn btn-primary" style="padding: 0.5rem 1.5rem;" onclick="showPlatform('macos')">macOS / Linux</button>
<button id="btn-windows" class="btn btn-secondary" style="padding: 0.5rem 1.5rem;" onclick="showPlatform('windows')">Windows</button>
</div>
<!-- macOS/Linux Installation -->
<div id="install-macos" class="code-block">
<pre><code><span class="code-comment"># One-Command Remote Installation (Recommended)</span>
<span class="code-keyword">curl -fsSL</span> <span class="code-string">https://raw.githubusercontent.com/orneryd/Mimir/main/install.sh</span> | bash
<span class="code-comment"># Or Manual Installation:</span>
<span class="code-comment"># Clone the repository</span>
<span class="code-keyword">git clone</span> <span class="code-string">https://github.com/orneryd/Mimir.git</span>
<span class="code-keyword">cd</span> Mimir
<span class="code-comment"># Run setup script (checks dependencies, creates .env)</span>
<span class="code-keyword">./scripts/setup.sh</span>
<span class="code-comment"># Start all services (auto-detects your platform)</span>
npm run start
<span class="code-comment"># You're done! 🎉</span>
<span class="code-comment"># - Portal: http://localhost:9042/portal</span>
<span class="code-comment"># - Studio: http://localhost:9042/studio</span>
<span class="code-comment"># - Neo4j: http://localhost:7474</span></code></pre>
</div>
<!-- Windows Installation -->
<div id="install-windows" class="code-block" style="display: none;">
<pre><code><span class="code-comment"># One-Command Remote Installation (Recommended)</span>
<span class="code-keyword">iwr -useb</span> <span class="code-string">https://raw.githubusercontent.com/orneryd/Mimir/main/install.ps1</span> | iex
<span class="code-comment"># Or Manual Installation:</span>
<span class="code-comment"># Clone the repository</span>
<span class="code-keyword">git clone</span> <span class="code-string">https://github.com/orneryd/Mimir.git</span>
<span class="code-keyword">cd</span> Mimir
<span class="code-comment"># Copy environment template</span>
<span class="code-keyword">Copy-Item</span> env.example .env
<span class="code-comment"># Install dependencies</span>
npm install
<span class="code-comment"># Start all services (auto-detects AMD64/ARM64)</span>
npm run start
<span class="code-comment"># You're done! 🎉</span>
<span class="code-comment"># - Portal: http://localhost:9042/portal</span>
<span class="code-comment"># - Studio: http://localhost:9042/studio</span>
<span class="code-comment"># - Neo4j: http://localhost:7474</span></code></pre>
</div>
<script>
function showPlatform(platform) {
const macosBtn = document.getElementById('btn-macos');
const windowsBtn = document.getElementById('btn-windows');
const macosCode = document.getElementById('install-macos');
const windowsCode = document.getElementById('install-windows');
if (platform === 'macos') {
macosBtn.classList.remove('btn-secondary');
macosBtn.classList.add('btn-primary');
windowsBtn.classList.remove('btn-primary');
windowsBtn.classList.add('btn-secondary');
macosCode.style.display = 'block';
windowsCode.style.display = 'none';
} else {
windowsBtn.classList.remove('btn-secondary');
windowsBtn.classList.add('btn-primary');
macosBtn.classList.remove('btn-primary');
macosBtn.classList.add('btn-secondary');
windowsCode.style.display = 'block';
macosCode.style.display = 'none';
}
}
</script>
</div>
</section>
<!-- Stats -->
<section class="section">
<div class="container">
<h2 class="section-title">Built for Scale</h2>
<div class="stats">
<div class="stat">
<div class="stat-number">13</div>
<div class="stat-label">MCP Tools</div>
</div>
<div class="stat">
<div class="stat-number">0</div>
<div class="stat-label">Monthly Cost</div>
</div>
<div class="stat">
<div class="stat-number">100%</div>
<div class="stat-label">Open Source</div>
</div>
<div class="stat">
<div class="stat-number">∞</div>
<div class="stat-label">Scale Limit</div>
</div>
</div>
</div>
</section>
<!-- Vision Intelligence Demo -->
<section class="section" style="background: var(--darker-bg);">
<div class="container">
<h2 class="section-title">Vision Intelligence Built-In</h2>
<p class="section-subtitle">See how Mimir understands images with multimodal embeddings</p>
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem;">
<!-- Step 1: Image Input -->
<div class="feature-card" style="text-align: center;">
<div class="feature-icon">📸</div>
<h3 style="font-size: 1.25rem;">1. Image Input</h3>
<div style="margin: 1.5rem 0;">
<img src="https://raw.githubusercontent.com/orneryd/Mimir/refs/heads/main/docs/assets/character-demo.png"
alt="Game Character"
style="width: 100%; max-width: 200px; border-radius: 0.5rem; border: 2px solid var(--border);">
</div>
<p style="color: var(--text-secondary); font-size: 0.9rem;">Your game character, screenshot, or any visual content</p>
</div>
<!-- Step 2: AI Description -->
<div class="feature-card" style="text-align: center;">
<div class="feature-icon">🤖</div>
<h3 style="font-size: 1.25rem;">2. AI Understanding</h3>
<div style="margin: 1.5rem 0; text-align: left; font-size: 0.85rem; color: var(--text-secondary); max-height: 250px; overflow-y: auto; padding: 1rem; background: var(--darker-bg); border-radius: 0.5rem; border: 1px solid var(--border);">
<strong style="color: var(--primary);">Qwen2.5-VL-2B Output:</strong><br><br>
"The image depicts a character dressed in a dark, Victorian-era outfit, standing in front of a traditional Asian-style building with a tiled roof. The character is wearing a top hat, round glasses, and a long coat adorned with various accessories, including a belt with multiple pouches and what appears to be a small weapon or tool attached to the belt. The character's attire suggests a blend of Western and Eastern influences, possibly indicating a fantasy or steampunk setting..."
</div>
<p style="color: var(--text-secondary); font-size: 0.9rem; margin-top: 1rem;">Vision model extracts rich semantic meaning</p>
</div>
<!-- Step 3: Embedding Space -->
<div class="feature-card" style="text-align: center;">
<div class="feature-icon">🕸️</div>
<h3 style="font-size: 1.25rem;">3. Knowledge Graph</h3>
<div style="margin: 1.5rem 0;">
<svg width="200" height="200" viewBox="0 0 200 200" style="max-width: 100%;">
<!-- Central node -->
<circle cx="100" cy="100" r="20" fill="var(--primary)" opacity="0.8"/>
<text x="100" y="105" text-anchor="middle" fill="var(--darker-bg)" font-size="10" font-weight="bold">Image</text>
<!-- Connected concept nodes -->
<circle cx="50" cy="50" r="15" fill="var(--secondary)" opacity="0.6"/>
<text x="50" y="53" text-anchor="middle" fill="var(--text-primary)" font-size="8">Victorian</text>
<line x1="100" y1="100" x2="50" y2="50" stroke="var(--border)" stroke-width="2" opacity="0.5"/>
<circle cx="150" cy="50" r="15" fill="var(--secondary)" opacity="0.6"/>
<text x="150" y="53" text-anchor="middle" fill="var(--text-primary)" font-size="8">Character</text>
<line x1="100" y1="100" x2="150" y2="50" stroke="var(--border)" stroke-width="2" opacity="0.5"/>
<circle cx="50" cy="150" r="15" fill="var(--secondary)" opacity="0.6"/>
<text x="50" y="153" text-anchor="middle" fill="var(--text-primary)" font-size="8">Asian</text>
<line x1="100" y1="100" x2="50" y2="150" stroke="var(--border)" stroke-width="2" opacity="0.5"/>
<circle cx="150" cy="150" r="15" fill="var(--secondary)" opacity="0.6"/>
<text x="150" y="153" text-anchor="middle" fill="var(--text-primary)" font-size="8">Steampunk</text>
<line x1="100" y1="100" x2="150" y2="150" stroke="var(--border)" stroke-width="2" opacity="0.5"/>
<circle cx="30" cy="100" r="12" fill="var(--secondary)" opacity="0.4"/>
<text x="30" y="103" text-anchor="middle" fill="var(--text-primary)" font-size="7">Outfit</text>
<line x1="100" y1="100" x2="30" y2="100" stroke="var(--border)" stroke-width="1" opacity="0.3"/>
<circle cx="170" cy="100" r="12" fill="var(--secondary)" opacity="0.4"/>
<text x="170" y="103" text-anchor="middle" fill="var(--text-primary)" font-size="7">Fantasy</text>
<line x1="100" y1="100" x2="170" y2="100" stroke="var(--border)" stroke-width="1" opacity="0.3"/>
</svg>
</div>
<p style="color: var(--text-secondary); font-size: 0.9rem;">Searchable by meaning, not just metadata</p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<div class="feature-card" style="background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%); border: 2px solid var(--primary);">
<h3 style="color: var(--primary); margin-bottom: 1rem;">🚀 Why This Matters</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; text-align: left;">
<div>
<strong style="color: var(--secondary);">📝 Semantic Search</strong>
<p style="color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.5rem;">Find images by describing what they contain: "Victorian character with top hat" or "Asian architecture steampunk"</p>
</div>
<div>
<strong style="color: var(--secondary);">🔗 Relationship Discovery</strong>
<p style="color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.5rem;">AI automatically connects related concepts across your entire knowledge base</p>
</div>
<div>
<strong style="color: var(--secondary);">🎯 Context-Aware</strong>
<p style="color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.5rem;">Agents understand visual context when making decisions or generating content</p>
</div>
</div>
</div>
</div>
<div style="text-align: center; margin-top: 2rem;">
<p style="color: var(--text-secondary);">
<strong>Powered by Qwen2.5-VL</strong> • 2B model (fast, 8GB RAM) or 7B model (detailed, 16GB RAM) • Self-hosted • No API costs
</p>
</div>
</div>
</section>
<!-- Use Cases -->
<section class="section">
<div class="container">
<h2 class="section-title">Perfect For</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">👨💻</div>
<h3>Software Development Teams</h3>
<p>Track decisions, link tasks to code, maintain architectural knowledge, and never lose context across sprints.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🤖</div>
<h3>AI Researchers</h3>
<p>Build multi-agent systems with persistent memory. Study how agents collaborate and learn over time.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🏢</div>
<h3>Enterprise Automation</h3>
<p>Deploy self-hosted AI with RBAC, audit logs, and transactional guarantees. No data leaves your network.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎓</div>
<h3>Knowledge Management</h3>
<p>Build living knowledge graphs that grow smarter over time. Perfect for research teams and consultants.</p>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="section">
<div class="container" style="text-align: center;">
<h2 class="section-title">Ready to Give Your AI a Brain?</h2>
<p class="section-subtitle">Join the community building the future of AI memory</p>
<div class="cta-buttons">
<a href="https://github.com/orneryd/Mimir" class="btn btn-primary">
<span>⭐ Star on GitHub</span>
</a>
<a href="https://github.com/orneryd/Mimir/tree/main/docs" class="btn btn-secondary">
<span>📖 Read the Docs</span>
</a>
<a href="https://github.com/orneryd/Mimir/issues" class="btn btn-secondary">
<span>💬 Join Discussion</span>
</a>
</div>
<p style="margin-top: 3rem; color: var(--text-secondary);">
<strong>MIT Licensed</strong> • Free Forever • No Strings Attached<br>
<a href="https://github.com/orneryd/Mimir/blob/main/LICENSE" style="color: var(--primary);">View License →</a>
</p>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-links">
<a href="https://github.com/orneryd/Mimir">GitHub</a>
<a href="https://github.com/orneryd/Mimir/tree/main/docs">Documentation</a>
<a href="https://github.com/orneryd/Mimir/issues">Issues</a>
<a href="https://github.com/orneryd/Mimir/blob/main/LICENSE">MIT License</a>
<a href="https://marketplace.visualstudio.com/items?itemName=OrneryD.mimir-chat">VS Code Extension</a>
</div>
<p>© 2025 Mimir. Open source under MIT License.</p>
<p style="margin-top: 1rem; font-size: 0.9rem;">
Built with ❤️ by the open-source community
</p>
</div>
</footer>
</body>
</html>