-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
994 lines (911 loc) · 44 KB
/
Copy pathindex.html
File metadata and controls
994 lines (911 loc) · 44 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
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GraphTheory | Hermes profiles, AI agents, guardrails</title>
<meta name="description" content="GraphTheory builds open-source Hermes profiles, AI agent tooling, guardrail critique, validation workflows, and weird little machines." />
<meta name="author" content="GraphTheory" />
<meta name="robots" content="index,follow,max-image-preview:large,max-snippet:-1,max-video-preview:-1" />
<meta name="googlebot" content="index,follow,max-image-preview:large" />
<meta name="theme-color" content="#04070a" />
<meta name="color-scheme" content="dark" />
<link rel="canonical" href="https://graphtheory.xyz/" />
<meta property="og:title" content="GraphTheory | Hermes profiles, AI agents, guardrails" />
<meta property="og:description" content="Open-source AI advocate building on Hermes. Profiles, skills, validation, guardrails, and weird little machines." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://graphtheory.xyz/" />
<meta property="og:site_name" content="GraphTheory" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://graphtheory.xyz/assets/og-card-v3.png" />
<meta property="og:image:url" content="https://graphtheory.xyz/assets/og-card-v3.png" />
<meta property="og:image:secure_url" content="https://graphtheory.xyz/assets/og-card-v3.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="GraphTheory cyberpunk profile art with cyan terminal typography" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@graphtheory" />
<meta name="twitter:creator" content="@graphtheory" />
<meta name="twitter:title" content="GraphTheory | Hermes profiles, AI agents, guardrails" />
<meta name="twitter:description" content="Open-source AI advocate building on Hermes. Profiles, skills, validation, guardrails, and weird little machines." />
<meta name="twitter:image" content="https://graphtheory.xyz/assets/og-card-v3.png" />
<meta name="twitter:image:alt" content="GraphTheory cyberpunk profile art with cyan terminal typography" />
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml" />
<link rel="alternate icon" href="/assets/favicon.png" type="image/png" />
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png" />
<link rel="manifest" href="/assets/site.webmanifest" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebSite","name":"GraphTheory","url":"https://graphtheory.xyz/","description":"Open-source AI advocate building on Hermes.","sameAs":["https://x.com/graphtheory","https://github.com/codegraphtheory"]}
</script>
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"Person","name":"GraphTheory","alternateName":"graph","url":"https://graphtheory.xyz/","image":"https://graphtheory.xyz/assets/graphtheory-profile.jpg","sameAs":["https://x.com/graphtheory","https://github.com/codegraphtheory"],"knowsAbout":["Hermes Agent","AI agents","open source AI","guardrails","RAG","blockchain security"]}
</script>
<style>
:root {
--bg: #04070a;
--panel: rgba(240, 239, 250, .045);
--panel-2: rgba(240, 239, 250, .075);
--ink: #f0effa;
--muted: #a0a6cf;
--soft: #646f95;
--line: rgba(160, 166, 207, .20);
--hot: #09efe2;
--hot-2: #a5e2e9;
--green: #02fba6;
--mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
--sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
margin: 0;
min-height: 100vh;
color: var(--ink);
font-family: var(--sans);
background:
radial-gradient(circle at 78% 20%, rgba(9, 239, 226, .18), transparent 29rem),
radial-gradient(circle at 20% 78%, rgba(2, 251, 166, .10), transparent 24rem),
linear-gradient(180deg, #04070a 0%, #071014 48%, #04070a 100%);
overflow-x: hidden;
}
body::before {
content: "";
position: fixed;
inset: 0;
z-index: -2;
background-image:
linear-gradient(rgba(160, 166, 207, .055) 1px, transparent 1px),
linear-gradient(90deg, rgba(160, 166, 207, .055) 1px, transparent 1px);
background-size: 44px 44px;
mask-image: radial-gradient(circle at 50% 22%, black 0%, transparent 74%);
}
body::after {
content: "";
position: fixed;
inset: 0;
z-index: -1;
pointer-events: none;
opacity: .16;
background: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px);
mix-blend-mode: screen;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100vw - 32px)); margin: 0 auto; }
.nav {
position: sticky;
top: 0;
z-index: 20;
background: rgba(4, 7, 10, .70);
border-bottom: 1px solid var(--line);
backdrop-filter: blur(18px);
}
.nav-inner {
min-height: 68px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
}
.brand {
display: inline-flex;
align-items: center;
gap: 12px;
font-family: var(--mono);
letter-spacing: .08em;
text-transform: lowercase;
font-size: 13px;
color: var(--hot-2);
}
.sigil {
width: 32px;
height: 32px;
display: grid;
place-items: center;
color: var(--hot);
border: 1px solid rgba(9,239,226,.55);
box-shadow: 0 0 32px rgba(9,239,226,.24);
overflow: hidden;
position: relative;
}
.sigil::before { content: "☤"; font-size: 18px; line-height: 1; }
.sigil::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(100deg, transparent, rgba(9,239,226,.52), transparent);
transform: translateX(-130%);
animation: sweep 5s infinite;
}
@keyframes sweep { 48%, 100% { transform: translateX(130%); } }
.nav-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cmd {
min-height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 13px;
border: 1px solid var(--line);
background: rgba(240,239,250,.032);
color: var(--ink);
font-family: var(--mono);
font-size: 11px;
line-height: 1;
letter-spacing: .08em;
text-transform: lowercase;
transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.cmd:hover { border-color: rgba(9,239,226,.62); background: rgba(9,239,226,.08); color: var(--hot-2); transform: translateY(-1px); }
.cmd.hot { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cmd.hot:hover { background: var(--hot); border-color: var(--hot); color: #001312; }
.hero {
min-height: calc(100vh - 68px);
display: grid;
grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
align-items: center;
gap: clamp(28px, 5vw, 64px);
padding: 64px 0 52px;
}
.hero > * { min-width: 0; }
.micro {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
color: var(--hot-2);
font-family: var(--mono);
font-size: 12px;
letter-spacing: .12em;
text-transform: lowercase;
}
.pulse {
width: 8px;
height: 8px;
background: var(--hot);
box-shadow: 0 0 18px var(--hot);
animation: blink 1.2s steps(2) infinite;
}
@keyframes blink { 50% { opacity: .28; } }
h1 {
margin: 0;
font-family: var(--mono);
font-size: clamp(58px, 6.4vw, 92px);
font-weight: 520;
line-height: .82;
letter-spacing: -.095em;
text-transform: lowercase;
overflow-wrap: anywhere;
max-width: 100%;
text-shadow: 2px 0 rgba(9,239,226,.75), -2px 0 rgba(2,251,166,.36), 0 0 36px rgba(9,239,226,.20);
}
.glitch-title {
position: relative;
display: inline-block;
isolation: isolate;
}
.glitch-title::before, .glitch-title::after {
content: attr(data-text);
position: absolute;
inset: 0;
pointer-events: none;
mix-blend-mode: screen;
opacity: .58;
}
.glitch-title::before {
color: var(--hot);
transform: translate(3px, -2px);
clip-path: inset(0 0 58% 0);
animation: glitch-top 3.4s steps(2) infinite;
}
.glitch-title::after {
color: var(--green);
transform: translate(-3px, 2px);
clip-path: inset(54% 0 0 0);
animation: glitch-bottom 4.1s steps(2) infinite;
}
@keyframes glitch-top {
0%, 86%, 100% { transform: translate(3px, -2px); clip-path: inset(0 0 58% 0); }
88% { transform: translate(12px, 0); clip-path: inset(12% 0 42% 0); }
90% { transform: translate(-7px, -3px); clip-path: inset(0 0 72% 0); }
}
@keyframes glitch-bottom {
0%, 80%, 100% { transform: translate(-3px, 2px); clip-path: inset(54% 0 0 0); }
82% { transform: translate(-13px, 1px); clip-path: inset(64% 0 12% 0); }
84% { transform: translate(8px, 4px); clip-path: inset(44% 0 0 0); }
}
.hero-copy {
max-width: 665px;
margin: 26px 0 0;
color: var(--muted);
font-size: clamp(18px, 2vw, 25px);
line-height: 1.34;
text-wrap: pretty;
}
.hero-copy strong { color: var(--ink); font-weight: 500; }
.emoji-line { color: var(--hot-2); font-family: var(--mono); font-size: 15px; letter-spacing: .02em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.voice-card {
margin-top: 30px;
max-width: 690px;
border: 1px solid var(--line);
background: rgba(4,7,10,.64);
box-shadow: inset 0 1px rgba(255,255,255,.04), 0 0 60px rgba(9,239,226,.12);
}
.voice-top {
min-height: 36px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 0 13px;
border-bottom: 1px solid var(--line);
color: var(--soft);
font-family: var(--mono);
font-size: 11px;
letter-spacing: .08em;
text-transform: lowercase;
}
.voice-body {
padding: 18px;
font-family: var(--mono);
font-size: 13px;
line-height: 1.7;
color: var(--muted);
overflow-wrap: anywhere;
}
.cyan { color: var(--hot); }
.green { color: var(--green); }
.dim { color: var(--soft); }
.portrait-stage {
position: relative;
display: grid;
place-items: center;
isolation: isolate;
overflow: clip;
padding: 18px 0;
}
.portrait-box {
width: min(420px, 100%);
position: relative;
padding: 12px;
border: 1px solid rgba(9,239,226,.60);
background: linear-gradient(180deg, rgba(9,239,226,.09), rgba(240,239,250,.035));
box-shadow: 0 0 0 1px rgba(240,239,250,.05), 0 0 88px rgba(9,239,226,.22);
transform: rotate(.9deg);
}
.portrait-box::before, .portrait-box::after {
content: "";
position: absolute;
border: 1px solid var(--line);
inset: -14px 20px 20px -14px;
z-index: -1;
}
.portrait-box::after { inset: 20px -14px -14px 20px; border-color: rgba(2,251,166,.28); }
.portrait-box img {
display: block;
width: 100%;
aspect-ratio: 1 / 1.06;
object-fit: cover;
filter: saturate(1.12) contrast(1.07);
}
.caption {
display: flex;
justify-content: space-between;
gap: 12px;
padding-top: 12px;
font-family: var(--mono);
color: var(--hot-2);
font-size: 11px;
letter-spacing: .08em;
text-transform: lowercase;
}
.ring {
position: absolute;
width: 120%;
aspect-ratio: 1;
border: 1px dashed rgba(9,239,226,.25);
border-radius: 999px;
z-index: -2;
animation: spin 34s linear infinite;
}
.ring::before, .ring::after {
content: "";
position: absolute;
width: 8px;
height: 8px;
background: var(--hot);
box-shadow: 0 0 20px var(--hot);
}
.ring::before { top: 18%; left: 20%; }
.ring::after { right: 10%; bottom: 28%; background: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }
section { padding: 76px 0; }
.section-head {
display: grid;
grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
gap: 28px;
align-items: end;
margin-bottom: 26px;
}
h2 {
margin: 0;
font-family: var(--mono);
font-size: clamp(38px, 6vw, 86px);
line-height: .86;
letter-spacing: -.075em;
text-transform: lowercase;
}
.section-copy { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.62; }
.signal-grid {
display: grid;
grid-template-columns: 1.2fr .8fr;
gap: 14px;
}
.panel {
border: 1px solid var(--line);
background: rgba(240,239,250,.035);
padding: 24px;
}
.panel.big { min-height: 298px; display: flex; flex-direction: column; justify-content: space-between; }
.quote {
margin: 0;
font-family: var(--mono);
font-size: clamp(24px, 4vw, 48px);
line-height: 1.02;
letter-spacing: -.055em;
text-transform: lowercase;
}
.quote span { color: var(--hot); }
.proof-list { display: grid; gap: 12px; margin-top: 20px; }
.proof-list div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; color: var(--muted); line-height: 1.5; font-size: 14px; }
.proof-list code { color: var(--hot-2); font-family: var(--mono); font-size: 12px; }
.x-grid {
display: grid;
grid-template-columns: 1fr;
gap: 18px;
max-width: 760px;
margin: 0 auto;
}
.x-card {
min-width: 0;
padding: 18px;
border: 1px solid rgba(9,239,226,.38);
background:
radial-gradient(circle at 12% 0%, rgba(9,239,226,.14), transparent 18rem),
linear-gradient(180deg, rgba(240,239,250,.060), rgba(240,239,250,.026));
position: relative;
overflow: hidden;
box-shadow: 0 0 58px rgba(9,239,226,.12);
transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.x-card:hover { transform: translateY(-2px); border-color: rgba(9,239,226,.68); background: var(--panel-2); }
.x-label { display: flex; justify-content: space-between; gap: 12px; color: var(--hot-2); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: lowercase; margin-bottom: 12px; }
.tweet-shell {
display: grid;
place-items: center;
min-width: 0;
max-width: 552px;
margin: 0 auto;
overflow: hidden;
background: #04070a;
border: 1px solid rgba(9,239,226,.18);
box-shadow: inset 0 0 0 1px rgba(4,7,10,.96), 0 0 36px rgba(9,239,226,.10);
}
.tweet-shell .twitter-tweet { margin: 0 auto !important; }
.tweet-shell iframe {
display: block !important;
border: 0 !important;
background: #04070a !important;
transform: scale(1.012);
transform-origin: center;
}
.x-quote {
border: 1px solid rgba(160,166,207,.22);
background: rgba(4,7,10,.66);
padding: 18px;
color: var(--ink);
font-family: var(--sans);
}
.x-quote blockquote {
margin: 0;
font-size: clamp(18px, 2.2vw, 26px);
line-height: 1.28;
letter-spacing: -.02em;
}
.x-quote footer {
margin-top: 14px;
color: var(--soft);
font-family: var(--mono);
font-size: 12px;
letter-spacing: .06em;
text-transform: lowercase;
}
.process-grid {
display: grid;
grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
gap: 14px;
align-items: start;
}
.process-card {
border: 1px solid var(--line);
background: rgba(240,239,250,.035);
padding: 24px;
min-width: 0;
}
.process-card blockquote {
margin: 0;
font-family: var(--mono);
color: var(--ink);
font-size: clamp(18px, 2.35vw, 30px);
line-height: 1.25;
letter-spacing: -.035em;
text-transform: lowercase;
}
.process-card p {
margin: 18px 0 0;
color: var(--muted);
line-height: 1.65;
font-size: 15px;
}
.process-steps {
display: grid;
gap: 10px;
margin-top: 20px;
}
.process-steps div {
display: grid;
grid-template-columns: 86px 1fr;
gap: 16px;
color: var(--muted);
line-height: 1.5;
font-size: 14px;
}
.process-steps code {
color: var(--hot-2);
font-family: var(--mono);
font-size: 12px;
text-transform: lowercase;
}
.process-art {
border: 1px solid rgba(9,239,226,.46);
background: linear-gradient(180deg, rgba(9,239,226,.08), rgba(240,239,250,.028));
padding: 10px;
position: relative;
overflow: hidden;
box-shadow: 0 0 60px rgba(9,239,226,.16);
align-self: start;
}
.process-art::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 5px);
mix-blend-mode: screen;
opacity: .45;
}
.process-art img {
display: block;
width: 100%;
height: auto;
object-fit: contain;
object-position: center;
filter: saturate(1.08) contrast(1.06);
background: rgba(4,7,10,.62);
}
.repo-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.repo {
min-height: 276px;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
padding: 22px;
border: 1px solid var(--line);
background: linear-gradient(180deg, rgba(240,239,250,.052), rgba(240,239,250,.024));
transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.repo::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
background: radial-gradient(circle at 20% 0%, rgba(9,239,226,.18), transparent 17rem);
transition: opacity .18s ease;
}
.repo:hover { transform: translateY(-3px); border-color: rgba(9,239,226,.60); background: var(--panel-2); }
.repo:hover::before { opacity: 1; }
.repo > * { position: relative; }
.repo-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 14px;
margin-bottom: 20px;
color: var(--soft);
font-family: var(--mono);
font-size: 11px;
letter-spacing: .08em;
text-transform: lowercase;
}
.stars { color: var(--hot); white-space: nowrap; }
.repo h3 { margin: 0; font-family: var(--mono); font-size: 25px; line-height: 1; letter-spacing: -.045em; text-transform: lowercase; }
.repo p { margin: 14px 0 22px; color: var(--muted); line-height: 1.56; font-size: 15px; }
.repo-demo {
margin: 0 -22px 16px;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
background: rgba(0, 0, 0, .42);
overflow: hidden;
aspect-ratio: 16 / 9;
}
.repo-demo img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center;
}
.repo-demo figcaption {
padding: 8px 12px;
font-family: var(--mono);
font-size: 10px;
letter-spacing: .08em;
text-transform: lowercase;
color: var(--soft);
border-top: 1px solid rgba(160, 166, 207, .14);
}
.repo.has-demo { min-height: 0; padding-top: 0; }
.repo.has-demo .repo-top { margin: 22px 22px 0; padding-top: 0; }
.repo.has-demo h3,
.repo.has-demo p,
.repo.has-demo .tags,
.repo.has-demo .repo-actions { margin-left: 22px; margin-right: 22px; }
.repo.has-demo .repo-demo { margin: 0 0 16px; border-left: 0; border-right: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tag { border: 1px solid rgba(160,166,207,.22); color: var(--hot-2); padding: 7px 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-transform: lowercase; background: rgba(4,7,10,.42); }
.repo-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mini { min-height: 34px; padding: 8px 10px; font-size: 10px; }
.feed {
border: 1px solid var(--line);
background: rgba(4,7,10,.60);
}
.feed-row {
display: grid;
grid-template-columns: 120px 1fr;
gap: 18px;
padding: 18px 20px;
border-bottom: 1px solid var(--line);
color: var(--muted);
line-height: 1.55;
}
.feed-row:last-child { border-bottom: 0; }
.feed-row code { color: var(--hot-2); font-family: var(--mono); font-size: 12px; text-transform: lowercase; }
.feed-row strong { color: var(--ink); font-weight: 500; }
footer {
border-top: 1px solid var(--line);
padding: 44px 0 58px;
color: var(--soft);
font-family: var(--mono);
font-size: 12px;
letter-spacing: .05em;
text-transform: lowercase;
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
@media (max-width: 900px) {
.hero, .section-head, .signal-grid { grid-template-columns: 1fr; }
.hero { min-height: auto; padding-top: 48px; }
.portrait-stage { order: 0; }
}
@media (max-width: 700px) {
.shell { width: calc(100vw - 22px); }
.nav-inner { flex-direction: column; align-items: flex-start; padding: 14px 0; }
.nav-links { width: 100%; justify-content: flex-start; }
.cmd { flex: 1 1 auto; }
.cta-row .cmd { min-width: 0; }
h1 { font-size: clamp(38px, 11.6vw, 50px); letter-spacing: -.075em; }
.hero { gap: 28px; padding-top: 34px; }
.portrait-box { width: min(318px, calc(100vw - 46px)); }
.ring { width: 104%; }
.repo-grid, .x-grid, .process-grid { grid-template-columns: 1fr; }
.proof-list div, .feed-row, .process-steps div { grid-template-columns: 1fr; gap: 6px; }
section { padding: 58px 0; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.feed-row code, .feed-row span, .feed-row a { overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
@media (max-width: 420px) { .ring { width: 100%; } }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.detail-card { border: 1px solid var(--line); background: var(--panel); padding: 18px; min-height: 146px; }
.detail-card h3 { margin: 0 0 10px; font-family: var(--mono); font-size: 14px; letter-spacing: .04em; text-transform: lowercase; color: var(--hot-2); }
.detail-card p { margin: 0; color: var(--muted); line-height: 1.58; font-size: 14px; }
.code-block { overflow-x: auto; border: 1px solid var(--line); background: rgba(0,0,0,.28); padding: 18px; }
.code-block code { white-space: pre; font-family: var(--mono); font-size: 13px; color: var(--hot-2); }
.timeline { display: grid; gap: 10px; }
.timeline div { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 16px; padding: 14px; border: 1px solid var(--line); background: rgba(240,239,250,.032); }
.timeline code { color: var(--hot); font-family: var(--mono); font-size: 11px; text-transform: lowercase; }
.feed-row code, .feed-row span, .feed-row a { overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
@media (max-width: 820px) { .detail-grid { grid-template-columns: 1fr; } .timeline div { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .ring { width: 100%; } }
.doc-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; align-items: start; }
.doc-sidebar { position: sticky; top: 92px; border: 1px solid var(--line); background: rgba(4,7,10,.58); padding: 16px; }
.doc-sidebar a { display: block; padding: 9px 0; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: .07em; text-transform: lowercase; border-bottom: 1px solid rgba(160,166,207,.11); }
.doc-sidebar a:hover { color: var(--hot); }
.doc-main { display: grid; gap: 34px; min-width: 0; }
.doc-section { border: 1px solid var(--line); background: var(--panel); padding: clamp(18px, 3vw, 30px); }
.doc-section h2 { margin-top: 0; font-family: var(--mono); font-size: clamp(30px, 4vw, 48px); line-height: .9; letter-spacing: -.065em; text-transform: lowercase; }
.doc-section h3 { margin: 22px 0 10px; color: var(--hot-2); font-family: var(--mono); font-size: 16px; letter-spacing: .04em; text-transform: lowercase; }
.doc-section p, .doc-section li { color: var(--muted); line-height: 1.64; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.spec { border: 1px solid rgba(160,166,207,.18); background: rgba(0,0,0,.18); padding: 14px; min-width: 0; }
.spec code { display: block; margin-bottom: 8px; color: var(--hot); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: lowercase; }
.spec span { color: var(--muted); line-height: 1.52; }
.command-list { display: grid; gap: 12px; }
.command-list pre { margin: 0; overflow-x: auto; border: 1px solid rgba(160,166,207,.18); background: rgba(0,0,0,.32); padding: 14px; }
.command-list code { white-space: pre; color: var(--hot-2); font-family: var(--mono); font-size: 12px; line-height: 1.55; }
.file-map { display: grid; gap: 8px; }
.file-map div { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 14px; border-bottom: 1px solid rgba(160,166,207,.12); padding: 10px 0; }
.file-map code { color: var(--hot); font-family: var(--mono); font-size: 12px; overflow-wrap: anywhere; }
.file-map span { color: var(--muted); line-height: 1.48; }
.callout { border-left: 3px solid var(--hot); background: rgba(9,239,226,.06); padding: 14px 16px; color: var(--hot-2); }
@media (max-width: 920px) { .doc-layout { grid-template-columns: 1fr; } .doc-sidebar { position: static; } .spec-grid { grid-template-columns: 1fr; } .file-map div { grid-template-columns: 1fr; } }
</style>
</head>
<body>
<nav class="nav" aria-label="Primary navigation">
<div class="shell nav-inner">
<a class="brand" href="#top" aria-label="graph home"><span class="sigil" aria-hidden="true"></span><span>graph</span></a>
<div class="nav-links">
<a class="cmd" href="#work">work</a>
<a class="cmd" href="#voice">voice</a>
<a class="cmd" href="#highlights">highlights</a>
<a class="cmd" href="#pfp-process">pfp</a>
<a class="cmd" href="https://x.com/graphtheory" rel="me noopener" target="_blank">x</a>
<a class="cmd hot" href="https://github.com/codegraphtheory" rel="me noopener" target="_blank">github</a>
</div>
</div>
</nav>
<main id="top">
<header class="shell hero">
<div>
<div class="micro"><span class="pulse" aria-hidden="true"></span> graph 🏴☠️ | @graphtheory</div>
<h1 class="glitch-title" data-text="graphtheory">graphtheory</h1>
<p class="hero-copy"><span class="emoji-line">٩(๑❛ᴗ❛๑)۶ mulling...</span><br /><strong>open source ai advocate building on Hermes.</strong> installable profiles, reusable skills, validation scripts, CI, and agent workflows with real provenance.</p>
<div class="cta-row">
<a class="cmd hot" href="https://github.com/codegraphtheory/hermes-profile-template" target="_blank" rel="noopener">start with the template</a>
<a class="cmd" href="https://x.com/graphtheory" target="_blank" rel="noopener">follow the feed</a>
<a class="cmd" href="#work">see the graph</a>
</div>
<div class="voice-card" aria-label="brand terminal">
<div class="voice-top"><span>github bio</span><span>hermes & hermes accessories</span></div>
<div class="voice-body">
<div><span class="cyan">graph@online</span>:~$ got tired of manually writing SOUL.md, validation scripts, and CI for every new agent profile</div>
<div><span class="green">result</span>: made a Hermes template that does it properly</div>
<div class="dim">policy: install cleanly, smoke test, preserve provenance, ship weird little machines</div>
</div>
</div>
</div>
<div class="portrait-stage" aria-label="profile art">
<div class="ring" aria-hidden="true"></div>
<figure class="portrait-box">
<img src="assets/graphtheory-profile.webp" alt="graph profile picture art" />
<figcaption class="caption"><span>appalachia signal</span><span>☤</span></figcaption>
</figure>
</div>
</header>
<section class="shell" id="voice" aria-labelledby="voice-title">
<div class="section-head">
<h2 id="voice-title">signal</h2>
<p class="section-copy">Open source AI, Hermes, agent infrastructure, visual systems, and a standing allergy to unserious abstractions.</p>
</div>
<div class="signal-grid">
<div class="panel big">
<p class="quote">build the thing once. make it <span>installable</span>. make it <span>testable</span>. make the next weird agent less annoying to ship.</p>
<div class="proof-list">
<div><code>profile</code><span>GraphTheory on GitHub: building installable Hermes Agent profiles, agent tooling, and specialist AI workflows.</span></div>
<div><code>x bio</code><span>open source ai advocate building on Hermes. ☤</span></div>
<div><code>style</code><span>low ceremony, high provenance, tiny jokes, real repos.</span></div>
</div>
</div>
<div class="panel">
<div class="proof-list">
<div><code>7248</code><span>posts</span></div>
<div><code>2124</code><span>X followers</span></div>
<div><code>6</code><span>original project repos</span></div>
<div><code>35</code><span>GitHub followers</span></div>
</div>
</div>
</div>
</section>
<section class="shell" id="highlights" aria-labelledby="highlights-title">
<div class="section-head">
<h2 id="highlights-title">highlights</h2>
<p class="section-copy">AI systems, guardrails, compute, and agent infrastructure.</p>
</div>
<div class="x-grid">
<article class="x-card">
<div class="x-label"><span>shipping infrastructure</span><span>pinned</span></div>
<div class="tweet-shell">
<blockquote class="twitter-tweet" data-theme="dark" data-dnt="true"><p lang="en" dir="ltr">got tired of manually writing SOUL.md, validation scripts, and CI for every new agent profile so i made a Hermes template that does it properly 👇</p><footer>graph 🏴☠️ (@graphtheory)</footer> <a href="https://twitter.com/graphtheory/status/2070182128139067478?ref_src=twsrc%5Etfw">June 25, 2026</a></blockquote>
</div>
</article>
<article class="x-card">
<div class="x-label"><span>guardrails critique</span><span>highlight</span></div>
<div class="tweet-shell">
<blockquote class="twitter-tweet" data-theme="dark" data-dnt="true"><p lang="en" dir="ltr">Incredibly unserious guardrails.</p><footer>graph 🏴☠️ (@graphtheory)</footer> <a href="https://twitter.com/graphtheory/status/2048701261361697079?ref_src=twsrc%5Etfw">May 26, 2026</a></blockquote>
</div>
</article>
<article class="x-card">
<div class="x-label"><span>ai infrastructure cycle</span><span>highlight</span></div>
<div class="x-quote">
<blockquote>in 2028 after all remaining venture capital has been committed to datacenters that have either been made illegal delayed indefinitely or burned down by luds there will be a coin called “ligma balls” that will reach an mcap of 10 trillion it will fund spacefaring data centers</blockquote>
<footer>graph 🏴☠️ (@graphtheory)</footer>
</div>
</article>
<article class="x-card">
<div class="x-label"><span>compute abstraction</span><span>highlight</span></div>
<div class="x-quote">
<blockquote>"serverless" is how you sell computers to retards who are scared of computers</blockquote>
<footer>graph 🏴☠️ (@graphtheory)</footer>
</div>
</article>
</div>
</section>
<section class="shell" id="pfp-process" aria-labelledby="pfp-title">
<div class="section-head">
<h2 id="pfp-title">pfp process</h2>
<p class="section-copy">A composited identity system: illustration, variation, hand edits, luminescence curves, and final signal pass.</p>
</div>
<div class="process-grid">
<article class="process-card">
<blockquote>"I'm a graphic designer and compositor. My best work comes from starting with an illustration, generating variations on it, and then hand editing it 4-5 times."</blockquote>
<p>Not a stock avatar. A composited artifact: original illustration, iteration, hand edits, luminescence curves, and the final "octrafy" pass.</p>
<div class="process-steps">
<div><code>01 source</code><span>Start with an illustration rather than a generic prompt-only image.</span></div>
<div><code>02 vary</code><span>Generate variations to find better structure, lighting, and mood.</span></div>
<div><code>03 composite</code><span>Hand edit the strongest direction several times instead of accepting the first output.</span></div>
<div><code>04 curves</code><span>Adjust luminescence curves until the profile art has that electric, icy contrast.</span></div>
<div><code>05 octrafy</code><span>Final pass: sharpen the identity until it feels like GraphTheory, not just another AI avatar.</span></div>
</div>
<a class="cmd" href="https://x.com/graphtheory/status/2062722820837368309?s=20" target="_blank" rel="noopener">open process post</a>
</article>
<figure class="process-art">
<img src="assets/pfp-process.jpg" alt="GraphTheory profile picture creation process from X post" />
</figure>
</div>
</section>
<section class="shell" id="work" aria-labelledby="work-title">
<div class="section-head">
<h2 id="work-title">work</h2>
<p class="section-copy">Original GraphTheory agents, profile distributions, security tooling, and public machines.</p>
</div>
<div class="repo-grid">
<article class="repo">
<div class="repo-top"><span>original | python</span><span class="stars">20★ 18 forks</span></div>
<h3>hermes-profile-template</h3>
<p>Prompt to repo authoring system. One sentence becomes a mature agent prompt, then an installable Hermes profile distribution with SOUL.md, validation, CI, docs, and release structure.</p>
<div class="tags"><span class="tag">hermes-agent</span><span class="tag">profile-template</span><span class="tag">validation</span></div>
<div class="repo-actions"><a class="cmd mini hot" href="https://github.com/codegraphtheory/hermes-profile-template" target="_blank" rel="noopener">open</a><a class="cmd mini" href="https://github.com/codegraphtheory/hermes-profile-template/stargazers" target="_blank" rel="noopener">star</a><a class="cmd mini" href="/hermes-profile-template/">docs</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>original | hermes</span><span class="stars">0★ 0 forks</span></div>
<h3>heavy-coder</h3>
<p>Hermes Agent profile for adaptive multi-agent coding teams with GitHub issue-to-PR automation, blind critique, synthesis, CI schemas, and fail-closed unattended merge policy.</p>
<div class="tags"><span class="tag">hermes-agent</span><span class="tag">multi-agent</span><span class="tag">coding</span></div>
<div class="repo-actions"><a class="cmd mini hot" href="https://github.com/codegraphtheory/heavy-coder" target="_blank" rel="noopener">open</a><a class="cmd mini" href="/heavy-coder/">docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/heavy-coder/stargazers" target="_blank" rel="noopener">star</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>original | python</span><span class="stars">1★ 2 forks</span></div>
<h3>context-forge-rag</h3>
<p>Installable principal-level RAG architecture profile for retrieval design, agent workflows, evaluation, observability, release gates, and implementation-ready plans.</p>
<div class="tags"><span class="tag">rag</span><span class="tag">evals</span><span class="tag">observability</span></div>
<div class="repo-actions"><a class="cmd mini hot" href="https://github.com/codegraphtheory/context-forge-rag" target="_blank" rel="noopener">open</a><a class="cmd mini" href="https://github.com/codegraphtheory/context-forge-rag/stargazers" target="_blank" rel="noopener">star</a><a class="cmd mini" href="/context-forge-rag/">docs</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>original | python</span><span class="stars">6★ 2 forks</span></div>
<h3>chainforge</h3>
<p>Security-first blockchain architect profile for smart contracts, threat models, protocol design, tokenomics, audit readiness, and production-grade Web3 engineering.</p>
<div class="tags"><span class="tag">security</span><span class="tag">solidity</span><span class="tag">tokenomics</span></div>
<div class="repo-actions"><a class="cmd mini hot" href="https://github.com/codegraphtheory/chainforge" target="_blank" rel="noopener">open</a><a class="cmd mini" href="https://github.com/codegraphtheory/chainforge/stargazers" target="_blank" rel="noopener">star</a><a class="cmd mini" href="/chainforge/">docs</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>original | python</span><span class="stars">8★ 10 forks</span></div>
<h3>solana-rug</h3>
<p>Open-source Solana trust and safety analysis for token risk scoring, rug-pull detection, on-chain checks, Pump.fun reviews, and Hermes workflows.</p>
<div class="tags"><span class="tag">solana</span><span class="tag">risk-analysis</span><span class="tag">anti-rug</span></div>
<div class="repo-actions"><a class="cmd mini hot" href="https://github.com/codegraphtheory/solana-rug" target="_blank" rel="noopener">open</a><a class="cmd mini" href="https://github.com/codegraphtheory/solana-rug/stargazers" target="_blank" rel="noopener">star</a><a class="cmd mini" href="/solana-rug/">docs</a></div>
</article>
</div>
</section>
<section class="shell" id="project-docs" aria-labelledby="project-docs-title">
<div class="section-head">
<h2 id="project-docs-title">project docs</h2>
<p class="section-copy">Six original GraphTheory projects only. No forks, mirrors, or inherited upstream repos.</p>
</div>
<div class="repo-grid">
<article class="repo">
<div class="repo-top"><span>profile authoring</span><span class="stars">docs</span></div>
<h3>hermes-profile-template</h3>
<p>Prompt-to-repo developer docs: install, generator paths, validator, release guard, web demo, and template map.</p>
<div class="repo-actions"><a class="cmd mini hot" href="/hermes-profile-template/">open docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/hermes-profile-template" target="_blank" rel="noopener">github</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>coding agents</span><span class="stars">docs</span></div>
<h3>heavy-coder</h3>
<p>Multi-agent coding docs: hooks, skills, schemas, policy gates, tests, council routing, and issue-to-PR workflow.</p>
<div class="repo-actions"><a class="cmd mini hot" href="/heavy-coder/">open docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/heavy-coder" target="_blank" rel="noopener">github</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>rag architecture</span><span class="stars">docs</span></div>
<h3>context-forge-rag</h3>
<p>RAG architecture docs: ADRs, eval plans, observability, implementation issues, and profile validation.</p>
<div class="repo-actions"><a class="cmd mini hot" href="/context-forge-rag/">open docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/context-forge-rag" target="_blank" rel="noopener">github</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>blockchain security</span><span class="stars">docs</span></div>
<h3>chainforge</h3>
<p>Blockchain architect docs: threat models, review workflow, tokenomics, Octra support, and profile validation.</p>
<div class="repo-actions"><a class="cmd mini hot" href="/chainforge/">open docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/chainforge" target="_blank" rel="noopener">github</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>solana risk</span><span class="stars">docs</span></div>
<h3>solana-rug</h3>
<p>Solana risk docs: CLI usage, scoring modules, RPC behavior, watch mode, Hermes skill, and release checks.</p>
<div class="repo-actions"><a class="cmd mini hot" href="/solana-rug/">open docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/solana-rug" target="_blank" rel="noopener">github</a></div>
</article>
<article class="repo">
<div class="repo-top"><span>profile surface</span><span class="stars">docs</span></div>
<h3>codegraphtheory</h3>
<p>Profile README docs: original-project curation, identity safety, link routing, and public portfolio hygiene.</p>
<div class="repo-actions"><a class="cmd mini hot" href="/codegraphtheory/">open docs</a><a class="cmd mini" href="https://github.com/codegraphtheory/codegraphtheory" target="_blank" rel="noopener">github</a></div>
</article>
</div>
</section>
<section class="shell" aria-labelledby="network-title">
<div class="section-head">
<h2 id="network-title">orbit</h2>
<p class="section-copy">Supporting surface area for original GraphTheory work and this static site.</p>
</div>
<div class="feed">
<div class="feed-row"><code>profiles</code><span>Hermes Profile Template, Heavy Coder, ContextForge RAG, and ChainForge are original installable profile distributions or authoring systems.</span></div>
<div class="feed-row"><code>security</code><span>Solana Rug Guard and ChainForge cover trust-and-safety, protocol review, threat modeling, and adversarial engineering.</span></div>
<div class="feed-row"><code>site</code><span>This landing system is static, versioned, and deployed through GitHub Pages from the GraphTheory root site repository.</span></div>
<div class="feed-row"><code>rule</code><span>Project docs on this domain are reserved for original GraphTheory work.</span></div>
</div>
</section>
</main>
<footer>
<div class="shell footer-inner">
<span>graph 🏴☠️ | open source ai advocate building on Hermes</span>
<span><a href="https://x.com/graphtheory" target="_blank" rel="noopener">x.com/graphtheory</a> | <a href="https://github.com/codegraphtheory" target="_blank" rel="noopener">github.com/codegraphtheory</a></span>
</div>
</footer>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</body>
</html>