-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2361 lines (2146 loc) · 92.4 KB
/
Copy pathindex.html
File metadata and controls
2361 lines (2146 loc) · 92.4 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
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>connor-stack — Choose Your Own Adventure AI Portal</title>
<meta name="description" content="An interactive portal showcasing Connor Gallic's personal AI stack. Explore composable agents, content quality loops, and custom setup prompts.">
<link rel="stylesheet" href="index.css">
<style>
/* 3-column layout control deck */
.control-deck {
display: grid;
grid-template-columns: 1.2fr 2fr 1.1fr;
gap: 1.5rem;
margin-bottom: 5rem;
align-items: stretch;
min-height: 620px;
}
@media (max-width: 1200px) {
.control-deck {
grid-template-columns: 1fr;
min-height: auto;
}
}
/* Column 1: Onboarding Terminal */
.home-terminal {
display: flex;
flex-direction: column;
height: 100%;
min-height: 520px;
}
.home-terminal .terminal-body {
flex-grow: 1;
height: auto;
overflow-y: auto;
font-family: var(--font-mono);
font-size: 0.8rem;
background: #060508;
padding: 1.25rem;
border-radius: 0 0 12px 12px;
line-height: 1.5;
}
.term-log-line {
margin-bottom: 0.5rem;
white-space: pre-wrap;
}
.term-prompt-line {
color: var(--accent-cyan);
font-weight: 700;
}
.term-success-line {
color: #22c55e;
}
.term-system-line {
color: var(--text-muted);
}
.term-selection-line {
margin-top: 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.term-btn-row {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
margin-top: 0.5rem;
}
.term-interactive-btn {
background: #11101a;
border: 1px solid var(--card-border);
color: var(--text-secondary);
font-family: var(--font-mono);
font-size: 0.75rem;
padding: 0.4rem 0.85rem;
border-radius: 6px;
cursor: pointer;
transition: all var(--transition-speed);
}
.term-interactive-btn:hover {
border-color: var(--accent-cyan);
color: var(--text-primary);
background: rgba(6, 182, 212, 0.05);
}
.cursor-blink {
display: inline-block;
width: 8px;
height: 14px;
background: var(--text-primary);
margin-left: 2px;
animation: cursorBlink 1s step-end infinite;
vertical-align: middle;
}
@keyframes cursorBlink {
from, to { background-color: transparent }
50% { background-color: var(--text-primary) }
}
/* Pathway link unlock overlay */
.glow-unlock-btn {
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
color: #ffffff !important;
border: none;
box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
animation: pulseGlowBtn 2s infinite;
}
@keyframes pulseGlowBtn {
0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5); }
70% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}
/* Column 2: Center Column - Flow Map */
.topology-container {
position: relative;
width: 100%;
height: 100%;
min-height: 520px;
background: light-dark(rgba(240, 244, 248, 0.5), rgba(7, 6, 10, 0.7));
border: 1px solid var(--card-border);
border-radius: 16px;
overflow: hidden;
box-shadow: inset 0 0 20px rgba(0,0,0,0.15);
transition: border-color var(--transition-speed);
display: flex;
flex-direction: column;
}
.topology-container:hover {
border-color: rgba(6, 182, 212, 0.25);
}
#topology-connections {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
overflow: visible;
}
.flowmap-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.75rem;
padding: 3.5rem 0.75rem 0.75rem 0.75rem;
height: 100%;
overflow-y: auto;
position: relative;
z-index: 2;
box-sizing: border-box;
flex-grow: 1;
}
.flowmap-column {
display: flex;
flex-direction: column;
gap: 0.6rem;
justify-content: center;
height: 100%;
}
.column-header {
font-family: var(--font-display);
font-size: 0.65rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text-muted);
text-align: center;
margin-bottom: 0.2rem;
border-bottom: 1px dashed var(--card-border);
padding-bottom: 0.3rem;
}
/* Node Cards */
.node-card {
background: light-dark(rgba(255, 255, 255, 0.8), rgba(21, 20, 29, 0.65));
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 0.55rem 0.7rem;
font-family: var(--font-sans);
cursor: pointer;
transition: all var(--transition-speed) var(--transition-bounce);
position: relative;
display: flex;
flex-direction: column;
gap: 0.15rem;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
user-select: none;
z-index: 5;
}
.node-card:hover {
background: light-dark(rgba(255, 255, 255, 0.95), rgba(30, 27, 46, 0.85));
border-color: var(--accent-cyan);
transform: translateY(-2px) scale(1.02);
box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}
.node-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.node-title {
font-family: var(--font-mono);
font-size: 0.7rem;
font-weight: 700;
color: var(--text-primary);
}
.node-status-dot {
width: 6px;
height: 6px;
border-radius: 50%;
display: inline-block;
}
.node-status-dot.online {
background-color: #22c55e;
box-shadow: 0 0 6px #22c55e;
}
.node-status-dot.synced {
background-color: var(--accent-cyan);
box-shadow: 0 0 6px var(--accent-cyan);
}
.node-desc {
font-size: 0.6rem;
color: var(--text-secondary);
line-height: 1.2;
}
/* Node highlight states */
.node-card.active-node {
border-color: var(--accent-cyan);
box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
background: light-dark(rgba(255, 255, 255, 0.95), rgba(30, 27, 46, 0.95));
transform: scale(1.03);
}
.node-card.active-node-pink {
border-color: var(--accent-pink);
box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
background: light-dark(rgba(255, 255, 255, 0.95), rgba(30, 27, 46, 0.95));
transform: scale(1.03);
}
.node-card.dimmed-node {
opacity: 0.3;
}
/* SVG connection paths */
.conn-path {
fill: none;
stroke: var(--card-border);
stroke-width: 1.5;
opacity: 0.5;
transition: all var(--transition-speed) ease;
}
.conn-path.highlighted {
stroke: var(--accent-cyan);
stroke-width: 2.5;
opacity: 0.9;
}
.conn-path.dimmed {
opacity: 0.1;
}
.conn-path.active-flow {
stroke: var(--accent-cyan);
stroke-dasharray: 6, 6;
stroke-width: 2.5;
opacity: 1;
animation: flowDash 1s linear infinite;
}
.conn-path.active-flow-pink {
stroke: var(--accent-pink);
stroke-dasharray: 6, 6;
stroke-width: 2.5;
opacity: 1;
animation: flowDash 1s linear infinite;
}
@keyframes flowDash {
to {
stroke-dashoffset: -12;
}
}
/* Workflow simulation menu */
.workflow-sim-header {
position: absolute;
top: 10px;
left: 10px;
right: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
gap: 6px;
z-index: 10;
background: light-dark(rgba(240, 244, 248, 0.9), rgba(7, 6, 10, 0.85));
border: 1px solid var(--card-border);
border-radius: 20px;
padding: 4px 8px;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.sim-title {
font-family: var(--font-mono);
font-size: 0.65rem;
font-weight: 700;
color: var(--text-muted);
margin-right: 4px;
letter-spacing: 0.05em;
}
.sim-tab-btn {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--card-border);
color: var(--text-secondary);
font-family: var(--font-mono);
font-size: 0.65rem;
font-weight: 600;
padding: 3px 8px;
border-radius: 12px;
cursor: pointer;
transition: all 0.2s ease;
}
.sim-tab-btn:hover {
background: rgba(6, 182, 212, 0.15);
border-color: var(--accent-cyan);
color: var(--text-primary);
box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
}
.sim-tab-btn.active {
background: rgba(6, 182, 212, 0.2);
border-color: var(--accent-cyan);
color: var(--text-primary);
box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}
/* Column 3: HUD details sidepanel */
.telemetry-sidepanel {
display: flex;
flex-direction: column;
gap: 1rem;
height: 100%;
}
/* Stats grid */
.stats-mini-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.5rem;
}
.stat-card-mini {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 8px;
padding: 0.5rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.stat-card-mini .stat-label {
font-size: 0.55rem;
color: var(--text-muted);
text-transform: uppercase;
font-family: var(--font-mono);
}
.stat-card-mini .stat-val {
font-size: 0.7rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-mono);
margin-top: 0.15rem;
white-space: nowrap;
}
/* Telemetry HUD details */
.topology-hud {
background: var(--card-bg);
border: 1px solid var(--card-border);
padding: 0.85rem 1rem;
border-radius: 12px;
min-height: 140px;
display: flex;
flex-direction: column;
justify-content: flex-start;
transition: all var(--transition-speed);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.topology-hud.active-hud {
border-color: var(--accent-cyan);
box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
background: rgba(6, 182, 212, 0.02);
}
/* Prompt Box with Copy */
.hud-prompt-container {
background: #060508;
border: 1px solid var(--card-border);
border-radius: 8px;
padding: 0.6rem;
margin-top: 0.5rem;
position: relative;
}
.hud-prompt-scroll {
max-height: 90px;
overflow-y: auto;
font-family: var(--font-mono);
font-size: 0.65rem;
color: var(--text-secondary);
white-space: pre-wrap;
word-break: break-all;
line-height: 1.4;
padding-right: 1.5rem;
}
.copy-btn-mini-hud {
position: absolute;
top: 6px;
right: 6px;
background: var(--accent-cyan);
border: none;
color: #ffffff;
font-family: var(--font-mono);
font-size: 0.55rem;
font-weight: 700;
padding: 2px 6px;
border-radius: 4px;
cursor: pointer;
transition: all 0.2s;
}
.copy-btn-mini-hud:hover {
box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}
/* Video section styling */
.video-showcase-inline {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 12px;
padding: 0.85rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.75rem;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.video-info-block {
flex-grow: 1;
}
.video-title-mini {
font-family: var(--font-display);
font-size: 0.8rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 0.15rem;
}
.video-desc-mini {
font-size: 0.65rem;
color: var(--text-secondary);
}
.video-btn-container {
display: flex;
align-items: center;
}
.play-btn-mini {
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
border: none;
border-radius: 6px;
padding: 0.4rem 0.85rem;
font-family: var(--font-display);
font-size: 0.7rem;
font-weight: 700;
color: #ffffff;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.35rem;
transition: all var(--transition-speed);
white-space: nowrap;
}
.play-btn-mini:hover {
box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
transform: translateY(-1px);
}
.play-icon-mini {
width: 0;
height: 0;
border-top: 3.5px solid transparent;
border-bottom: 3.5px solid transparent;
border-left: 6px solid #ffffff;
}
</style>
</head>
<body>
<!-- Matrix Digital Rain Background Overlay -->
<div class="matrix-canvas-container" id="matrix-canvas-container">
<canvas id="matrix-rain-canvas"></canvas>
</div>
<div class="layout-container">
<!-- Navigation bar -->
<header class="nav-header" role="banner">
<a href="index.html" class="brand" id="nav-brand-link">
<span class="brand-accent">connor-stack</span>
</a>
<nav class="nav-actions" role="navigation" aria-label="Main Navigation">
<a href="philosophy.html" class="nav-link" id="nav-philosophy-link">Manifesto</a>
<a href="tour.html" class="nav-link" id="nav-tour-link">Tour</a>
<a href="cmo-simulator.html" class="nav-link" id="nav-simulator-link">Simulator</a>
<a href="spokes.html" class="nav-link" id="nav-spokes-link">Spokes</a>
<button class="theme-toggle-btn" id="theme-toggle-button" aria-label="Toggle color theme" title="Toggle dark/light mode">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="theme-icon">
<circle cx="12" cy="12" r="4"></circle>
<path d="M12 2v2"></path>
<path d="M12 20v2"></path>
<path d="M5 5l1.5 1.5"></path>
<path d="M17.5 17.5L19 19"></path>
<path d="M2 12h2"></path>
<path d="M20 12h2"></path>
<path d="M5 19l1.5-1.5"></path>
<path d="M17.5 6.5L19 5"></path>
</svg>
</button>
</nav>
</header>
<!-- Main Content Area -->
<main role="main">
<section class="hero" aria-labelledby="main-heading">
<span class="hero-tag">Open Source · 29 Public Repos</span>
<h1 class="hero-title" id="main-heading">My Creative AI Universe</h1>
<p class="hero-subtitle">29 open-source repos that work as one system. An Omi pendant captures ambient audio over BLE, a persistent memory bank remembers everything, reasoning agents collaborate on the hard calls behind safety gates, and production pipelines ship the output. Small, composable scripts — not a rigid framework. Watch them cooperate in real time below.</p>
</section>
<!-- Active Dashboard: Onboarding Terminal + Stack Status -->
<section class="control-deck" aria-label="AI Universe Control Deck">
<!-- Interactive Onboarding Terminal (Left Column) -->
<div class="terminal-window home-terminal">
<div class="terminal-header">
<div class="terminal-dots">
<div class="terminal-dot red"></div>
<div class="terminal-dot yellow"></div>
<div class="terminal-dot green"></div>
</div>
<div class="terminal-title">connor-stack-cli (onboarding)</div>
</div>
<div class="terminal-body" id="term-onboarding-logs">
<div id="terminal-logs-content"></div>
<div class="terminal-input-container" id="terminal-input-row" style="display: none;">
<span class="term-prompt-line">$ </span>
<input type="text" class="terminal-text-input" id="terminal-text-input" autocomplete="off" placeholder="Type a command (e.g. help)...">
</div>
</div>
</div>
<!-- Live Network Graph Canvas Container (Center Column) -->
<div class="topology-container" id="topology-container-main">
<!-- Floating Scenario Selection Menu -->
<div class="workflow-sim-header" id="workflow-sim-header">
<span class="sim-title">COLLABORATIONS:</span>
<button class="sim-tab-btn" id="sim-btn-code" onclick="startWorkflowSim('code')">[1] Code Loop</button>
<button class="sim-tab-btn" id="sim-btn-voice" onclick="startWorkflowSim('voice')">[2] Idea Ingest</button>
<button class="sim-tab-btn" id="sim-btn-media" onclick="startWorkflowSim('media')">[3] Media Loop</button>
</div>
<svg id="topology-connections"></svg>
<div class="flowmap-container" id="flowmap-outer-container">
<!-- Column 1: MEMORY -->
<div class="flowmap-column" id="col-memory">
<div class="column-header">MEMORY</div>
<div class="node-card" id="node-pendant" data-node-key="pendant">
<div class="node-header">
<span class="node-title">pendant</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Voice Capture</div>
</div>
<div class="node-card" id="node-events" data-node-key="events">
<div class="node-header">
<span class="node-title">events.db</span>
<span class="node-status-dot synced"></span>
</div>
<div class="node-desc">Memory Bank</div>
</div>
<div class="node-card" id="node-dev" data-node-key="dev">
<div class="node-header">
<span class="node-title">dev</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Local Sandbox</div>
</div>
</div>
<!-- Column 2: THINK TANK -->
<div class="flowmap-column" id="col-thinktank">
<div class="column-header">THINK TANK</div>
<div class="node-card" id="node-clive" data-node-key="clive">
<div class="node-header">
<span class="node-title">clive</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Coding Peer</div>
</div>
<div class="node-card" id="node-kodi" data-node-key="kodi">
<div class="node-header">
<span class="node-title">kodi</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Reasoning Partner</div>
</div>
<div class="node-card" id="node-beast" data-node-key="beast">
<div class="node-header">
<span class="node-title">beast</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Co-Ordinator</div>
</div>
<div class="node-card" id="node-diwan" data-node-key="diwan">
<div class="node-header">
<span class="node-title">diwan</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Decision Ledger</div>
</div>
<div class="node-card" id="node-zehrava" data-node-key="zehrava">
<div class="node-header">
<span class="node-title">zehrava</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Safety Gate</div>
</div>
</div>
<!-- Column 3: PIPELINES -->
<div class="flowmap-column" id="col-pipelines">
<div class="column-header">PIPELINES</div>
<div class="node-card" id="node-paperboy" data-node-key="paperboy">
<div class="node-header">
<span class="node-title">paperboy</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Daily Curator</div>
</div>
<div class="node-card" id="node-shorts" data-node-key="shorts">
<div class="node-header">
<span class="node-title">shorts</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Video Producer</div>
</div>
<div class="node-card" id="node-gateway" data-node-key="gateway">
<div class="node-header">
<span class="node-title">gateway</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Webhook Link</div>
</div>
<div class="node-card" id="node-hermes" data-node-key="hermes">
<div class="node-header">
<span class="node-title">hermes</span>
<span class="node-status-dot synced"></span>
</div>
<div class="node-desc">Agent Router</div>
</div>
</div>
<!-- Column 4: RESONANCE -->
<div class="flowmap-column" id="col-resonance">
<div class="column-header">RESONANCE</div>
<div class="node-card" id="node-discord" data-node-key="discord">
<div class="node-header">
<span class="node-title">discord</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Review Hub</div>
</div>
<div class="node-card" id="node-kai" data-node-key="kai">
<div class="node-header">
<span class="node-title">kai</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">CMO Harness</div>
</div>
<div class="node-card" id="node-hale" data-node-key="hale">
<div class="node-header">
<span class="node-title">hale</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">System Steward</div>
</div>
<div class="node-card" id="node-mdi" data-node-key="mdi">
<div class="node-header">
<span class="node-title">mdi</span>
<span class="node-status-dot online"></span>
</div>
<div class="node-desc">Shared Mind</div>
</div>
</div>
</div>
</div>
<!-- Telemetry Sidepanel & HUD (Right Column) -->
<div class="telemetry-sidepanel">
<!-- Live System stats -->
<div class="stats-mini-grid">
<div class="stat-card-mini">
<span class="stat-label">Uptime</span>
<span class="stat-val" id="stats-uptime">00:00:00</span>
</div>
<div class="stat-card-mini">
<span class="stat-label">API Load</span>
<span class="stat-val" id="stats-api-load">78 req/min</span>
</div>
<div class="stat-card-mini">
<span class="stat-label">DB Size</span>
<span class="stat-val" id="stats-db-count">1,482 logs</span>
</div>
</div>
<!-- Node Telemetry Details Box -->
<div class="topology-hud" id="topology-details">
<div id="topology-hud-idle" style="font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-secondary); text-align: center; line-height: 1.5; margin: auto 0;">
<span style="color: var(--accent-pink); animation: cursorBlink 1.5s infinite; font-weight: bold;">></span> Click a node to query live system logs
</div>
<div id="topology-hud-active" style="display: none; font-family: var(--font-mono); font-size: 0.7rem; line-height: 1.5; height: 100%; display: flex; flex-direction: column; justify-content: space-between;">
<div>
<div style="display: flex; justify-content: space-between; margin-bottom: 0.35rem; border-bottom: 1px dashed var(--card-border); padding-bottom: 0.35rem;">
<span id="hud-node-name" style="font-weight: 700; color: var(--text-primary);">NODE_NAME</span>
<span id="hud-node-status" style="font-weight: 700;">ONLINE</span>
</div>
<div style="color: var(--text-secondary); margin-bottom: 0.35rem; font-size: 0.65rem;">
Host: <span id="hud-node-host" style="color: var(--accent-cyan);">HOST</span> | Sector: <span id="hud-node-sector" style="color: var(--accent-purple);">SECTOR</span>
</div>
<div style="color: var(--text-secondary); margin-bottom: 0.35rem; font-size: 0.65rem;">
Role: <span id="hud-node-role" style="font-weight: 600;">ROLE</span>
</div>
<div style="color: var(--text-secondary); margin-bottom: 0.35rem; font-size: 0.65rem;">
Signal: <span id="hud-node-signal" style="font-family: var(--font-mono);">SIGNAL</span>
</div>
<div style="color: var(--text-muted); font-size: 0.6rem; margin-bottom: 0.5rem;" id="hud-node-telemetry">
Latency: --ms | Ingest: -- ev/s | Rate: -- kbps
</div>
<div style="color: var(--text-primary); font-size: 0.65rem; height: 50px; overflow-y: auto; background: rgba(0,0,0,0.3); padding: 0.35rem 0.6rem; border-radius: 4px; border-left: 2px solid var(--accent-cyan); font-family: var(--font-mono); white-space: pre-wrap;" id="hud-node-activity">
SYSTEM_ACTIVITY_LOG
</div>
</div>
<!-- Prompt Copy Panel -->
<div id="hud-prompt-box" class="hud-prompt-container" style="display: none; margin-top: 0.5rem;">
<button class="copy-btn-mini-hud" id="hud-copy-btn">COPY PROMPT</button>
<div style="font-size: 0.55rem; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 0.2rem; text-transform: uppercase;">Paste this into Claude:</div>
<div class="hud-prompt-scroll" id="hud-prompt-text">PROMPT_TEMPLATE</div>
</div>
</div>
</div>
<!-- Video Walkthrough -->
<div class="video-showcase-inline">
<div class="video-info-block">
<h3 class="video-title-mini">Video Walkthrough</h3>
<p class="video-desc-mini">Connor walks through the core architecture and shows the tools in action.</p>
</div>
<div class="video-btn-container" id="video-btn-wrapper">
<button class="play-btn-mini" id="video-play-trigger" aria-label="Watch video walkthrough">
<span class="play-icon-mini"></span>
<span>Watch Tour</span>
</button>
</div>
</div>
</div>
</section>
<!-- The Three Doors Route Selection -->
<section class="doors-grid" aria-label="Audience Pathways">
<!-- Marketer Door -->
<a href="marketer/index.html" class="door-card marketer" id="door-marketer-link">
<div class="door-icon-wrapper">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<rect x="2" y="6" width="20" height="12" rx="2"></rect>
<path d="M12 12h.01"></path>
<path d="M16 16h.01"></path>
<path d="M8 16h.01"></path>
<path d="M12 16h.01"></path>
<path d="M8 12h.01"></path>
<path d="M16 12h.01"></path>
</svg>
</div>
<span class="door-meta">Marketers / Agency Owners</span>
<h3 class="door-title">Copy the workflow</h3>
<p class="door-desc">Get client folder structures, perception copywriting guides, content quality checking rules, and the actual .claude config templates I run on client projects.</p>
<span class="door-action" id="marketer-action-span">
<span>Explore Marketer Path</span>
<svg class="arrow-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</a>
<!-- Builder Door -->
<a href="builder/index.html" class="door-card builder" id="door-builder-link">
<div class="door-icon-wrapper">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="16 18 22 12 16 6"></polyline>
<polyline points="8 6 2 12 8 18"></polyline>
</svg>
</div>
<span class="door-meta">Claude Code / Agent Builders</span>
<h3 class="door-title">Build the machine</h3>
<p class="door-desc">Master terminal slash commands, configure preflight hooks, orchestrate parallel subagents, and wire open-brane to paperboy's SQLite log database.</p>
<span class="door-action" id="builder-action-span">
<span>Explore Builder Path</span>
<svg class="arrow-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</a>
<!-- Curious Door -->
<a href="tour.html" class="door-card curious" id="door-tour-link">
<div class="door-icon-wrapper">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="12 2 2 22 22 22"></polygon>
</svg>
</div>
<span class="door-meta">Curious Readers</span>
<h3 class="door-title">Take the tour</h3>
<p class="door-desc">Read the core design principles, inspect the hub-and-spoke diagram, and browse all 29 public repositories linked in a single catalog.</p>
<span class="door-action">
<span>Start the Tour</span>
<svg class="arrow-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</a>
</section>
</main>
<!-- Footer Area -->
<footer class="footer" role="contentinfo">
<p class="footer-text">Built by Connor Gallic. Code licensed MIT. Personal configurations and proofs of concept for remixing.</p>
<div class="footer-links">
<a href="philosophy.html" class="footer-link">Philosophy</a>
<a href="tour.html" class="footer-link">Architecture Tour</a>
<a href="spokes.html" class="footer-link">Spoke Registry</a>
<a href="https://github.com/cgallic/connor-stack" class="footer-link" target="_blank" rel="noopener">GitHub</a>
</div>
</footer>
</div>
<script>
// Theme control using light-dark() CSS reactivity and color-scheme properties
const themeBtn = document.getElementById('theme-toggle-button');
// Get initial preference
let currentTheme = localStorage.getItem('theme');
if (!currentTheme) {
currentTheme = window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark';
}
// Set initial layout
document.documentElement.style.colorScheme = currentTheme;
updateThemeIcon(currentTheme);
themeBtn.addEventListener('click', () => {
const isDark = document.documentElement.style.colorScheme === 'dark';
const nextTheme = isDark ? 'light' : 'dark';
document.documentElement.style.colorScheme = nextTheme;
localStorage.setItem('theme', nextTheme);
updateThemeIcon(nextTheme);
});
function updateThemeIcon(theme) {
const isDark = theme === 'dark';
themeBtn.querySelector('.theme-icon').innerHTML = isDark
? `<circle cx="12" cy="12" r="4"></circle><path d="M12 2v2"></path><path d="M12 20v2"></path><path d="M5 5l1.5 1.5"></path><path d="M17.5 17.5L19 19"></path><path d="M2 12h2"></path><path d="M20 12h2"></path><path d="M5 19l1.5-1.5"></path><path d="M17.5 6.5L19 5"></path>`
: `<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>`;
}
// Web Audio Synthesizer Logic
let audioCtx = null;
let soundEnabled = true;
function getAudioContext() {
if (!audioCtx) {
audioCtx = new (window.AudioContext || window.webkitAudioContext)();
}
return audioCtx;
}
function playTone(freqStart, freqEnd, duration, type = 'sine', volume = 0.05) {
if (!soundEnabled) return;
try {
const ctx = getAudioContext();
if (ctx.state === 'suspended') {
ctx.resume();
}
const osc = ctx.createOscillator();
const gain = ctx.createGain();
osc.type = type;
osc.frequency.setValueAtTime(freqStart, ctx.currentTime);
if (freqEnd && freqEnd !== freqStart) {
osc.frequency.exponentialRampToValueAtTime(freqEnd, ctx.currentTime + duration);
}
gain.gain.setValueAtTime(volume, ctx.currentTime);
gain.gain.exponentialRampToValueAtTime(0.0001, ctx.currentTime + duration);
osc.connect(gain);
gain.connect(ctx.destination);
osc.start();
osc.stop(ctx.currentTime + duration);
} catch (e) {
console.warn("Web Audio API not supported/blocked", e);
}
}
const playTick = () => playTone(1200, 1000, 0.015, 'triangle', 0.01);
const playSuccess = () => {
playTone(523.25, 523.25, 0.08, 'sine', 0.03);
setTimeout(() => playTone(659.25, 659.25, 0.08, 'sine', 0.03), 80);
setTimeout(() => playTone(783.99, 783.99, 0.15, 'sine', 0.03), 160);
};
const playChirp = () => playTone(800, 1600, 0.05, 'sine', 0.02);
const playLaser = () => playTone(2000, 150, 0.25, 'sawtooth', 0.015);
const playError = () => playTone(150, 120, 0.15, 'sawtooth', 0.03);
const playBoot = () => {
playTone(110, 220, 0.4, 'sine', 0.04);
setTimeout(() => playTone(165, 330, 0.4, 'sine', 0.03), 150);
};
function attachAudioFeedback() {
const elements = document.querySelectorAll('a, button, .term-interactive-btn');
elements.forEach(el => {
if (el.dataset.soundAttached) return;
el.dataset.soundAttached = "true";
el.addEventListener('mouseenter', () => {
playTick();
});
el.addEventListener('click', () => {
if (el.classList.contains('glow-unlock-btn')) {
playSuccess();