-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1873 lines (1703 loc) · 114 KB
/
index.html
File metadata and controls
1873 lines (1703 loc) · 114 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>Personal Operating System – Stack Explorer</title>
<meta property="og:title" content="POS Stack Explorer — AI Mindset">
<meta property="og:description" content="Interactive explorer of Personal Operating System stack for AI-Native Organizations Sprint">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ai-mindset-org.github.io/pos-stack-explorer/">
<meta name="twitter:card" content="summary_large_image">
<link rel="icon" type="image/png" href="favicon.png">
<style>
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
--bg:#0d1117;--bg2:#161b22;--bg3:#1c2333;--bg4:#21262d;
--border:#30363d;--border2:#484f58;
--text:#e6edf3;--text2:#8b949e;--text3:#6e7681;
--teal:#4dc9d4;--teal2:#2ea8b3;--teal-bg:rgba(77,201,212,.08);
--blue:#3b82f6;--amber:#e5a54b;--red:#f85149;--green:#3fb950;--purple:#a371f7;
--mono:"SF Mono","JetBrains Mono","Fira Code","Cascadia Code",monospace;
--sans:"Inter","SF Pro Display",-apple-system,system-ui,sans-serif;
--radius:8px;--transition:all .25s ease;
}
html{font-size:14px;scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:var(--mono);line-height:1.6;min-height:100vh;overflow-x:hidden}
/* Terminal Chrome */
.terminal-window{background:var(--bg2);border:1px solid var(--border);border-radius:10px;overflow:hidden;margin:12px;box-shadow:0 8px 32px rgba(0,0,0,.4)}
.terminal-bar{display:flex;align-items:center;gap:8px;padding:10px 16px;background:var(--bg4);border-bottom:1px solid var(--border)}
.terminal-dot{width:12px;height:12px;border-radius:50%}
.terminal-dot.r{background:#ff5f57}.terminal-dot.y{background:#febc2e}.terminal-dot.g{background:#28c840}
.terminal-title{flex:1;text-align:center;color:var(--text2);font-size:12px;font-family:var(--mono)}
.terminal-body{padding:0}
/* Header */
.header{padding:32px 32px 24px;border-bottom:1px solid var(--border)}
.header-top{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;margin-bottom:16px}
.header h1{font-size:24px;font-weight:700;color:var(--text);letter-spacing:-.5px}
.header h1 span{color:var(--teal)}
.header-badge{display:flex;align-items:center;gap:8px;font-size:11px;color:var(--text2);background:var(--bg);padding:6px 12px;border-radius:20px;border:1px solid var(--border)}
.header-badge .dot{width:8px;height:8px;border-radius:50%;background:var(--green);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.header-sub{font-size:13px;color:var(--text2);max-width:700px}
.header-sub strong{color:var(--teal)}
/* Presets Bar */
.presets{display:flex;gap:8px;padding:16px 32px;border-bottom:1px solid var(--border);flex-wrap:wrap;align-items:center}
.presets-label{font-size:11px;color:var(--text3);text-transform:uppercase;letter-spacing:1px;margin-right:8px}
.preset-btn{background:var(--bg);border:1px solid var(--border);color:var(--text2);padding:6px 14px;border-radius:20px;cursor:pointer;font-family:var(--mono);font-size:12px;transition:var(--transition)}
.preset-btn:hover{border-color:var(--teal);color:var(--teal)}
.preset-btn.active{background:var(--teal-bg);border-color:var(--teal);color:var(--teal)}
/* Main Layout */
.main{display:grid;grid-template-columns:280px 1fr;min-height:600px}
@media(max-width:900px){.main{grid-template-columns:1fr}}
/* Sidebar */
.sidebar{border-right:1px solid var(--border);padding:16px 0}
.layer-item{display:flex;align-items:center;gap:12px;padding:12px 24px;cursor:pointer;transition:var(--transition);border-left:3px solid transparent;position:relative}
.layer-item:hover{background:var(--bg3)}
.layer-item.active{background:var(--teal-bg);border-left-color:var(--teal)}
.layer-icon{width:36px;height:36px;border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;border:1px solid var(--border)}
.layer-item.active .layer-icon{border-color:var(--teal);box-shadow:0 0 12px rgba(77,201,212,.2)}
.layer-label{font-size:13px;color:var(--text2);font-weight:500}
.layer-item.active .layer-label{color:var(--text)}
.layer-num{font-size:10px;color:var(--text3);position:absolute;right:16px;top:50%;transform:translateY(-50%)}
.layer-item.active .layer-num{color:var(--teal)}
.layer-item.locked{opacity:.35;cursor:default}
.layer-item.locked:hover{background:transparent}
.lock-icon{font-size:10px;color:var(--text3)}
/* Content Area */
.content{padding:24px 32px;overflow-y:auto;max-height:calc(100vh - 260px)}
.content-header{margin-bottom:24px}
.content-header h2{font-size:20px;font-weight:600;margin-bottom:6px;display:flex;align-items:center;gap:10px}
.content-header h2 .tag{font-size:11px;padding:3px 10px;border-radius:12px;font-weight:500}
.content-header p{font-size:13px;color:var(--text2);max-width:600px}
/* Component Cards */
.components-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:12px;margin-bottom:24px}
.comp-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;cursor:default;transition:var(--transition);position:relative;overflow:hidden}
.comp-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--teal);opacity:0;transition:var(--transition)}
.comp-card:hover{border-color:var(--border2);transform:translateY(-1px)}
.comp-card:hover::before{opacity:1}
.comp-card-title{font-size:13px;font-weight:600;margin-bottom:4px;display:flex;align-items:center;gap:6px}
.comp-card-desc{font-size:11px;color:var(--text2);line-height:1.5}
.comp-badge{font-size:9px;padding:2px 6px;border-radius:8px;font-weight:500}
/* Connection Diagram */
.diagram{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:20px;margin-bottom:24px;position:relative;min-height:120px}
.diagram-title{font-size:11px;color:var(--text3);text-transform:uppercase;letter-spacing:1px;margin-bottom:16px}
.diagram-flow{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.diagram-node{background:var(--bg2);border:1px solid var(--border);border-radius:6px;padding:8px 14px;font-size:12px;color:var(--text2);white-space:nowrap}
.diagram-node.highlight{border-color:var(--teal);color:var(--teal);background:var(--teal-bg)}
.diagram-arrow{color:var(--text3);font-size:14px}
.diagram-group{display:flex;flex-direction:column;gap:6px;padding:12px;border:1px dashed var(--border);border-radius:var(--radius)}
.diagram-group-label{font-size:10px;color:var(--text3);text-transform:uppercase;letter-spacing:1px}
/* Real Example Block */
.example-block{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:24px}
.example-header{padding:10px 16px;background:var(--bg4);border-bottom:1px solid var(--border);display:flex;align-items:center;gap:8px}
.example-header .file-icon{color:var(--teal);font-size:12px}
.example-header .file-name{font-size:12px;color:var(--text2)}
.example-body{padding:16px;font-size:12px;line-height:1.7;color:var(--text2);white-space:pre-wrap;font-family:var(--mono)}
.example-body .hl{color:var(--teal)}
.example-body .hl-amber{color:var(--amber)}
.example-body .hl-green{color:var(--green)}
.example-body .hl-purple{color:var(--purple)}
.example-body .hl-blue{color:var(--blue)}
.example-body .comment{color:var(--text3)}
/* Concepts Section */
.concepts{padding:16px 32px 24px;border-top:1px solid var(--border)}
.concepts h3{font-size:14px;color:var(--text2);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.concepts-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:12px}
.concept-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;cursor:pointer;transition:var(--transition)}
.concept-card:hover{border-color:var(--teal);background:var(--teal-bg)}
.concept-card.expanded{border-color:var(--teal);background:var(--teal-bg)}
.concept-quote{font-size:12px;color:var(--amber);margin-bottom:8px;font-style:italic}
.concept-title{font-size:13px;font-weight:600;margin-bottom:4px}
.concept-mapping{font-size:11px;color:var(--text2);line-height:1.6;display:none}
.concept-card.expanded .concept-mapping{display:block;margin-top:8px;padding-top:8px;border-top:1px solid var(--border)}
.concept-slide-ref{font-size:10px;color:var(--text3);margin-top:4px}
/* Prompt Output */
.prompt-section{padding:16px 32px 24px;border-top:1px solid var(--border)}
.prompt-section h3{font-size:14px;color:var(--text2);margin-bottom:12px;display:flex;align-items:center;gap:8px}
.prompt-output{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:20px;font-size:12px;line-height:1.7;color:var(--text2);white-space:pre-wrap;position:relative;max-height:300px;overflow-y:auto}
.prompt-output .prompt-kw{color:var(--teal)}
.copy-btn{position:absolute;top:12px;right:12px;background:var(--bg2);border:1px solid var(--border);color:var(--text2);padding:6px 12px;border-radius:6px;cursor:pointer;font-family:var(--mono);font-size:11px;transition:var(--transition)}
.copy-btn:hover{border-color:var(--teal);color:var(--teal)}
/* Footer */
.footer{padding:16px 32px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.footer-left{font-size:11px;color:var(--text3)}
.footer-right{display:flex;gap:16px}
.footer-stat{font-size:11px;color:var(--text3);display:flex;align-items:center;gap:4px}
.footer-stat .val{color:var(--teal)}
/* Animations */
.fade-in{animation:fadeIn .3s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
/* Scrollbar */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg2)}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:var(--border2)}
/* Mobile */
@media(max-width:900px){
.sidebar{border-right:none;border-bottom:1px solid var(--border);padding:8px 0;display:flex;overflow-x:auto;gap:0}
.layer-item{padding:10px 16px;border-left:none;border-bottom:3px solid transparent;white-space:nowrap;flex-direction:column;gap:4px}
.layer-item.active{border-bottom-color:var(--teal);border-left-color:transparent}
.layer-num{display:none}
.content{max-height:none;padding:16px}
.components-grid{grid-template-columns:1fr}
.concepts-grid{grid-template-columns:1fr}
.pipeline-grid{grid-template-columns:1fr}
.dept-grid{grid-template-columns:1fr 1fr}
.sd-grid{grid-template-columns:1fr}
.guide-phase-body{font-size:11px}
.header,.presets,.concepts,.prompt-section,.footer,.naming-section,.node-graph-section,.pipeline-section,.deeplinks-section,.skills-dashboard,.setup-guide{padding-left:16px;padding-right:16px}
}
/* Status indicators */
.status-row{display:flex;gap:6px;align-items:center;margin-top:8px}
.status-dot{width:8px;height:8px;border-radius:50%}
.status-dot.ok{background:var(--green)}.status-dot.warn{background:var(--amber)}.status-dot.crit{background:var(--red)}
.status-label{font-size:10px;color:var(--text3)}
/* Layer color coding */
.lc-infra{color:#3fb950}.lc-data{color:#58a6ff}.lc-orch{color:#a371f7}.lc-skills{color:#e5a54b}.lc-people{color:#f778ba}.lc-gov{color:#4dc9d4}
.bg-infra{background:rgba(63,185,80,.1);border-color:rgba(63,185,80,.3)}
.bg-data{background:rgba(88,166,255,.1);border-color:rgba(88,166,255,.3)}
.bg-orch{background:rgba(163,113,247,.1);border-color:rgba(163,113,247,.3)}
.bg-skills{background:rgba(229,165,75,.1);border-color:rgba(229,165,75,.3)}
.bg-people{background:rgba(247,120,186,.1);border-color:rgba(247,120,186,.3)}
.bg-gov{background:rgba(77,201,212,.1);border-color:rgba(77,201,212,.3)}
/* ── Pipeline Section ── */
/* Pipeline section */
.pipeline-section{padding:16px 32px 24px;border-top:1px solid var(--border)}
.pipeline-section h3{font-size:14px;color:var(--text2);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.pipeline-flow{display:flex;align-items:center;gap:0;margin:0 0 20px;flex-wrap:wrap;justify-content:center}
.pipe-node{background:var(--bg);border:1px solid var(--border);padding:10px 20px;font-size:12px;color:var(--text2);border-radius:var(--radius);font-family:var(--mono)}
.pipe-node.pipe-hl{border-color:var(--amber);color:var(--amber);background:rgba(229,165,75,.08)}
.pipe-node.pipe-hl2{border-color:var(--teal);color:var(--teal);background:rgba(77,201,212,.08)}
.pipe-arrow{color:var(--text3);font-size:18px;margin:0 6px}
.pipeline-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:10px;margin-bottom:20px}
.pipe-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;cursor:pointer;transition:var(--transition)}
.pipe-card:hover{border-color:var(--teal);background:rgba(77,201,212,.04)}
.pipe-card.expanded{border-color:var(--teal);background:rgba(77,201,212,.04)}
.pipe-card-tag{font-size:10px;color:var(--text3);display:inline-block;padding:2px 8px;border:1px solid var(--border);border-radius:10px;margin-bottom:8px}
.pipe-card-title{font-size:13px;font-weight:600;margin-bottom:4px;color:var(--text)}
.pipe-card-quote{font-size:12px;color:var(--teal);font-style:italic;margin-bottom:6px}
.pipe-card-body{font-size:11px;color:var(--text2);line-height:1.6;display:none;white-space:pre-line}
.pipe-card.expanded .pipe-card-body{display:block;margin-top:10px;padding-top:10px;border-top:1px solid var(--border)}
.pipeline-departments{border-top:1px solid var(--border);padding-top:16px;margin-top:8px}
.dept-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.dept-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:14px;text-align:center;transition:var(--transition)}
.dept-card:hover{background:var(--bg2)}
.dept-icon{font-size:20px;font-weight:200;margin-bottom:6px}
.dept-name{font-size:12px;font-weight:600;color:var(--text);margin-bottom:6px}
.dept-skills{font-size:10px;color:var(--text3);line-height:1.6}
/* Pipeline flows */
.pipeline-flows{margin-bottom:20px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;overflow-x:auto}
.pflow-label{font-size:10px;color:var(--text3);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:4px;margin-top:10px}
.pflow-label:first-child{margin-top:0}
.pflow{display:flex;align-items:center;gap:4px;margin-bottom:6px;flex-wrap:wrap;font-size:11px;font-family:var(--mono)}
.pf-src{padding:4px 10px;border:1px solid rgba(59,130,246,.3);border-radius:4px;color:var(--blue);background:rgba(59,130,246,.06)}
.pf-skill{padding:4px 10px;border:1px solid rgba(77,201,212,.4);border-radius:4px;color:var(--teal);background:rgba(77,201,212,.08);font-weight:600}
.pf-out{padding:4px 10px;border:1px solid rgba(229,165,75,.3);border-radius:4px;color:var(--amber);background:rgba(229,165,75,.06)}
.pf-a{color:var(--text3);font-size:14px;margin:0 2px}
/* Skills Dashboard */
.skills-dashboard{padding:16px 32px 24px;border-top:1px solid var(--border)}
.skills-dashboard h3{font-size:14px;color:var(--text2);margin-bottom:12px;display:flex;align-items:center;gap:8px}
.sd-controls{display:flex;gap:6px;margin-bottom:14px;flex-wrap:wrap}
.sd-btn{padding:5px 12px;border-radius:6px;font-size:11px;color:var(--text3);background:var(--bg);border:1px solid var(--border);cursor:pointer;transition:all .15s;font-family:var(--mono)}
.sd-btn:hover{border-color:var(--teal);color:var(--teal)}
.sd-btn.active{background:var(--teal-bg);border-color:var(--teal);color:var(--teal)}
.sd-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:6px}
.sd-chip{padding:8px 12px;background:var(--bg);border:1px solid var(--border);border-radius:6px;font-size:11px;cursor:pointer;transition:all .15s;font-family:var(--mono);display:flex;align-items:center;gap:8px}
.sd-chip:hover{border-color:var(--teal);background:rgba(77,201,212,.04)}
.sd-chip.selected{border-color:var(--teal);background:rgba(77,201,212,.08)}
.sd-chip .sd-name{color:var(--text);font-weight:500;flex:1}
.sd-chip .sd-cat{font-size:9px;padding:2px 6px;border-radius:3px;text-transform:uppercase;letter-spacing:.5px}
.sd-cat.ops{background:rgba(229,165,75,.1);color:var(--amber)}
.sd-cat.content{background:rgba(167,139,250,.1);color:var(--purple)}
.sd-cat.design{background:rgba(167,139,250,.1);color:#c084fc}
.sd-cat.crm{background:rgba(59,130,246,.1);color:var(--blue)}
.sd-cat.context{background:rgba(248,81,73,.1);color:var(--red)}
.sd-cat.personal{background:rgba(63,185,80,.1);color:var(--green)}
.sd-detail{margin-top:12px;background:var(--bg);border:1px solid var(--teal);border-radius:var(--radius);padding:16px;font-size:12px;color:var(--text2);line-height:1.7}
.sd-detail h4{font-size:14px;color:var(--teal);margin-bottom:6px;font-family:var(--mono)}
.sd-detail .sd-desc{margin-bottom:8px}
.sd-detail .sd-meta{font-size:10px;color:var(--text3);display:flex;gap:12px;flex-wrap:wrap}
/* Setup Guide */
.setup-guide{padding:16px 32px 24px;border-top:1px solid var(--border)}
.setup-guide h3{font-size:14px;color:var(--text2);margin-bottom:12px;display:flex;align-items:center;gap:8px}
.guide-phases{display:flex;flex-direction:column;gap:8px}
.guide-phase{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;cursor:pointer;transition:all .15s;border-left:3px solid var(--border)}
.guide-phase:hover{border-color:var(--border2)}
.guide-phase.expanded{border-left-color:var(--teal);background:rgba(77,201,212,.03)}
.guide-phase-header{display:flex;align-items:center;gap:12px}
.guide-phase-num{font-family:var(--mono);font-size:16px;font-weight:700;min-width:28px;color:var(--teal)}
.guide-phase-title{font-size:13px;font-weight:600;color:var(--text);flex:1}
.guide-phase-time{font-size:10px;color:var(--text3);font-family:var(--mono)}
.guide-phase-body{display:none;margin-top:12px;padding-top:12px;border-top:1px solid var(--border);font-size:12px;color:var(--text2);line-height:1.8;white-space:pre-line}
/* ── Node Graph ── */
.node-graph-section{padding:16px 32px 24px;border-top:1px solid var(--border)}
.node-graph-section h3{font-size:14px;color:var(--text2);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.node-graph-container{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);position:relative;overflow:hidden}
.node-graph-canvas{width:100%;height:420px;display:block}
.node-graph-legend{display:flex;gap:16px;padding:12px 16px;border-top:1px solid var(--border);flex-wrap:wrap}
.legend-item{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--text2)}
.legend-dot{width:10px;height:10px;border-radius:50%}
.node-graph-controls{position:absolute;top:12px;right:12px;display:flex;gap:6px}
.graph-btn{background:var(--bg2);border:1px solid var(--border);color:var(--text2);padding:4px 10px;border-radius:4px;cursor:pointer;font-family:var(--mono);font-size:11px;transition:var(--transition)}
.graph-btn:hover{border-color:var(--teal);color:var(--teal)}
.graph-btn.active{background:var(--teal-bg);border-color:var(--teal);color:var(--teal)}
/* ── Naming Convention Section ── */
.naming-section{padding:16px 32px 24px;border-top:1px solid var(--border)}
.naming-section h3{font-size:14px;color:var(--text2);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.naming-input-row{display:flex;gap:12px;align-items:flex-end;flex-wrap:wrap;margin-bottom:16px}
.naming-field{display:flex;flex-direction:column;gap:4px}
.naming-field label{font-size:10px;color:var(--text3);text-transform:uppercase;letter-spacing:1px}
.naming-field input,.naming-field select{background:var(--bg);border:1px solid var(--border);color:var(--text);padding:8px 12px;border-radius:6px;font-family:var(--mono);font-size:12px;transition:var(--transition);outline:none}
.naming-field input:focus,.naming-field select:focus{border-color:var(--teal);box-shadow:0 0 0 2px rgba(77,201,212,.15)}
.naming-field input{min-width:200px}
.naming-field select{min-width:140px;cursor:pointer}
.naming-output{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;font-size:14px;color:var(--teal);font-family:var(--mono);letter-spacing:.3px;min-height:48px;display:flex;align-items:center;gap:12px;transition:var(--transition)}
.naming-output .naming-result{flex:1}
.naming-output .naming-copy{background:var(--bg2);border:1px solid var(--border);color:var(--text2);padding:4px 10px;border-radius:4px;cursor:pointer;font-family:var(--mono);font-size:11px;transition:var(--transition);flex-shrink:0}
.naming-output .naming-copy:hover{border-color:var(--teal);color:var(--teal)}
.naming-examples{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:8px;margin-top:12px}
.naming-example{font-size:11px;color:var(--text2);padding:8px 12px;background:var(--bg);border:1px solid var(--border);border-radius:6px;cursor:pointer;transition:var(--transition)}
.naming-example:hover{border-color:var(--teal);color:var(--teal)}
.naming-links{display:flex;gap:12px;margin-top:16px;flex-wrap:wrap}
.naming-links a{font-size:11px;color:var(--teal);text-decoration:none;padding:6px 14px;border:1px solid var(--border);border-radius:20px;transition:var(--transition);display:flex;align-items:center;gap:6px}
.naming-links a:hover{border-color:var(--teal);background:var(--teal-bg)}
/* ── Deeplinks Section ── */
.deeplinks-section{padding:16px 32px 24px;border-top:1px solid var(--border)}
.deeplinks-section h3{font-size:14px;color:var(--text2);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.deeplinks-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:12px}
.deeplink-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;transition:var(--transition)}
.deeplink-card:hover{border-color:var(--teal);background:var(--teal-bg)}
.deeplink-card a{color:var(--teal);text-decoration:none;font-size:12px;font-weight:600;display:block;margin-bottom:6px}
.deeplink-card a:hover{text-decoration:underline}
.deeplink-card p{font-size:11px;color:var(--text2);line-height:1.5}
.deeplink-card .deeplink-url{font-size:10px;color:var(--text3);word-break:break-all;margin-top:6px;font-family:var(--mono)}
</style>
</head>
<body>
<div class="terminal-window">
<div class="terminal-bar">
<div class="terminal-dot r"></div>
<div class="terminal-dot y"></div>
<div class="terminal-dot g"></div>
<div class="terminal-title">pos-stack-explorer ~ Alex Povaliaev — AI Mindset Team Stack v4</div>
</div>
<div class="terminal-body">
<!-- Header -->
<div class="header">
<div class="header-top">
<div style="display:flex;align-items:center;gap:14px">
<img src="logo.png" alt="AI Mindset" style="width:32px;height:32px;border-radius:6px;opacity:.85">
<h1><span>></span> Personal Operating System <span>|</span> Stack Explorer</h1>
</div>
<div class="header-badge">
<div class="dot"></div>
<span>POS v4 · Team Stack Live</span>
</div>
</div>
<p class="header-sub">
Interactive explorer of a <strong>production POS</strong> with 40+ skills, 2 bots, 8 MCP servers, CTRL Dashboard & team-wide skill inheritance.<br><strong>CLAUDE.md = /etc/</strong> · <strong>Skills = executables</strong> · <strong>MCP = drivers</strong> · <strong>Bots = nervous system</strong>
</p>
</div>
<!-- Presets -->
<div class="presets">
<span class="presets-label">Preset</span>
<button class="preset-btn" data-preset="beginner" onclick="setPreset('beginner')">Beginner</button>
<button class="preset-btn" data-preset="intermediate" onclick="setPreset('intermediate')">Intermediate</button>
<button class="preset-btn active" data-preset="advanced" onclick="setPreset('advanced')">Advanced</button>
<button class="preset-btn" data-preset="team" onclick="setPreset('team')">Team Bridge</button>
</div>
<!-- Main -->
<div class="main">
<!-- Sidebar -->
<div class="sidebar" id="sidebar"></div>
<!-- Content -->
<div class="content" id="content">
<div style="display:flex;align-items:center;justify-content:center;height:300px;color:var(--text3);font-size:13px">
← Select a layer to explore
</div>
</div>
</div>
<!-- Skills Pipeline -->
<div class="pipeline-section" id="pipeline-section">
<h3><span style="color:var(--amber)">></span> Skills Pipeline — From Routine to Operating System</h3>
<div class="pipeline-flow">
<div class="pipe-node">Routine</div>
<div class="pipe-arrow">→</div>
<div class="pipe-node">Instruction</div>
<div class="pipe-arrow">→</div>
<div class="pipe-node pipe-hl">Skill</div>
<div class="pipe-arrow">→</div>
<div class="pipe-node">Pipeline</div>
<div class="pipe-arrow">→</div>
<div class="pipe-node pipe-hl2">POS</div>
</div>
<!-- Real pipeline flows -->
<div class="pipeline-flows">
<div class="pflow-label">Morning</div>
<div class="pflow"><span class="pf-src">Calendar</span><span class="pf-src">Linear</span><span class="pf-src">Journal</span><span class="pf-src">Memory</span><span class="pf-a">→</span><span class="pf-skill">/daily-focus</span><span class="pf-a">→</span><span class="pf-out">Focus + SVG</span><span class="pf-a">→</span><span class="pf-out">Telegram</span></div>
<div class="pflow-label">Planning</div>
<div class="pflow"><span class="pf-skill">/vox</span><span class="pf-a">→</span><span class="pf-src">MC Server</span><span class="pf-a">→</span><span class="pf-out">Priorities</span><span class="pf-a">→</span><span class="pf-skill">/AIM-pm</span><span class="pf-a">→</span><span class="pf-src">Linear MCP</span><span class="pf-a">→</span><span class="pf-out">Team sync</span></div>
<div class="pflow-label">Research</div>
<div class="pflow"><span class="pf-skill">/research</span><span class="pf-a">→</span><span class="pf-src">5× Exa agents</span><span class="pf-a">→</span><span class="pf-out">Research doc</span><span class="pf-a">→</span><span class="pf-skill">/infocompressor</span><span class="pf-a">→</span><span class="pf-out">Cheat sheet</span></div>
<div class="pflow-label">Context</div>
<div class="pflow"><span class="pf-skill">/eval</span><span class="pf-a">→</span><span class="pf-out">T/R/C</span><span class="pf-a">→</span><span class="pf-skill">/reflect</span><span class="pf-a">→</span><span class="pf-out">Improvements</span><span class="pf-a">→</span><span class="pf-skill">/context-compact</span><span class="pf-a">→</span><span class="pf-out">Handoff</span></div>
<div class="pflow-label">Generation</div>
<div class="pflow"><span class="pf-skill">/imagine</span><span class="pf-a">→</span><span class="pf-src">OpenRouter</span><span class="pf-a">→</span><span class="pf-out">PNG 2K</span><span class="pf-a">→</span><span class="pf-skill">/daily-metaphor</span><span class="pf-a">→</span><span class="pf-out">SVG</span><span class="pf-a">→</span><span class="pf-out">Telegram</span></div>
<div class="pflow-label">CRM</div>
<div class="pflow"><span class="pf-src">Krisp MCP</span><span class="pf-a">→</span><span class="pf-skill">/meeting-summary</span><span class="pf-a">→</span><span class="pf-out">Summary .md</span><span class="pf-a">→</span><span class="pf-skill">/AIM-crm</span><span class="pf-a">→</span><span class="pf-src">Notion MCP</span><span class="pf-a">→</span><span class="pf-out">Partner card</span></div>
<div class="pflow-label">Team Sync</div>
<div class="pflow"><span class="pf-skill">/AIM-weekly-sync</span><span class="pf-a">→</span><span class="pf-src">Linear</span><span class="pf-src">Calendar</span><span class="pf-src">Telegram</span><span class="pf-a">→</span><span class="pf-out">Sync doc</span><span class="pf-a">→</span><span class="pf-skill">/telegram</span><span class="pf-a">→</span><span class="pf-out">Team chat</span></div>
<div class="pflow-label">Bots</div>
<div class="pflow"><span class="pf-src">7 TG chats</span><span class="pf-a">→</span><span class="pf-skill">Pulse Bot</span><span class="pf-a">→</span><span class="pf-out">2h summary</span><span class="pf-a">→</span><span class="pf-out">AIM agi</span><span class="pf-a"> | </span><span class="pf-src">TG DM</span><span class="pf-a">→</span><span class="pf-skill">Claude Bot</span><span class="pf-a">→</span><span class="pf-out">Skill exec</span></div>
<div class="pflow-label">Dashboard</div>
<div class="pflow"><span class="pf-skill">CTRL Dashboard</span><span class="pf-a">→</span><span class="pf-src">Linear</span><span class="pf-src">Calendar</span><span class="pf-src">TG Bridge</span><span class="pf-a">→</span><span class="pf-skill">/vox</span><span class="pf-a">→</span><span class="pf-out">Day plan</span></div>
<div class="pflow-label">Reels</div>
<div class="pflow"><span class="pf-src">Raw video</span><span class="pf-a">→</span><span class="pf-skill">/reel-edit</span><span class="pf-a">→</span><span class="pf-out">Transcribe + cut</span><span class="pf-a">→</span><span class="pf-skill">/reel-block-edit</span><span class="pf-a">→</span><span class="pf-out">Timeline</span><span class="pf-a">→</span><span class="pf-out">MP4 + subtitles</span></div>
</div>
<div class="pipeline-grid" id="pipeline-grid"></div>
<div class="pipeline-departments">
<h4 style="font-size:12px;color:var(--text3);margin-bottom:12px;text-transform:uppercase;letter-spacing:1px">5 Departments — One Terminal</h4>
<div class="dept-grid">
<div class="dept-card" style="border-color:rgba(229,165,75,.3)">
<div class="dept-icon" style="color:var(--amber)">O</div>
<div class="dept-name">Ops <span style="font-size:9px;color:var(--text3)">(11)</span></div>
<div class="dept-skills">daily-focus · pos-morning · vox · calendar · linear-action · focus · Pulse Bot · Claude Bot · CTRL Dashboard · focus-ship-sprint · remind</div>
</div>
<div class="dept-card" style="border-color:rgba(167,139,250,.3)">
<div class="dept-icon" style="color:var(--purple)">C</div>
<div class="dept-name">Content <span style="font-size:9px;color:var(--text3)">(7)</span></div>
<div class="dept-skills">content-voice · reel-edit · reel-block-edit · research · infocompressor · intro · ambient-advisor</div>
</div>
<div class="dept-card" style="border-color:rgba(167,139,250,.3)">
<div class="dept-icon" style="color:var(--purple)">D</div>
<div class="dept-name">Design <span style="font-size:9px;color:var(--text3)">(12)</span></div>
<div class="dept-skills">imagine · AIM-imagine · AIM-cover-gen · AIM-carousel · AIM-deck-ainative · AIM-deck-style · AIM-og-covers · AIM-visual · visual-pipeline · style-bible · excalidraw · video-art</div>
</div>
<div class="dept-card" style="border-color:rgba(59,130,246,.3)">
<div class="dept-icon" style="color:var(--blue)">T</div>
<div class="dept-name">CRM/Team <span style="font-size:9px;color:var(--text3)">(16)</span></div>
<div class="dept-skills">AIM-crm · AIM-curator · AIM-lab · AIM-lab-announce · AIM-lab-closing · AIM-pm · AIM-weekly-sync · AIM-content-voice · AIM-bio · AIM-luma · AIM-space-new · AIM-utm · AIM-onboarding · AIM-sprint-monitor · telegram · meeting-summary</div>
</div>
<div class="dept-card" style="border-color:rgba(248,81,73,.3)">
<div class="dept-icon" style="color:var(--red)">X</div>
<div class="dept-name">Context <span style="font-size:9px;color:var(--text3)">(10)</span></div>
<div class="dept-skills">context-compact · eval · reflect · pos-audit · pos-dashboard-gen · pos-mission-control · pos-skill-factory · vault-cleanup · sessions · history</div>
</div>
</div>
</div>
<div style="text-align:center;margin-top:16px;font-size:12px;color:var(--text3)">
Each skill = one block. Together = <span style="color:var(--teal)">operating system</span>.
— <span style="color:var(--amber)">55+ skills · 8 MCP servers · 2 bots · CTRL dashboard</span>
</div>
</div>
<!-- Node Graph: Skills <-> MCP connections -->
<div class="node-graph-section" id="node-graph-section">
<h3><span style="color:var(--purple)">⋄</span> Skills ↔ MCP Connection Map</h3>
<div class="node-graph-container">
<div class="node-graph-controls">
<button class="graph-btn active" onclick="setGraphMode('all')">All</button>
<button class="graph-btn" onclick="setGraphMode('skills')">Skills only</button>
<button class="graph-btn" onclick="setGraphMode('mcp')">MCP only</button>
</div>
<canvas class="node-graph-canvas" id="nodeGraphCanvas"></canvas>
<div class="node-graph-legend">
<div class="legend-item"><div class="legend-dot" style="background:var(--amber)"></div> Skills</div>
<div class="legend-item"><div class="legend-dot" style="background:var(--purple)"></div> MCP Servers</div>
<div class="legend-item"><div class="legend-dot" style="background:var(--teal)"></div> Core (Claude Code)</div>
<div class="legend-item"><div class="legend-dot" style="background:var(--blue)"></div> Data (Vault/Memory)</div>
</div>
</div>
</div>
<!-- Naming Convention interactive -->
<div class="naming-section" id="naming-section">
<h3><span style="color:var(--amber)">∗</span> Naming Convention — Interactive Formatter</h3>
<div style="background:rgba(229,165,75,.05);border:1px solid rgba(229,165,75,.15);border-radius:var(--radius);padding:12px 16px;margin-bottom:14px;font-size:12px;color:var(--text2);line-height:1.7">
<strong style="color:var(--amber)">Without naming, agent is blind.</strong>
AI-agent searches vault by patterns: <code style="color:var(--teal);background:var(--bg);padding:1px 5px;border-radius:3px;font-size:11px">glob("*{research}*")</code>, <code style="color:var(--teal);background:var(--bg);padding:1px 5px;border-radius:3px;font-size:11px">grep("{startup}")</code>.
The name IS the API. → <a href="https://ai-mindset-org.github.io/ainative-lab/naming.html" target="_blank" style="color:var(--teal);text-decoration:none">Full guide with 14 sections</a>
</div>
<div class="naming-input-row">
<div class="naming-field">
<label>Project</label>
<select id="naming-project" onchange="updateNaming()">
<option value="{AIM}">{AIM}</option>
<option value="{personal}">{personal}</option>
<option value="{CybOS}">{CybOS}</option>
<option value="{sprint}">{sprint}</option>
<option value="{ai-native}">{ai-native}</option>
</select>
</div>
<div class="naming-field">
<label>Type</label>
<select id="naming-type" onchange="updateNaming()">
<option value="{research}">{research}</option>
<option value="{analysis}">{analysis}</option>
<option value="{rule}">{rule}</option>
<option value="{prd}">{prd}</option>
<option value="{guide}">{guide}</option>
<option value="{note}">{note}</option>
<option value="{meeting}">{meeting}</option>
<option value="{transcript}">{transcript}</option>
<option value="{message}">{message}</option>
<option value="{overview}">{overview}</option>
<option value="{draft}">{draft}</option>
<option value="{skill}">{skill}</option>
<option value="{tool}">{tool}</option>
<option value="{prompt}">{prompt}</option>
</select>
</div>
<div class="naming-field">
<label>Description</label>
<input type="text" id="naming-desc" placeholder="type your file description..." oninput="updateNaming()">
</div>
</div>
<div class="naming-output" id="naming-output">
<span class="naming-result" id="naming-result">{AIM} {research} your description – 2026-03-25.md</span>
<button class="naming-copy" onclick="copyNaming()">copy</button>
</div>
<div class="naming-examples">
<div class="naming-example" onclick="fillNaming('{AIM}','{analysis}','AI-Native Sprint Audience')">{AIM} {analysis} AI-Native Sprint Audience – 2026-03-25.md</div>
<div class="naming-example" onclick="fillNaming('{personal}','{note}','morning reflection')">{personal} {note} morning reflection – 2026-03-25.md</div>
<div class="naming-example" onclick="fillNaming('{AIM}','{rule}','Communication Style')">{AIM} {rule} Communication Style – 2026-03-25.md</div>
<div class="naming-example" onclick="fillNaming('{sprint}','{meeting}','POS Setup Workshop')">{sprint} {meeting} POS Setup Workshop – 2026-03-25.md</div>
</div>
<div class="naming-links">
<a href="https://ai-mindset-org.github.io/ainative-lab/naming.html" target="_blank">↗ Naming Convention Tool (pos-pipelines)</a>
<a href="https://keyboard.aimindset.org" target="_blank">↗ keyboard.aimindset.org</a>
<a href="https://ai-mindset-org.github.io/ainative-lab/" target="_blank">↗ AI-Native Lab Hub</a>
</div>
</div>
<!-- All Skills Dashboard -->
<div class="skills-dashboard" id="skills-dashboard">
<h3><span style="color:var(--teal)">≡</span> All Skills — 50+ Commands</h3>
<div class="sd-controls">
<button class="sd-btn active" onclick="filterSkills('all')">All</button>
<button class="sd-btn" onclick="filterSkills('ops')">Ops</button>
<button class="sd-btn" onclick="filterSkills('content')">Content</button>
<button class="sd-btn" onclick="filterSkills('design')">Design</button>
<button class="sd-btn" onclick="filterSkills('crm')">CRM/Team</button>
<button class="sd-btn" onclick="filterSkills('context')">Context</button>
<button class="sd-btn" onclick="filterSkills('personal')">Personal</button>
</div>
<div class="sd-grid" id="sd-grid"></div>
<div class="sd-detail" id="sd-detail" style="display:none"></div>
</div>
<!-- POS Setup Guide -->
<div class="setup-guide" id="setup-guide">
<h3><span style="color:var(--green)">>_</span> POS Setup — Architecture Guide</h3>
<div class="guide-intro" style="font-size:12px;color:var(--text2);margin-bottom:16px;line-height:1.7">
From zero to working Personal Operating System. Each phase builds on the previous one.<br>
<strong style="color:var(--teal)">Principle:</strong> don't add complexity until you feel the need.
</div>
<div class="guide-phases" id="guide-phases"></div>
</div>
<!-- Concepts (original section) -->
<div class="concepts">
<h3><span style="color:var(--amber)">#</span> Core Concepts → POS Mapping</h3>
<div class="concepts-grid" id="concepts-grid"></div>
</div>
<!-- Prompt Output -->
<div class="prompt-section">
<h3><span style="color:var(--teal)">>_</span> Your Starter Prompt</h3>
<div class="prompt-output" id="prompt-output"></div>
</div>
<!-- Deeplinks Section -->
<div class="deeplinks-section" id="deeplinks-section">
<h3><span style="color:var(--blue)">§</span> Deeplinks — Presentation & Resources</h3>
<div class="deeplinks-grid" id="deeplinks-grid">
<div class="deeplink-card">
<a href="https://ai-mindset-org.github.io/team-stack-explorer/" target="_blank">Team Stack Explorer</a>
<p>Interactive team infrastructure map: skills, bots, dashboard, symlink architecture, team access matrix.</p>
<div class="deeplink-url">ai-mindset-org.github.io/team-stack-explorer/</div>
</div>
<div class="deeplink-card">
<a href="https://ai-mindset-org.github.io/ainative-deck/pos-setup.html" target="_blank">POS Setup Deck</a>
<p>Presentation slides for the POS Setup workshop. Deeplink to specific slides with #N anchors.</p>
<div class="deeplink-url">ai-mindset-org.github.io/ainative-deck/pos-setup.html</div>
</div>
<div class="deeplink-card">
<a href="#pipeline-section">Skills Pipeline</a>
<p>Routine → Instruction → Skill → Pipeline → POS. Five departments from one terminal.</p>
<div class="deeplink-url">#pipeline-section</div>
</div>
<div class="deeplink-card">
<a href="#node-graph-section">Skills ↔ MCP Graph</a>
<p>Interactive node graph showing how skills connect to MCP servers and data sources.</p>
<div class="deeplink-url">#node-graph-section</div>
</div>
<div class="deeplink-card">
<a href="#naming-section">Naming Convention</a>
<p>Interactive file naming formatter. Type a description, get a properly formatted filename.</p>
<div class="deeplink-url">#naming-section</div>
</div>
<div class="deeplink-card">
<a href="#skills-dashboard">All Skills (50+)</a>
<p>Filterable dashboard of all 50+ skills organized by department. Click any skill for details.</p>
<div class="deeplink-url">#skills-dashboard</div>
</div>
<div class="deeplink-card">
<a href="#setup-guide">POS Setup Guide</a>
<p>7-phase architecture guide: from input layer to team OS. Expandable steps with commands.</p>
<div class="deeplink-url">#setup-guide</div>
</div>
<div class="deeplink-card">
<a href="https://keyboard.aimindset.org" target="_blank">keyboard.aimindset.org</a>
<p>AI keyboard shortcuts and input optimization. Reduce friction to zero for faster experimentation.</p>
<div class="deeplink-url">keyboard.aimindset.org</div>
</div>
<div class="deeplink-card">
<a href="https://ai-mindset-org.github.io/ainative-lab/naming.html" target="_blank">Naming Convention (ainative-lab)</a>
<p>14-section guide: interactive builder, vault structure, downloadable .md template for participants.</p>
<div class="deeplink-url">ai-mindset-org.github.io/ainative-lab/naming.html</div>
</div>
<div class="deeplink-card">
<a href="https://ai-mindset-org.github.io/ainative-lab/" target="_blank">AI-Native Lab Hub</a>
<p>Central hub: naming guide, file builder, stack explorer (soon), CLAUDE.md generator (planned).</p>
<div class="deeplink-url">ai-mindset-org.github.io/ainative-lab/</div>
</div>
<div class="deeplink-card">
<a href="https://wisprflow.com" target="_blank">WISPR Flow</a>
<p>Voice-to-text dictation for Mac. Works in any app. Input layer of POS.</p>
<div class="deeplink-url">wisprflow.com</div>
</div>
<div class="deeplink-card">
<a href="https://ai-mindset-org.github.io/ainative-deck/pos-setup.html#1" target="_blank">Slide #1 — Intro</a>
<p>Opening slide with narrative bridge and context.</p>
<div class="deeplink-url">pos-setup.html#1</div>
</div>
<div class="deeplink-card">
<a href="https://ai-mindset-org.github.io/ainative-deck/pos-setup.html#5" target="_blank">Slide #5 — Claude Code Setup</a>
<p>Installation steps, first skill, CLAUDE.md creation.</p>
<div class="deeplink-url">pos-setup.html#5</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="footer-left">pos-stack-explorer v4.0 · 2026-03-25 · AI Mindset Team Stack</div>
<div class="footer-right">
<div class="footer-stat">layers: <span class="val" id="f-layers">6</span></div>
<div class="footer-stat">components: <span class="val" id="f-components">0</span></div>
<div class="footer-stat">preset: <span class="val" id="f-preset">advanced</span></div>
</div>
</div>
</div>
</div>
<script>
// ─── DATA ───────────────────────────────────────────────────────────────────
const LAYERS = [
{
id: 'infra',
icon: '\u2393',
label: 'Infrastructure',
color: 'infra',
desc: 'The foundation: model, runtime, terminal environment.',
presets: ['beginner','intermediate','advanced','team'],
components: [
{ title: 'Claude Code', desc: 'CLI agent runtime. npm install, universal harness.', badge: 'runtime', color: 'green' },
{ title: 'CoWork', desc: 'Visual UI for non-engineers. Same skills, no terminal needed.', badge: 'runtime', color: 'blue' },
{ title: 'Opus 4.6', desc: '1M context window. Holds entire codebase + vault context.', badge: 'model', color: 'teal' },
{ title: 'WISPR Flow', desc: 'Voice-to-text in any field. 80% of messages dictated.', badge: 'input', color: 'amber' },
{ title: 'Krisp', desc: 'Call transcription + action items + MCP server.', badge: 'input', color: 'purple' },
{ title: 'iTerm2 + cmux', desc: 'Terminal multiplexer. Multiple agents in split panes.', badge: 'terminal', color: 'text3' },
],
diagram: {
title: 'Runtime Stack',
nodes: [
{ text: 'Terminal (iTerm2)', hl: false },
{ text: '\u2192' , arrow: true },
{ text: 'Claude Code CLI', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'Opus 4.6 (1M ctx)', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'Your files', hl: false },
]
},
example: {
file: '~/.zshrc',
body: [
{ text: '# Three runtimes \u2014 one stack\n', cls: 'comment' },
{ text: 'Claude Code \u2192 terminal, full control\n', cls: 'hl' },
{ text: 'CoWork \u2192 visual UI, business users\n', cls: 'hl-blue' },
{ text: 'Codex \u2192 engineers only, code-focused\n', cls: 'hl-purple' },
{ text: '\n# Input layer\n', cls: 'comment' },
{ text: 'WISPR Flow \u2192 voice dictation everywhere\n', cls: 'hl-amber' },
{ text: 'Krisp MCP \u2192 call transcripts + actions\n', cls: 'hl-amber' },
{ text: 'Raycast \u2192 Cmd+Space \u2192 zero friction\n', cls: 'hl-green' },
]
}
},
{
id: 'data',
icon: '\u25A6',
label: 'Data & Context',
color: 'data',
desc: 'Persistent memory layer: vault, rules, naming conventions.',
presets: ['beginner','intermediate','advanced','team'],
components: [
{ title: 'Obsidian Vault', desc: '15,000+ notes. Single source of truth for everything.', badge: '15K+ notes', color: 'blue' },
{ title: 'CLAUDE.md', desc: 'Project-level instructions. Claude reads on every session.', badge: 'critical', color: 'red' },
{ title: 'memory/', desc: 'Auto-memory across sessions. Patterns, learnings, state.', badge: 'persistent', color: 'green' },
{ title: 'Naming Convention', desc: '{project} {type} desc \u2013 YYYY-MM-DD.md', badge: 'standard', color: 'amber' },
{ title: 'AGENTS.md', desc: 'Index file for AI agents navigating the vault.', badge: 'index', color: 'purple' },
{ title: 'Episodic Memory', desc: 'MCP plugin. Cross-session search over past interactions.', badge: 'mcp', color: 'teal' },
],
diagram: {
title: 'Context Hierarchy',
nodes: [
{ text: '~/.claude/CLAUDE.md', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'project/CLAUDE.md', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'memory/', hl: false },
{ text: '+', arrow: true },
{ text: 'episodic-memory', hl: false },
{ text: '\u2192', arrow: true },
{ text: '\u2728 Full context', hl: true },
]
},
example: {
file: 'CLAUDE.md (excerpt)',
body: [
{ text: '# Naming Convention\n', cls: 'hl' },
{ text: '{project} {type} description \u2013 {YYYY-MM-DD}.md\n\n', cls: 'hl-amber' },
{ text: '# Examples:\n', cls: 'comment' },
{ text: '{AIM} {research} BOS Speaker Analysis \u2013 2026-03-20.md\n', cls: '' },
{ text: '{AIM} {rule} Communication Style \u2013 2026-01-15.md\n', cls: '' },
{ text: '{AIM} {prd} Linear Awareness Layer \u2013 2026-02-19.md\n\n', cls: '' },
{ text: '# Date ALWAYS at the end. No interface suffix.\n', cls: 'comment' },
{ text: '# \u26a0 NEVER: "... \u2013 2026-03-20 \u2013 Claude Code.md"\n', cls: 'comment' },
]
}
},
{
id: 'orch',
icon: '\u2725',
label: 'Orchestration',
color: 'orch',
desc: 'Skills system, sub-agents, MCP servers, hooks.',
presets: ['intermediate','advanced','team'],
components: [
{ title: 'Skills System', desc: '50+ slash commands. /daily-focus, /research, /eval...', badge: '50+ skills', color: 'purple' },
{ title: 'Sub-agents', desc: 'Background tasks: haiku for research, sonnet for analysis.', badge: 'parallel', color: 'teal' },
{ title: 'MCP: Calendar', desc: 'Google Calendar read/write. Daily schedule awareness.', badge: 'mcp', color: 'green' },
{ title: 'MCP: Telegram', desc: 'Send/read messages. Channel rules enforced.', badge: 'mcp', color: 'blue' },
{ title: 'MCP: Linear', desc: 'Task management. Ambient awareness of current sprint.', badge: 'mcp', color: 'amber' },
{ title: 'MCP: Notion', desc: 'External knowledge base and shared docs.', badge: 'mcp', color: 'text3' },
{ title: 'MCP: Krisp', desc: 'Meeting transcripts and action items.', badge: 'mcp', color: 'purple' },
{ title: 'MCP: Playwright', desc: 'Browser automation, screenshots, testing.', badge: 'mcp', color: 'red' },
{ title: 'MCP: Filesystem', desc: 'Safe file operations across allowed directories.', badge: 'mcp', color: 'green' },
{ title: 'Hooks', desc: 'Pre/post processing. Validation before commit.', badge: 'system', color: 'teal' },
],
diagram: {
title: 'MCP Architecture',
nodes: [
{ text: 'Claude Code', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'MCP Protocol', hl: false },
{ text: '\u2192', arrow: true },
{ text: 'Calendar | Telegram | Linear | Notion | Krisp | Playwright', hl: true },
]
},
example: {
file: 'skills/ directory',
body: [
{ text: '~/.claude/skills/\n', cls: 'hl' },
{ text: '\u251c\u2500\u2500 daily-focus.md ', cls: '' }, { text: '# morning routine\n', cls: 'comment' },
{ text: '\u251c\u2500\u2500 calendar.md ', cls: '' }, { text: '# schedule awareness\n', cls: 'comment' },
{ text: '\u251c\u2500\u2500 infocompressor.md ', cls: '' }, { text: '# zero data loss compression\n', cls: 'comment' },
{ text: '\u251c\u2500\u2500 context-compact.md ', cls: '' }, { text: '# handoff at 70%+ context\n', cls: 'comment' },
{ text: '\u251c\u2500\u2500 eval.md ', cls: '' }, { text: '# binary T/R/C self-eval\n', cls: 'comment' },
{ text: '\u251c\u2500\u2500 linear-action.md ', cls: '' }, { text: '# update/close/comment tasks\n', cls: 'comment' },
{ text: '\u251c\u2500\u2500 art.md ', cls: '' }, { text: '# GPU visual art pipelines\n', cls: 'comment' },
{ text: '\u2514\u2500\u2500 AIM-*.md ', cls: 'hl-purple' }, { text: '# team skills (symlinked)\n', cls: 'comment' },
]
}
},
{
id: 'skills',
icon: '\u2318',
label: 'Skills & Workflows',
color: 'skills',
desc: 'Daily routines, research pipelines, content creation.',
presets: ['intermediate','advanced','team'],
components: [
// OPS (8)
{ title: '/daily-focus', desc: 'Morning focus + SVG metaphor \u2192 Telegram #focus.', badge: 'ops', color: 'amber' },
{ title: '/pos-morning', desc: 'Full morning stack: calendar + tasks + sessions + vault.', badge: 'ops', color: 'amber' },
{ title: '/vox', desc: 'Terminal day advisor. Full context \u2192 actionable priorities.', badge: 'ops', color: 'amber' },
{ title: '/calendar', desc: 'Google Calendar events. Schedule-aware decisions.', badge: 'ops', color: 'green' },
{ title: '/linear-action', desc: 'Update, close, comment, reassign Linear tasks from terminal.', badge: 'ops', color: 'blue' },
{ title: '/focus', desc: 'Focus session coaching with Focus Ship integration.', badge: 'ops', color: 'green' },
{ title: '/focus-ship-sprint', desc: 'Parallel work lanes via tmux. Solo or agent team.', badge: 'ops', color: 'green' },
{ title: '/remind', desc: 'Defer current session. Create reminder for continuation.', badge: 'ops', color: 'teal' },
// CONTENT (7)
{ title: '/content-voice', desc: '5 tones: partner, public, internal, gonzo, content.', badge: 'content', color: 'purple' },
{ title: '/reel-edit', desc: 'Instagram Reels: transcribe, cut, overlay, subtitles, audio.', badge: 'content', color: 'purple' },
{ title: '/reel-block-edit', desc: 'Visual block editor for reels. Timeline, segment swap.', badge: 'content', color: 'purple' },
{ title: '/research', desc: 'Deep parallel research via 5 Exa sub-agents. 6 presets.', badge: 'content', color: 'blue' },
{ title: '/infocompressor', desc: 'Compress text with 100% info preservation. Zero data loss.', badge: 'content', color: 'teal' },
{ title: '/intro', desc: 'Intro messages for Telegram chats. Adaptive format.', badge: 'content', color: 'teal' },
{ title: '/ambient-advisor', desc: 'Background Exa research on session topic. Auto-trigger.', badge: 'content', color: 'green' },
// DESIGN (7)
{ title: '/imagine', desc: 'Image gen via OpenRouter (Nano Banana, GPT-5, Flux, Seedream).', badge: 'design', color: 'purple' },
{ title: '/AIM-imagine', desc: 'Brand images in Analogue Constructivism style.', badge: 'design', color: 'purple' },
{ title: '/AIM-cover-gen', desc: 'Animated video covers for Zoom, waiting rooms.', badge: 'design', color: 'purple' },
{ title: '/visual-pipeline', desc: 'Full creative pipe: refs \u2192 DNA \u2192 Design Code \u2192 artifacts.', badge: 'design', color: 'purple' },
{ title: '/style-bible', desc: 'Visual taste analysis. Image \u2192 aesthetic DNA \u2192 Style Bible.', badge: 'design', color: 'amber' },
{ title: '/excalidraw', desc: 'Generate Excalidraw diagrams, save to Obsidian vault.', badge: 'design', color: 'teal' },
{ title: '/video-art', desc: 'GPU shaders, tracking, projections. Idea \u2192 art object.', badge: 'design', color: 'red' },
// CRM & TEAM (8)
{ title: '/AIM-crm', desc: 'Partners, offers, dashboard. Full CRM in terminal.', badge: 'crm', color: 'amber' },
{ title: '/AIM-curator', desc: 'Curator outreach, onboarding, dashboard tracking.', badge: 'crm', color: 'amber' },
{ title: '/AIM-lab', desc: 'Lab hub: chat monitor, participant replies, digest, feedback.', badge: 'team', color: 'blue' },
{ title: '/AIM-pm', desc: 'Team process manager: review, sync, summary, track.', badge: 'team', color: 'blue' },
{ title: '/AIM-weekly-sync', desc: 'Comprehensive syncs: weekly, product, marketing, personal.', badge: 'team', color: 'blue' },
{ title: '/AIM-content-voice', desc: 'Channel posts, announcements, gonzo series, Substack.', badge: 'team', color: 'purple' },
{ title: '/telegram', desc: 'Send messages, photos, files via MTProto (Telethon).', badge: 'crm', color: 'green' },
{ title: '/meeting-summary', desc: 'Transcript \u2192 enriched summary + action items \u2192 Telegram.', badge: 'crm', color: 'green' },
// CONTEXT & SYSTEM (10)
{ title: '/context-compact', desc: 'Handoff generation when context > 70%. Saves progress.', badge: 'context', color: 'red' },
{ title: '/eval', desc: 'Self-evaluation: binary T/R/C rubric. Every response.', badge: 'context', color: 'teal' },
{ title: '/reflect', desc: 'Periodic analysis of accumulated evals \u2192 CLAUDE.md rules.', badge: 'context', color: 'teal' },
{ title: '/pos-audit', desc: 'Scan POS infra: CLAUDE.md, skills, MCP, memory (0-12 score).', badge: 'context', color: 'amber' },
{ title: '/pos-dashboard-gen', desc: 'Generate personal HTML dashboard from POS context.', badge: 'context', color: 'green' },
{ title: '/pos-mission-control', desc: 'Unified control: audit, morning, dashboard, handoff.', badge: 'context', color: 'green' },
{ title: '/pos-skill-factory', desc: 'Create production skills from description. 4 templates.', badge: 'context', color: 'blue' },
{ title: '/vault-cleanup', desc: 'Scan Obsidian for bloat. Move junk to quarantine.', badge: 'context', color: 'red' },
{ title: '/sessions', desc: 'Recent Claude Code sessions with descriptions.', badge: 'context', color: 'teal' },
{ title: '/history', desc: 'Full session history from ~/.claude/projects/.', badge: 'context', color: 'teal' },
// PERSONAL (5)
{ title: '/daily-metaphor', desc: 'Visual SVG metaphor based on daily focus.', badge: 'personal', color: 'amber' },
{ title: '/daily-story', desc: 'Visual day narrative with animated SVG metaphors.', badge: 'personal', color: 'amber' },
{ title: '/undone', desc: 'Analyze undone items from messages, calendar, time windows.', badge: 'personal', color: 'red' },
{ title: '/ceo-council', desc: 'Parallel Opus sub-agents as C-level expert panel.', badge: 'personal', color: 'purple' },
{ title: '/os-mind', desc: '1-min attention practice using real tasks as prompts.', badge: 'personal', color: 'green' },
],
diagram: {
title: '50+ Skills \u2192 5 Departments',
nodes: [
{ text: 'OPS (8)', hl: true },
{ text: '+', arrow: true },
{ text: 'Content (7)', hl: false },
{ text: '+', arrow: true },
{ text: 'Design (7)', hl: false },
{ text: '+', arrow: true },
{ text: 'CRM/Team (8)', hl: false },
{ text: '+', arrow: true },
{ text: 'Context (10)', hl: false },
{ text: '+', arrow: true },
{ text: 'Personal (5)', hl: true },
]
},
example: {
file: '/daily-focus output',
body: [
{ text: '\u25c7 ctx: 12K | 188K left | 6% | \u25cf\n', cls: 'hl' },
{ text: '\u25ab eval: T:\u2713 R:\u2713 C:\u25cb\n', cls: 'hl-green' },
{ text: '\u25ab linear: ', cls: 'hl-blue' }, { text: 'AIM-2054', cls: 'hl-amber' }, { text: ' \u00b7 BOS speakers \u00b7 \u25d0 IP\n\n', cls: '' },
{ text: '## Today\u2019s Focus\n', cls: 'hl' },
{ text: '1. AI-Native Sprint L02 preparation\n', cls: '' },
{ text: '2. POS stack explorer \u2013 interactive demo\n', cls: '' },
{ text: '3. Review BOS speaker pipeline\n\n', cls: '' },
{ text: '\u25b6 3 meetings today, first at 10:00\n', cls: 'hl-amber' },
]
}
},
{
id: 'people',
icon: '\u2661',
label: 'People & Org',
color: 'people',
desc: 'Team coordination: shared vault, roles, communication.',
presets: ['advanced','team'],
components: [
{ title: 'Team Vault', desc: 'Obsidian Sync. ai-mindset-2026/ shared folder.', badge: 'shared', color: 'purple' },
{ title: 'Linear Integration', desc: 'Task tracking. Ambient awareness in every session.', badge: 'pm', color: 'blue' },
{ title: 'Role Cards', desc: '{role} files for each team member. Skills, zones, contacts.', badge: '8 people', color: 'amber' },
{ title: 'Communication Rules', desc: 'AI Mindset style: lowercase, en dash, no corporate.', badge: 'style', color: 'teal' },
{ title: 'Channel Rules', desc: 'Forbidden channels list. Protected public channels.', badge: 'safety', color: 'red' },
{ title: 'AGENTS.md', desc: 'Team vault index. Structure map for AI agents.', badge: 'index', color: 'green' },
],
diagram: {
title: 'Team Data Flow',
nodes: [
{ text: 'Obsidian Sync', hl: false },
{ text: '\u2192', arrow: true },
{ text: 'Team Vault', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'AGENTS.md + Role Cards', hl: false },
{ text: '\u2192', arrow: true },
{ text: 'Context-aware delegation', hl: true },
]
},
example: {
file: 'Org/HR/roles/{role} example',
body: [
{ text: '---\n', cls: 'hl' },
{ text: 'name: Irina Nazarova\n', cls: '' },
{ text: 'role: Operations Lead\n', cls: 'hl-amber' },
{ text: 'zones: [operations, finance, compliance]\n', cls: '' },
{ text: 'telegram: @irina_naz\n', cls: '' },
{ text: '---\n\n', cls: 'hl' },
{ text: '## Responsibilities\n', cls: 'hl-blue' },
{ text: '- Sprint operations and daily standups\n', cls: '' },
{ text: '- Financial tracking and invoicing\n', cls: '' },
{ text: '- Participant support pipeline\n\n', cls: '' },
{ text: '## Cross-check Rule\n', cls: 'hl-blue' },
{ text: '# \u26a0 Flag if assigned: tech tasks, content creation\n', cls: 'comment' },
]
}
},
{
id: 'gov',
icon: '\u2726',
label: 'Governance',
color: 'gov',
desc: 'Quality control, context management, self-improvement.',
presets: ['advanced','team'],
components: [
{ title: 'Context Protocol', desc: '\u25cf OK / \u25d0 WARN / \u25cb CRIT. Auto-handoff at 70%.', badge: 'protocol', color: 'teal' },
{ title: 'Evals System', desc: 'Binary T/R/C in every response. No scales, pass/fail.', badge: 'quality', color: 'green' },
{ title: 'Memory System', desc: 'Auto-memory + episodic. Patterns persist across sessions.', badge: 'persistent', color: 'blue' },
{ title: 'Linear Awareness', desc: 'Ambient layer. Detects related tasks, suggests actions.', badge: 'ambient', color: 'amber' },
{ title: 'OpenSpec', desc: 'Spec-first development. Proposal \u2192 design \u2192 tasks \u2192 code.', badge: 'dev', color: 'purple' },
{ title: 'Rubric File', desc: '~/.claude/evals/rubric.md. Criteria for T, R, C domains.', badge: 'file', color: 'text3' },
],
diagram: {
title: 'Quality Loop',
nodes: [
{ text: 'Response', hl: false },
{ text: '\u2192', arrow: true },
{ text: 'Auto-Eval (T/R/C)', hl: true },
{ text: '\u2192', arrow: true },
{ text: 'Memory update', hl: false },
{ text: '\u2192', arrow: true },
{ text: 'Next response improved', hl: true },
]
},
example: {
file: 'Context Management in action',
body: [
{ text: '# Context states:\n\n', cls: 'comment' },
{ text: '\u25cf < 50% OK ', cls: 'hl-green' }, { text: 'Full functionality\n', cls: '' },
{ text: '\u25d0 50-70% WARN ', cls: 'hl-amber' }, { text: 'Compact mode, save context\n', cls: '' },
{ text: '\u25cb > 70% CRIT ', cls: 'hl' }, { text: 'Handoff only, no new tasks\n\n', cls: '' },
{ text: '# Footer in every response:\n', cls: 'comment' },
{ text: '\u25c7 ctx: 96K | 104K left | 48% | \u25cf\n', cls: 'hl' },
{ text: '\u25ab eval: T:\u2713 R:\u2713 C:\u2713\n', cls: 'hl-green' },
{ text: '\u25ab linear: AIM-2054 \u00b7 BOS speakers \u00b7 \u25d0 IP\n', cls: 'hl-blue' },
]
}
}
];
const CONCEPTS = [
{
quote: '"Agent = LLM + Harness"',
title: 'Harness Components in POS',
mapping: 'LLM = Opus 4.6 (1M context)\nHarness = Claude Code CLI + CLAUDE.md + skills/ + memory/ + MCP servers\n\nThe harness is what makes the difference. Same model, completely different capability when wrapped in 50+ skills, persistent memory, and 7 MCP integrations.\n\nWithout harness: smart chatbot.\nWith harness: autonomous operating system.'
},
{
quote: '"Moat = orchestrator, not the model"',
title: 'Your Data is the Moat',
mapping: '15,000 notes in Obsidian = your unique dataset\nCLAUDE.md = your operating manual\nmemory/ = learned patterns specific to you\nNaming convention = structured retrieval\n\nAnyone can access Opus 4.6.\nNo one else has YOUR vault + YOUR rules + YOUR memory.\n\nThe moat is the orchestration layer that makes the generic model specifically yours.'
},
{
quote: '"Dopamine trap \u2013 3-hour prompt spirals"',
title: 'POS Prevents Prompt Spirals',
mapping: 'Context Protocol: auto-handoff at 70% usage\n\u2192 Forces session boundaries\n\nSkills: /daily-focus structures the day\n\u2192 Prevents reactive mode\n\nEvals: binary T/R/C in every response\n\u2192 Continuous quality feedback\n\nLinear Awareness: ambient task tracking\n\u2192 Stay connected to actual priorities\n\nResult: agent works FOR your goals, not your curiosity.'
},
{
quote: '"Executor \u2192 Architect"',
title: 'Skill = Specification, Not Execution',
mapping: 'Old way: you type prompts, AI executes, you fix\nPOS way: you write skills (specifications), AI follows\n\nSkill file = reusable specification:\n- What to do (steps)\n- What rules to follow\n- What output format to use\n- What tools to invoke\n\nYou design the system once.\nThe system executes every time.\nYou are the architect, not the typist.'
}
];
// Pipeline concepts data
const PIPELINE_CONCEPTS = [
{
tag: 'unix analogy',
title: 'CLAUDE.md = /etc/ \u2022 Skills = executables \u2022 MCP = drivers',
quote: 'Your POS is an operating system. Treat it like one.',
body: 'CLAUDE.md = /etc/ (system configuration)\nskills/ = /usr/bin/ (executable programs)\nMCP servers = device drivers (hardware access)\nmemory/ = /var/log/ (persistent state)\n\nYou don\u2019t rewrite /etc/ every boot.\nYou write it once, it runs every session.'
},
{
tag: 'meta-skills',
title: '/morning \u2192 3 skills in 1 command',
quote: 'Meta-skill calls other skills. One command replaces 3 apps and 15 minutes.',
body: '/morning (meta-skill with 3 steps):\n [1/3] /calendar \u2192 events from Google Calendar\n [2/3] /linear-action \u2192 In Progress tasks\n [3/3] /daily-focus \u2192 focus + visual metaphor \u2192 Telegram\n\n\u25b6 After 2 months you\u2019ll have 50 skills.\nSolution: meta-skills that chain them.\n\nSome skills deliberately slow down:\n /daily-focus asks: "what\u2019s your energy level?"\n /style-bible asks: "why did you like this?"'
},
{
tag: '6T framework',
title: 'What to delegate: 6T Model',
quote: 'Tiny, Tedious, Time-consuming, Teachable, Terrible at, Time-sensitive.',
body: '1. Tiny \u2014 formatting, renaming, cleanup\n2. Tedious \u2014 sorting, classification, tagging\n3. Time-consuming \u2014 research, summaries, analysis\n4. Teachable \u2014 templates, recurring processes\n5. Terrible at \u2014 design, structure, code (for you)\n6. Time-sensitive \u2014 deadlines, follow-ups\n\nKey insight: work + work about work (meta-work).\nAutomate the meta-work first.'
},
{
tag: 'MCP vs Skills',
title: 'MCP = Resources \u2022 Skill = Processes',
quote: 'Skills are markdown. Portable across all agents.',
body: 'MCP = what agent CAN do (Calendar, Linear, Telegram)\nSkill = HOW agent should work (steps, rules, output)\n\nSkills are portable:\n Claude Code \u2194 Codex\n Cursor \u2194 ChatGPT\n\nGitHub = shared skill bank.\nYou create \u2192 upload \u2192 get others\u2019 skills.'
},
{
tag: 'autonomy L0\u2013L3',
title: 'Autonomy Map: where judgment is needed',
quote: 'Automate everything else.',
body: 'L0: Human does, AI suggests (negotiations, budget)\nL1: AI drafts, human approves (emails, code review)\nL2: AI executes, human monitors (outreach, coding)\nL3: Autopilot, escalation only (CI/CD, monitoring)\n\nExercise: pick 3 daily processes.\nMap current level. Set target level for this week.'