-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmay-8-2026.html
More file actions
1391 lines (1129 loc) · 75.6 KB
/
Copy pathmay-8-2026.html
File metadata and controls
1391 lines (1129 loc) · 75.6 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">
<!-- SEO Meta Tags -->
<title>AI Stack</title>
<meta name="description" content="Microck's current AI operator stack: models, harnesses, AGENTS.md, hooks, MCPs, CLI tools, skills, image generation, workspace, and setup history.">
<meta name="robots" content="index, follow">
<meta name="author" content="Microck">
<meta name="application-name" content="AI Stack">
<meta name="theme-color" content="#121212">
<link rel="canonical" href="https://ai.micr.dev/">
<link id="dynamic-favicon" rel="icon" href="/favicon-a.png" type="image/png">
<link rel="apple-touch-icon" href="/favicon.png">
<meta property="og:type" content="website">
<meta property="og:site_name" content="AI Stack">
<meta property="og:title" content="AI Stack">
<meta property="og:description" content="Microck's current AI operator stack: models, harnesses, AGENTS.md, hooks, MCPs, CLI tools, skills, image generation, workspace, and setup history.">
<meta property="og:url" content="https://ai.micr.dev/">
<meta property="og:image" content="https://ai.micr.dev/og-image.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="AI Stack">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="AI Stack">
<meta name="twitter:description" content="Microck's current AI operator stack: models, harnesses, AGENTS.md, hooks, MCPs, CLI tools, skills, image generation, workspace, and setup history.">
<meta name="twitter:image" content="https://ai.micr.dev/og-image.png">
<base href="/">
<!-- Critical local fonts load before rendering/animation setup -->
<link rel="preload" href="assets/fonts/helvetica-neue/HelveticaNeue-Roman.otf" as="font" type="font/otf" crossorigin>
<link rel="preload" href="assets/fonts/helvetica-neue/HelveticaNeue-Medium.otf" as="font" type="font/otf" crossorigin>
<link rel="preload" href="assets/fonts/helvetica-neue/HelveticaNeueBold.ttf" as="font" type="font/ttf" crossorigin>
<link rel="preload" href="assets/fonts/ioskeley-mono/IoskeleyMono-Regular.woff2" as="font" type="font/woff2" crossorigin>
<style>
body.fonts-loading .page-container {
visibility: hidden;
}
</style>
<!-- Fonts: Space Grotesk, Karla, Ysabeau, and Fallbacks -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Ysabeau:ital,wght@0,1..1000;1,1..1000&display=swap" rel="stylesheet">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="index.css?v=20260609-snapshots">
</head>
<body class="antialiased fonts-loading">
<!-- Ambient Grid Overlay -->
<div class="ambient-glows" aria-hidden="true">
<div class="glow-grid"></div>
</div>
<div class="page-container">
<!-- LEFT COLUMN: Changelog (40% Width, Scrolls Independently, Left Scrollbar) -->
<aside class="changelog-column" id="changelog-section">
<div class="changelog-scroll-wrapper">
<div class="changelog-content-container">
<!-- Sticky Header for Changelog -->
<div class="column-header">
<h2 class="column-title">Changelog</h2>
</div>
<div class="changelog-timeline">
<div class="change-group" data-group="09/06/2026">
<div class="change-date font-karla">09/06/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="gemini-3-5-flash">
<h3 class="change-title">Added Gemini 3.5 Flash Model</h3>
</div>
<div class="change-entry" data-targets="antigravity-cli">
<h3 class="change-title">Added Antigravity CLI Harness</h3>
</div>
</div>
</div>
<div class="change-group" data-group="05/06/2026">
<div class="change-date font-karla">05/06/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="hook-pretooluse-safety">
<h3 class="change-title">Modified PreToolUse Bash Safety Hook</h3>
</div>
<div class="change-entry" data-targets="emil-design-eng">
<h3 class="change-title">Added emil-design-eng Skill</h3>
</div>
<div class="change-entry" data-targets="animated-favicons">
<h3 class="change-title">Added animated-favicons Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="04/06/2026">
<div class="change-date font-karla">04/06/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="grill-with-facts">
<h3 class="change-title">Modified grill-with-facts Skill</h3>
</div>
<div class="change-entry" data-targets="codex-cli">
<h3 class="change-title">Updated Codex CLI to 0.137.0</h3>
</div>
</div>
</div>
<div class="change-group" data-group="02/06/2026">
<div class="change-date font-karla">02/06/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="make-interfaces-feel-better">
<h3 class="change-title">Added make-interfaces-feel-better Skill</h3>
</div>
<div class="change-entry" data-targets="oklch-skill">
<h3 class="change-title">Added oklch-skill Skill</h3>
</div>
<div class="change-entry" data-targets="codex-cli">
<h3 class="change-title">Updated Codex CLI to 0.136.0</h3>
</div>
</div>
</div>
<div class="change-group" data-group="01/06/2026">
<div class="change-date font-karla">01/06/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="dynamic-workflows">
<h3 class="change-title">Modified dynamic-workflows Skill</h3>
</div>
<div class="change-entry" data-targets="facts-cli">
<h3 class="change-title">Added facts CLI</h3>
</div>
</div>
</div>
<div class="change-group" data-group="31/05/2026">
<div class="change-date font-karla">31/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="ghidra-headless-mcp">
<h3 class="change-title">Added ghidra-headless-mcp MCP</h3>
</div>
<div class="change-entry" data-targets="dynamic-workflows">
<h3 class="change-title">Added dynamic-workflows Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="30/05/2026">
<div class="change-date font-karla">30/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="dft-writing">
<h3 class="change-title">Added dft-writing Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="29/05/2026">
<div class="change-date font-karla">29/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="optimo-cli">
<h3 class="change-title">Added optimo CLI</h3>
</div>
<div class="change-entry" data-targets="codex-cli">
<h3 class="change-title">Updated Codex CLI to 0.135.0</h3>
</div>
</div>
</div>
<div class="change-group" data-group="27/05/2026">
<div class="change-date font-karla">27/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="kagi-cli">
<h3 class="change-title">Added kagi-cli CLI</h3>
</div>
<div class="change-entry" data-targets="hermes-agent">
<h3 class="change-title">Modified Hermes Agent Harness</h3>
</div>
<div class="change-entry" data-targets="hook-pretooluse-safety">
<h3 class="change-title">Modified PreToolUse Bash Safety Hook</h3>
</div>
<div class="change-entry" data-targets="hook-pretooluse-rtk">
<h3 class="change-title">Modified PreToolUse RTK Rewrite Hook</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-lintcn">
<h3 class="change-title">Modified SessionStart lintcn Setup Hook</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-residue">
<h3 class="change-title">Modified SessionStart Residue Hook</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-dora">
<h3 class="change-title">Modified SessionStart dora Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-residue">
<h3 class="change-title">Modified Stop Residue Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-lintcn">
<h3 class="change-title">Modified Stop lintcn Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-dora">
<h3 class="change-title">Modified Stop dora Hook</h3>
</div>
</div>
</div>
<div class="change-group" data-group="26/05/2026">
<div class="change-date font-karla">26/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="gpt-5-5">
<h3 class="change-title">Modified GPT 5.5 Model</h3>
</div>
<div class="change-entry" data-targets="parkour-mcp">
<h3 class="change-title">Added parkour-mcp MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="25/05/2026">
<div class="change-date font-karla">25/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="grill-with-docs">
<h3 class="change-title">Added grill-with-docs Skill</h3>
</div>
<div class="change-entry" data-targets="semble-cli">
<h3 class="change-title">Added semble CLI</h3>
</div>
<div class="change-entry" data-targets="semble-mcp">
<h3 class="change-title">Added semble MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="24/05/2026">
<div class="change-date font-karla">24/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="language-selection">
<h3 class="change-title">Added language-selection Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="22/05/2026">
<div class="change-date font-karla">22/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="jj">
<h3 class="change-title">Modified jj CLI</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-lintcn">
<h3 class="change-title">Modified SessionStart lintcn Setup Hook</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-residue">
<h3 class="change-title">Modified SessionStart Residue Hook</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-dora">
<h3 class="change-title">Modified SessionStart dora Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-residue">
<h3 class="change-title">Modified Stop Residue Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-lintcn">
<h3 class="change-title">Modified Stop lintcn Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-dora">
<h3 class="change-title">Modified Stop dora Hook</h3>
</div>
<div class="change-entry" data-targets="mcp-vnc">
<h3 class="change-title">Modified mcp-vnc MCP</h3>
</div>
<div class="change-entry" data-targets="thermo-nuclear-code-quality-review">
<h3 class="change-title">Modified thermo-nuclear-code-quality-review Skill</h3>
</div>
<div class="change-entry" data-targets="thermo-nuclear-code-quality-review">
<h3 class="change-title">Added thermo-nuclear-code-quality-review Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="21/05/2026">
<div class="change-date font-karla">21/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="agent-deck">
<h3 class="change-title">Added agent-deck Workspace</h3>
</div>
<div class="change-entry" data-targets="dora-cli">
<h3 class="change-title">Modified dora CLI</h3>
</div>
<div class="change-entry" data-targets="dora-mcp">
<h3 class="change-title">Modified dora MCP</h3>
</div>
<div class="change-entry" data-targets="semble-cli">
<h3 class="change-title">Modified semble CLI</h3>
</div>
<div class="change-entry" data-targets="semble-mcp">
<h3 class="change-title">Modified semble MCP</h3>
</div>
<div class="change-entry" data-targets="fff-cli">
<h3 class="change-title">Modified fff CLI</h3>
</div>
<div class="change-entry" data-targets="fff-mcp">
<h3 class="change-title">Modified fff MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="19/05/2026">
<div class="change-date font-karla">19/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="agents-md">
<h3 class="change-title">Modified AGENTS.md</h3>
</div>
<div class="change-entry" data-targets="vps">
<h3 class="change-title">Added VPS Workspace</h3>
</div>
<div class="change-entry" data-targets="tailscale">
<h3 class="change-title">Added Tailscale Workspace</h3>
</div>
</div>
</div>
<div class="change-group" data-group="17/05/2026">
<div class="change-date font-karla">17/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="discord-py-self">
<h3 class="change-title">Added discord-py-self MCP</h3>
</div>
<div class="change-entry" data-targets="dora-mcp">
<h3 class="change-title">Added dora MCP</h3>
</div>
<div class="change-entry" data-targets="fff-mcp">
<h3 class="change-title">Added fff MCP</h3>
</div>
<div class="change-entry" data-targets="hook-sessionstart-residue">
<h3 class="change-title">Added Residue SessionStart Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-residue">
<h3 class="change-title">Added Residue Stop Hook</h3>
</div>
<div class="change-entry" data-targets="naming">
<h3 class="change-title">Added naming Skill</h3>
</div>
<div class="change-entry" data-targets="create-cli">
<h3 class="change-title">Added create-cli Skill</h3>
</div>
<div class="change-entry" data-targets="glm-5-1">
<h3 class="change-title">Added GLM-5.1 Model</h3>
</div>
</div>
</div>
<div class="change-group" data-group="10/05/2026">
<div class="change-date font-karla">10/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="tailscale">
<h3 class="change-title">Added Tailscale Workspace</h3>
</div>
<div class="change-entry" data-targets="repository-test-design">
<h3 class="change-title">Added repository-test-design Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="08/05/2026">
<div class="change-date font-karla">08/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="hook-precompact-handoff">
<h3 class="change-title">Added PreCompact Handoff Hook</h3>
</div>
<div class="change-entry" data-targets="hook-postcompact-handoff">
<h3 class="change-title">Added PostCompact Handoff Hook</h3>
</div>
</div>
</div>
<div class="change-group" data-group="07/05/2026">
<div class="change-date font-karla">07/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="mermaid-diagrams">
<h3 class="change-title">Added mermaid-diagrams Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="05/05/2026">
<div class="change-date font-karla">05/05/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="opensrc-mcp">
<h3 class="change-title">Added opensrc-mcp MCP</h3>
</div>
<div class="change-entry" data-targets="github-mcp">
<h3 class="change-title">Added github MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="24/04/2026">
<div class="change-date font-karla">24/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="gpt-5-5">
<h3 class="change-title">Modified GPT 5.5 Model</h3>
</div>
<div class="change-entry" data-targets="mcp-vnc">
<h3 class="change-title">Added mcp-vnc MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="23/04/2026">
<div class="change-date font-karla">23/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="gpt-image-2">
<h3 class="change-title">Added gpt-image-2 Image Generation Model</h3>
</div>
<div class="change-entry" data-targets="gitquarry-cli">
<h3 class="change-title">Added gitquarry CLI</h3>
</div>
<div class="change-entry" data-targets="gitquarry-mcp">
<h3 class="change-title">Added gitquarry-mcp MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="15/04/2026">
<div class="change-date font-karla">15/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="agent-deck">
<h3 class="change-title">Added agent-deck Workspace</h3>
</div>
</div>
</div>
<div class="change-group" data-group="13/04/2026">
<div class="change-date font-karla">13/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="optimo">
<h3 class="change-title">Added optimo Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="12/04/2026">
<div class="change-date font-karla">12/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="markitdown-mcp">
<h3 class="change-title">Added markitdown-mcp MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="04/04/2026">
<div class="change-date font-karla">04/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="hook-sessionstart-lintcn">
<h3 class="change-title">Added SessionStart lintcn Setup Hook</h3>
</div>
<div class="change-entry" data-targets="hook-stop-lintcn">
<h3 class="change-title">Added Stop lintcn Check Hook</h3>
</div>
</div>
</div>
<div class="change-group" data-group="03/04/2026">
<div class="change-date font-karla">03/04/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="grill-me">
<h3 class="change-title">Added grill-me Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="29/03/2026">
<div class="change-date font-karla">29/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="hermes-agent">
<h3 class="change-title">Added Hermes Agent Harness</h3>
</div>
<div class="change-entry" data-targets="dora-cli">
<h3 class="change-title">Added dora CLI</h3>
</div>
<div class="change-entry" data-targets="discord-py-self">
<h3 class="change-title">Added discord-py-self MCP</h3>
</div>
<div class="change-entry" data-targets="egaki-cli">
<h3 class="change-title">Added egaki CLI</h3>
</div>
</div>
</div>
<div class="change-group" data-group="27/03/2026">
<div class="change-date font-karla">27/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="markit-cli">
<h3 class="change-title">Added markit CLI</h3>
</div>
</div>
</div>
<div class="change-group" data-group="24/03/2026">
<div class="change-date font-karla">24/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="fff-cli">
<h3 class="change-title">Added fff CLI</h3>
</div>
</div>
</div>
<div class="change-group" data-group="21/03/2026">
<div class="change-date font-karla">21/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="lit-cli">
<h3 class="change-title">Added lit CLI</h3>
</div>
<div class="change-entry" data-targets="dora-cli">
<h3 class="change-title">Added dora CLI</h3>
</div>
<div class="change-entry" data-targets="lintcn-cli">
<h3 class="change-title">Added lintcn CLI</h3>
</div>
</div>
</div>
<div class="change-group" data-group="20/03/2026">
<div class="change-date font-karla">20/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="discord-py-self">
<h3 class="change-title">Added discord-py-self MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="17/03/2026">
<div class="change-date font-karla">17/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="kagi-mcp">
<h3 class="change-title">Added kagi-mcp MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="16/03/2026">
<div class="change-date font-karla">16/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="naming">
<h3 class="change-title">Added naming Skill</h3>
</div>
</div>
</div>
<div class="change-group" data-group="14/03/2026">
<div class="change-date font-karla">14/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="codex-cli">
<h3 class="change-title">Added codex-cli Harness</h3>
</div>
<div class="change-entry" data-targets="agent-browser-cli">
<h3 class="change-title">Added agent-browser CLI</h3>
</div>
<div class="change-entry" data-targets="dora-mcp">
<h3 class="change-title">Added dora MCP</h3>
</div>
<div class="change-entry" data-targets="grep-app">
<h3 class="change-title">Added grep-app MCP</h3>
</div>
<div class="change-entry" data-targets="perplexity-webui">
<h3 class="change-title">Added perplexity-webui MCP</h3>
</div>
<div class="change-entry" data-targets="reddit-mcp-buddy">
<h3 class="change-title">Added reddit-mcp-buddy MCP</h3>
</div>
</div>
</div>
<div class="change-group" data-group="13/03/2026">
<div class="change-date font-karla">13/03/2026</div>
<div class="change-entries">
<div class="change-entry" data-targets="glm-5-turbo">
<h3 class="change-title">Added GLM-5-Turbo Model</h3>
</div>
<div class="change-entry" data-targets="reddit-mcp-buddy">
<h3 class="change-title">Added reddit-mcp-buddy MCP</h3>
</div>
<div class="change-entry" data-targets="tmux">
<h3 class="change-title">Added tmux Workspace</h3>
</div>
<div class="change-entry" data-targets="rtk">
<h3 class="change-title">Added rtk CLI</h3>
</div>
<div class="change-entry" data-targets="rg">
<h3 class="change-title">Added rg CLI</h3>
</div>
<div class="change-entry" data-targets="opensrc-cli">
<h3 class="change-title">Added opensrc CLI</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</aside>
<!-- RIGHT COLUMN: Stack (60% Width, Fixed in Viewport with Internal Scroll Regions) -->
<main class="stack-column" id="stack-section">
<!-- Scrollable Region for Dense Stack Content -->
<div class="stack-scroll-region">
<div class="snapshot-status font-karla" id="snapshot-status" hidden>
<span id="snapshot-status-label">Snapshot</span>
<a href="/" id="snapshot-current-link">Current stack</a>
</div>
<!-- SECTION: MODELS -->
<section class="stack-section" id="models">
<h2 class="section-heading">Models</h2>
<div class="role-grid">
<div class="role-column">
<span class="role-label font-karla">Primary</span>
<div class="stack-entry" id="gpt-5-5">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/openai.svg" alt=""></span>
<span class="entry-name">GPT 5.5</span>
</div>
<p class="entry-description">Primary Codex model for implementation, debugging, review, and repository-level reasoning.</p>
<p class="entry-why">Best code output and amazing tool calling. It does exactly what I tell it to, no more and no less. The only real downside is frontend work, but with good prompting and actual human taste it can still produce good results.</p>
</div>
</div>
<div class="role-column">
<span class="role-label font-karla">Secondary</span>
<div class="stack-entry" id="glm-5-turbo">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/glm.svg" alt=""></span>
<span class="entry-name">GLM-5-Turbo</span>
</div>
<p class="entry-description">Secondary model for fast Hermes Agent loops and alternate model judgment.</p>
</div>
<div class="stack-entry" id="glm-5-1">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/glm.svg" alt=""></span>
<span class="entry-name">GLM-5.1</span>
</div>
<p class="entry-description">Secondary GLM model kept alongside the turbo profile for broader Z.AI coverage.</p>
</div>
<div class="stack-entry" id="gemini-3-5-flash">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/gemini.svg" alt=""></span>
<span class="entry-name">Gemini 3.5 Flash</span>
</div>
<p class="entry-description">Fast multimodal model reached through Antigravity CLI prompt runs.</p>
</div>
</div>
</div>
</section>
<!-- SECTION: HARNESSES -->
<section class="stack-section" id="harnesses">
<h2 class="section-heading">Harnesses</h2>
<div class="role-grid">
<!-- Primary Left Column (60% Width) -->
<div class="role-column">
<span class="role-label font-karla">Primary</span>
<div class="stack-entry" id="codex-cli">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/codex.svg" alt=""></span>
<span class="entry-name">Codex CLI</span>
</div>
<p class="entry-description">Primary terminal harness for code edits, tool execution, browser checks, and sub-agent orchestration.</p>
<p class="entry-why">After using OpenCode exclusively for months and spending too much time tweaking it or fixing issues, Codex CLI is a breath of fresh air. It does everything I need cleanly, and I genuinely have no complaints. I hope OpenAI models stay SOTA so I can keep using it forever, and I hope they do not enshittify it. If I did not main GPT models, I would probably switch to Pi or Droid CLI, maybe with T3 Code as a GUI, since the few times I have used them they have been pretty neat too.</p>
</div>
</div>
<!-- Secondary Right Column (40% Width) -->
<div class="role-column">
<span class="role-label font-karla">Secondary</span>
<div class="stack-entry" id="hermes-agent">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/hermes.png" alt=""></span>
<span class="entry-name">Hermes Agent</span>
</div>
<p class="entry-description">Secondary AI assistant for persistent terminal sessions, alternate model judgment, and parallel operator loops.</p>
<p class="entry-why">I use this through Discord as my personal AI assistant. Hermes fans love to say it is miles better than OpenClaw, but honestly it is not; it is as rough as most other AI assistants. It has given me a ton of headaches and breaks with almost every update because they keep adding sloppy PRs.</p>
</div>
<div class="stack-entry" id="antigravity-cli">
<div class="entry-header">
<span class="entry-logo" aria-hidden="true"><img src="assets/logos/antigravity.png" alt=""></span>
<span class="entry-name">Antigravity CLI</span>
</div>
<p class="entry-description">Secondary prompt-run harness used with <code>-p</code> workflows to access Gemini 3.5 Flash, not as a coding-agent replacement.</p>
<p class="entry-why">Do not get me wrong, this harness sucks. I have a Google AI Pro plan with a generous Gemini 3.5 Flash quota, and since the only practical way I can use it is through their harness, I resort to <code>agy -p</code> wherever I do not need much intelligence and I do not want to use my Z.ai/GLM quota.</p>
</div>
</div>
</div>
</section>
<!-- SECTION: AGENTS.MD (Raw code boxed style container) -->
<section class="stack-section" id="agents-section">
<h2 class="section-heading">AGENTS.md</h2>
<div class="agents-box-container" id="agents-md">
<div class="editor-pane">
<div class="editor-actions" aria-label="AGENTS.md quick actions">
<div class="editor-view-toggle" role="tablist" aria-label="AGENTS.md view">
<button class="render-trigger icon-control font-karla" id="open-rendered-btn" type="button" role="tab" aria-selected="false" aria-controls="rendered-agents-view" aria-label="View rendered AGENTS.md" data-view="rendered" data-tooltip="View rendered AGENTS.md">
<svg class="control-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>
</button>
<button class="render-trigger icon-control font-karla is-active" id="open-raw-btn" type="button" role="tab" aria-selected="true" aria-controls="raw-agents-view" aria-label="View raw AGENTS.md" data-view="raw" data-tooltip="View raw AGENTS.md">
<svg class="control-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M10 12.5 8 15l2 2.5"></path>
<path d="m14 12.5 2 2.5-2 2.5"></path>
<path d="M14 2v4a2 2 0 0 0 2 2h4"></path>
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"></path>
</svg>
</button>
</div>
<button class="render-trigger icon-control font-karla" id="copy-agents-inline-btn" type="button" aria-label="Copy AGENTS.md" data-tooltip="Copy AGENTS.md">
<svg class="control-icon copy-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<rect width="14" height="14" x="8" y="8" rx="2" ry="2"></rect>
<path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path>
</svg>
</button>
</div>
<div class="editor-body" id="agents-inline-open-target" role="button" tabindex="0" aria-label="Open AGENTS.md dialog">
<!-- Line Numbers Column -->
<div class="line-numbers font-mono" id="editor-line-numbers">
<!-- Generated by JS -->
</div>
<!-- Preformatted Code Block -->
<pre class="editor-code font-mono" id="raw-agents-view" role="tabpanel" aria-labelledby="open-raw-btn"><code id="raw-agents-code">Loading raw operating manual...</code></pre>
<div class="agents-rendered-view font-sans" id="rendered-agents-view" role="tabpanel" aria-labelledby="open-rendered-btn" hidden>
<p>Loading rendered operating manual...</p>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION: HOOKS -->
<section class="stack-section" id="hooks">
<h2 class="section-heading">Hooks</h2>
<div class="simple-list">
<div class="stack-entry" id="hook-pretooluse-safety">
<div class="entry-header">
<span class="entry-name">PreToolUse | Bash Safety</span>
</div>
<p class="entry-description">Routes rm commands through trash instead of permanent deletion.</p>
</div>
<div class="stack-entry" id="hook-pretooluse-rtk">
<div class="entry-header">
<span class="entry-name">PreToolUse | RTK Rewrite</span>
</div>
<p class="entry-description">Routes Bash through the local RTK rewrite guard when supported.</p>
</div>
<div class="stack-entry" id="hook-sessionstart-lintcn">
<div class="entry-header">
<span class="entry-name">SessionStart | lintcn Setup</span>
</div>
<p class="entry-description">Runs the lintcn setup command at session start.</p>
</div>
<div class="stack-entry" id="hook-sessionstart-residue">
<div class="entry-header">
<span class="entry-name">SessionStart | Residue Start</span>
</div>
<p class="entry-description">Starts Residue session capture.</p>
</div>
<div class="stack-entry" id="hook-sessionstart-dora">
<div class="entry-header">
<span class="entry-name">SessionStart | Dora Index Check</span>
</div>
<p class="entry-description">Checks Dora status and starts indexing when the repository supports it.</p>
</div>
<div class="stack-entry" id="hook-precompact-handoff">
<div class="entry-header">
<span class="entry-name">PreCompact | Compact Handoff</span>
</div>
<p class="entry-description">Writes a compact handoff before manual or automatic compaction.</p>
</div>
<div class="stack-entry" id="hook-postcompact-handoff">
<div class="entry-header">
<span class="entry-name">PostCompact | Handoff Reload</span>
</div>
<p class="entry-description">Loads the compact handoff reminder after compaction.</p>
</div>
<div class="stack-entry" id="hook-stop-residue">
<div class="entry-header">
<span class="entry-name">Stop | Residue Finish</span>
</div>
<p class="entry-description">Ends Residue session capture.</p>
</div>
<div class="stack-entry" id="hook-stop-lintcn">
<div class="entry-header">
<span class="entry-name">Stop | lintcn Check</span>
</div>
<p class="entry-description">Runs the lintcn stop check.</p>
</div>
<div class="stack-entry" id="hook-stop-dora">
<div class="entry-header">
<span class="entry-name">Stop | Dora Reindex</span>
</div>
<p class="entry-description">Starts a Dora reindex after session shutdown.</p>
</div>
</div>
</section>
<!-- SECTION: MCPS -->
<section class="stack-section" id="mcps">
<h2 class="section-heading">MCPs</h2>
<div class="simple-list two-column-list">
<div class="stack-entry" id="discord-py-self">
<div class="entry-header">
<a href="https://github.com/Microck/discord.py-self-mcp" target="_blank" rel="noopener noreferrer" class="entry-title-link"><span class="entry-name">discord-py-self</span></a>
</div>
<p class="entry-description">Active Discord automation server.</p>
</div>
<div class="stack-entry" id="dora-mcp">
<div class="entry-header">
<a href="https://github.com/butttons/dora" target="_blank" rel="noopener noreferrer" class="entry-title-link"><span class="entry-name">dora</span></a>
</div>
<p class="entry-description">Structural code intelligence for symbols, dependencies, docs, and architecture queries.</p>
</div>
<div class="stack-entry" id="fff-mcp">
<div class="entry-header">
<a href="https://github.com/dmtrKovalenko/fff" target="_blank" rel="noopener noreferrer" class="entry-title-link"><span class="entry-name">fff</span></a>
</div>
<p class="entry-description">Fast file finder with frecency-backed grep and filename discovery.</p>
</div>
<div class="stack-entry" id="semble-mcp">
<div class="entry-header">
<a href="https://github.com/mochunab/semble-mcp" target="_blank" rel="noopener noreferrer" class="entry-title-link"><span class="entry-name">semble</span></a>
</div>
<p class="entry-description">Semantic code search server.</p>
</div>