-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodemenu.html
More file actions
1107 lines (1003 loc) · 47.4 KB
/
codemenu.html
File metadata and controls
1107 lines (1003 loc) · 47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CodeMenu — Developer Knowledge Base for Mac</title>
<meta name="description"
content="CodeMenu is the developer knowledge base and snippet manager for macOS. Capture code, AI prompts, screenshots, palettes, and product research in one private, searchable workspace.">
<meta name="keywords"
content="developer knowledge base, code notebook mac, artifact manager alternative, Obsidian for developers, mac knowledge base, AI prompts library, semantic search workspace, developer workflow hub, snippet manager, mac app, code snippets, developer productivity">
<meta name="theme-color" content="#050505">
<meta name="apple-itunes-app" content="app-id=1583463781">
<!-- Open Graph / Twitter -->
<meta property="og:title" content="CodeMenu — Developer Knowledge Base for Mac" />
<meta property="og:description"
content="Capture everything that fuels your shipping stack: code, prompts, visuals, docs, and experiments." />
<meta property="og:image" content="https://extiri.com/images/codemenu/dashboard_screenshot.webp" />
<meta name="twitter:title" content="CodeMenu — Developer Knowledge Base for Mac" />
<meta name="twitter:description"
content="CodeMenu keeps every brilliant idea close: artifacts, prompts, screenshots, palettes, research, and automations." />
<!-- Fonts -->
<script src="https://kit.fontawesome.com/cbd5f7f345.js" crossorigin="anonymous"></script>
<link rel="preload" href="/fonts/InstrumentSerif-Regular.ttf" as="font" type="font/ttf" crossorigin>
<link rel="preload" href="/fonts/JetBrainsMono-Regular.woff2" as="font" type="font/woff2" crossorigin>
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
<style>
/* Page-specific overrides */
.hero-codemenu {
background: var(--bg-body);
}
.hero-codemenu .btn-primary {
box-shadow: none !important;
}
.feature-icon-box {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--space-4);
font-size: 2rem;
}
/* Slideshow Styles */
.slideshow-section {
position: relative;
width: 100%;
overflow: hidden;
padding: var(--space-12) 0;
}
.slideshow-container {
position: relative;
width: 100%;
max-width: 1100px;
margin: 0 auto;
aspect-ratio: 16/10;
}
.slideshow-img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-xl);
display: none;
}
.slideshow-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(20, 20, 20, 0.8);
color: var(--color-codemenu);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
width: 48px;
height: 48px;
font-size: 2rem;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
backdrop-filter: blur(10px);
}
.slideshow-btn:hover {
background: rgba(255, 179, 0, 0.1);
border-color: var(--color-codemenu);
}
.slideshow-prev {
left: 20px;
}
.slideshow-next {
right: 20px;
}
.slideshow-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: var(--space-6);
}
.slideshow-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
cursor: pointer;
transition: all 0.2s ease;
}
.slideshow-dot.active {
background: var(--color-codemenu);
transform: scale(1.2);
}
/* Comparison Table */
.comparison-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--bg-glass-border);
background: var(--bg-surface);
}
.comparison-table th,
.comparison-table td {
padding: var(--space-4) var(--space-6);
text-align: left;
border-bottom: 1px solid var(--bg-glass-border);
}
.comparison-table th {
background: rgba(255, 255, 255, 0.03);
font-weight: 600;
color: var(--text-primary);
}
.comparison-table tr:last-child td {
border-bottom: none;
}
/* FAQ */
.faq-item {
border-bottom: 1px solid var(--bg-glass-border);
}
.faq-question {
width: 100%;
text-align: left;
padding: var(--space-6) 0;
background: none;
border: none;
color: var(--text-primary);
font-size: var(--text-lg);
font-weight: 500;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, opacity 0.3s ease;
opacity: 0;
color: var(--text-secondary);
}
.faq-question.open .faq-arrow {
transform: rotate(90deg);
}
.faq-answer.open {
opacity: 1;
padding-bottom: var(--space-6);
}
/* Bento Grid Styles */
.bento-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(2, minmax(200px, auto));
gap: var(--space-6);
}
.bento-item {
background: var(--bg-surface);
border: 1px solid var(--bg-glass-border);
border-radius: var(--radius-lg);
padding: var(--space-8);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.bento-large {
grid-column: span 7;
grid-row: span 2;
}
.bento-medium {
grid-column: span 5;
grid-row: span 1;
}
@media (max-width: 900px) {
.bento-grid {
display: flex;
flex-direction: column;
}
}
/* Terminal/Code Block Visuals */
.terminal-window {
background: #1e1e1e;
border-radius: 8px;
border: 1px solid #333;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
color: #d4d4d4;
padding: 12px;
margin-top: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.terminal-header {
display: flex;
gap: 6px;
margin-bottom: 12px;
}
.terminal-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: #555;
}
.terminal-dot.red {
background: #ff5f56;
}
.terminal-dot.yellow {
background: #ffbd2e;
}
.terminal-dot.green {
background: #27c93f;
}
.code-line {
display: block;
line-height: 1.5;
}
.code-keyword {
color: #c678dd;
}
.code-string {
color: #98c379;
}
.code-func {
color: #61afef;
}
.code-comment {
color: #5c6370;
font-style: italic;
}
</style>
<!-- Scripts -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HLY6ZZMNBQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('consent', 'default', { 'analytics_storage': 'denied' });
gtag('js', new Date());
gtag('config', 'G-HLY6ZZMNBQ');
</script>
<script src="js/three.min.js" defer></script>
<script src="js/background-effect.js" defer></script>
<script src="scripts.js" defer></script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container navbar-inner">
<a href="./index.html" class="nav-logo">
<img src="images/logo.webp" alt="Extiri Logo">
</a>
<div class="nav-links">
<a href="./index.html#home" class="nav-link">Home</a>
<a href="./index.html#apps" class="nav-link">Apps</a>
<a href="./blog/index.html" class="nav-link">Blog</a>
</div>
<button class="mobile-menu-btn" aria-label="Toggle Menu" onclick="toggleMobileMenu()">
<i class="fa-solid fa-bars"></i>
</button>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu">
<a href="./index.html#home" class="nav-link" onclick="toggleMobileMenu()">Home</a>
<a href="./index.html#apps" class="nav-link" onclick="toggleMobileMenu()">Apps</a>
<a href="./blog/index.html" class="nav-link" onclick="toggleMobileMenu()">Blog</a>
</div>
<!-- Hero Section -->
<header class="hero hero-codemenu">
<div class="container hero-content animate-fade-in">
<img src="images/codemenu-icon.webp" alt="CodeMenu Icon"
style="width: 96px; height: 96px; border-radius: 22px; margin: 0 auto var(--space-6) auto;">
<h2
style="color: var(--color-codemenu); font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-3); letter-spacing: 0.05em; text-transform: uppercase;">
CodeMenu</h2>
<h1 class="hero-title">Developer knowledge base<br>for you and your AI</h1>
<p class="hero-subtitle delay-100">The persistent context layer for your shipping stack. Store code, prompts,
research, and secrets. Accessible via IDE, Terminal, or MCP.</p>
<div class="flex-center delay-200" style="flex-wrap: wrap; margin-bottom: var(--space-8);">
<span class="badge">Local-first</span>
<span class="badge">Semantic Search</span>
<span class="badge">MCP Server</span>
<span class="badge">Scriptable</span>
</div>
<div class="hero-actions delay-300">
<a href="https://apps.apple.com/pl/app/codemenu-snippets-manager/id1583463781" class="btn btn-primary"
style="background: var(--color-codemenu); color: #000; --btn-shadow-rgb: var(--color-codemenu-rgb);">Download
for Mac</a>
<a href="https://extiri.com/blog/posts/ultimate-guide-to-snippet-management-with-codemenu.html"
class="btn btn-outline">Read the Guide</a>
</div>
<p style="margin-top: var(--space-4); font-size: var(--text-sm); color: var(--text-tertiary);">7-day free trial ·
Works offline · macOS 12+</p>
</div>
</header>
<!-- Video Section -->
<section class="section" style="padding-top: 0;">
<div class="container">
<div
style="position: relative; width: 100%; padding-bottom: 56.25%; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--bg-glass-border);">
<iframe style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" loading="lazy"
src="https://www.youtube.com/embed/zGxLaAIhof8" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
</div>
</section>
<!-- Features Bento Grid -->
<section class="section">
<div class="container">
<div style="text-align: center; max-width: 760px; margin: 0 auto var(--space-12) auto;">
<p class="text-gradient"
style="font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--text-sm);">
Capabilities</p>
<h2>Your second brain, <span
style="font-family: var(--font-sans); font-size: 0.8em; background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 6px;">--offline</span>
</h2>
<p>Designed for the modern developer workflow. No cloud sync required. No subscription needed.</p>
</div>
<div class="bento-grid">
<!-- Large Item: Polyglot Storage -->
<div class="bento-item bento-large">
<div class="feature-icon-box" style="background: rgba(255, 179, 0, 0.1); color: var(--color-codemenu);"><i
class="fa-solid fa-box-open"></i></div>
<h3>Polyglot Artifact Storage</h3>
<p style="margin-bottom: var(--space-4);">It's not just for code. Store the entire context of your feature.
</p>
<!-- Artifact Type Cards Grid -->
<div
style="display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); margin-top: var(--space-4); align-items: center; flex: 1;">
<!-- Code -->
<div
style="background: rgba(255, 179, 0, 0.05); border: 1px solid rgba(255, 179, 0, 0.2); border-radius: var(--radius-md); padding: var(--space-8) var(--space-4); text-align: center; transition: var(--transition-fast); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 120px;"
onmouseover="this.style.background='rgba(255, 179, 0, 0.1)'; this.style.borderColor='rgba(255, 179, 0, 0.4)';"
onmouseout="this.style.background='rgba(255, 179, 0, 0.05)'; this.style.borderColor='rgba(255, 179, 0, 0.2)';">
<i class="fa-solid fa-code"
style="font-size: 2rem; color: var(--color-codemenu); margin-bottom: var(--space-3);"></i>
<div style="font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);">Code</div>
<div style="font-size: var(--text-xs); color: var(--text-tertiary);">60+ languages</div>
</div>
<!-- Prompts -->
<div
style="background: rgba(130, 214, 255, 0.05); border: 1px solid rgba(130, 214, 255, 0.2); border-radius: var(--radius-md); padding: var(--space-8) var(--space-4); text-align: center; transition: var(--transition-fast); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 120px;"
onmouseover="this.style.background='rgba(130, 214, 255, 0.1)'; this.style.borderColor='rgba(130, 214, 255, 0.4)';"
onmouseout="this.style.background='rgba(130, 214, 255, 0.05)'; this.style.borderColor='rgba(130, 214, 255, 0.2)';">
<i class="fa-solid fa-brain" style="font-size: 2rem; color: #82d6ff; margin-bottom: var(--space-3);"></i>
<div style="font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);">AI Prompts</div>
<div style="font-size: var(--text-xs); color: var(--text-tertiary);">System templates</div>
</div>
<!-- Images -->
<div
style="background: rgba(255, 99, 71, 0.05); border: 1px solid rgba(255, 99, 71, 0.2); border-radius: var(--radius-md); padding: var(--space-8) var(--space-4); text-align: center; transition: var(--transition-fast); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 120px;"
onmouseover="this.style.background='rgba(255, 99, 71, 0.1)'; this.style.borderColor='rgba(255, 99, 71, 0.4)';"
onmouseout="this.style.background='rgba(255, 99, 71, 0.05)'; this.style.borderColor='rgba(255, 99, 71, 0.2)';">
<i class="fa-solid fa-image" style="font-size: 2rem; color: #ff6347; margin-bottom: var(--space-3);"></i>
<div style="font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);">Images</div>
<div style="font-size: var(--text-xs); color: var(--text-tertiary);">Design refs</div>
</div>
<!-- Notes -->
<div
style="background: rgba(61, 214, 140, 0.05); border: 1px solid rgba(61, 214, 140, 0.2); border-radius: var(--radius-md); padding: var(--space-8) var(--space-4); text-align: center; transition: var(--transition-fast); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 120px;"
onmouseover="this.style.background='rgba(61, 214, 140, 0.1)'; this.style.borderColor='rgba(61, 214, 140, 0.4)';"
onmouseout="this.style.background='rgba(61, 214, 140, 0.05)'; this.style.borderColor='rgba(61, 214, 140, 0.2)';">
<i class="fa-solid fa-file-lines"
style="font-size: 2rem; color: #3dd68c; margin-bottom: var(--space-3);"></i>
<div style="font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);">Notes</div>
<div style="font-size: var(--text-xs); color: var(--text-tertiary);">Markdown + LaTeX</div>
</div>
<!-- Colors -->
<div
style="background: rgba(255, 224, 130, 0.05); border: 1px solid rgba(255, 224, 130, 0.2); border-radius: var(--radius-md); padding: var(--space-8) var(--space-4); text-align: center; transition: var(--transition-fast); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 120px;"
onmouseover="this.style.background='rgba(255, 224, 130, 0.1)'; this.style.borderColor='rgba(255, 224, 130, 0.4)';"
onmouseout="this.style.background='rgba(255, 224, 130, 0.05)'; this.style.borderColor='rgba(255, 224, 130, 0.2)';">
<i class="fa-solid fa-palette"
style="font-size: 2rem; color: #ffe082; margin-bottom: var(--space-3);"></i>
<div style="font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);">Colors</div>
<div style="font-size: var(--text-xs); color: var(--text-tertiary);">Design tokens</div>
</div>
<!-- Links -->
<div
style="background: rgba(200, 160, 255, 0.05); border: 1px solid rgba(200, 160, 255, 0.2); border-radius: var(--radius-md); padding: var(--space-8) var(--space-4); text-align: center; transition: var(--transition-fast); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 120px;"
onmouseover="this.style.background='rgba(200, 160, 255, 0.1)'; this.style.borderColor='rgba(200, 160, 255, 0.4)';"
onmouseout="this.style.background='rgba(200, 160, 255, 0.05)'; this.style.borderColor='rgba(200, 160, 255, 0.2)';">
<i class="fa-solid fa-link" style="font-size: 2rem; color: #c8a0ff; margin-bottom: var(--space-3);"></i>
<div style="font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);">Links</div>
<div style="font-size: var(--text-xs); color: var(--text-tertiary);">Web bookmarks</div>
</div>
</div>
</div>
<!-- Medium Item: AI Context -->
<div class="bento-item bento-medium">
<div class="feature-icon-box" style="background: rgba(130, 214, 255, 0.1); color: #82d6ff;"><i
class="fa-solid fa-brain"></i></div>
<h3>AI-Powered</h3>
<p>Chat with your snippets using the <strong>built-in AI</strong>, or connect external agents via the
<strong>MCP Server</strong>. Your knowledge base becomes the context layer for every AI tool you use.
</p>
<div class="terminal-window" style="margin-top: auto;">
<span class="code-line"><span class="code-keyword">You:</span> How do I use the CVE calculator?</span>
<span class="code-line"><span class="code-keyword">AI:</span> Based on your "CVSS v3.1 Base-Score
Calculator" snippet…</span>
</div>
</div>
<!-- Medium Item: Automation -->
<div class="bento-item bento-medium">
<div class="feature-icon-box" style="background: rgba(61, 214, 140, 0.1); color: #3dd68c;"><i
class="fa-solid fa-bolt"></i></div>
<h3>Scriptable Actions</h3>
<p>Automate your knowledge base maintenance. Write scripts to bulk-refactor code, validate snippet syntax, or
generate reports. Full access to read and modify your library programmatically.</p>
<div class="terminal-window" style="margin-top: auto;">
<span class="code-line"><span class="code-comment">// Example: Add license header to all Swift
files</span></span>
<span class="code-line"><span class="code-keyword">const</span> license = <span class="code-string">"//
Copyright 2025 Extiri\n"</span>;</span>
<span class="code-line"></span>
<span class="code-line"><span class="code-keyword">for</span> (<span class="code-keyword">let</span> i = 0;
i < snippets.length; i++) {</span>
<span class="code-line"> <span class="code-keyword">let</span> s = snippets[i];</span>
<span class="code-line"> <span class="code-keyword">if</span> (s.lang === <span
class="code-string">"swift"</span> && !s.code.includes(<span
class="code-string">"Copyright"</span>)) {</span>
<span class="code-line"> s.code = license + s.code;</span>
<span class="code-line"> s.<span class="code-func">update</span>(); <span class="code-comment">//
Persist changes</span></span>
<span class="code-line"> <span class="code-func">alert</span>(<span
class="code-string">"Updated"</span>, s.title);</span>
<span class="code-line"> }</span>
<span class="code-line">}</span>
</div>
</div>
</div>
</div>
</section>
<!-- Tech Stack Section -->
<section class="section">
<div class="container">
<div style="text-align: center; max-width: 760px; margin: 0 auto var(--space-8) auto;">
<h2>Syntax highlighting for 60+ languages</h2>
<p>Your snippets stay readable with proper highlighting.</p>
</div>
<div class="stack-grid">
<div class="stack-item" style="color: var(--text-primary); border-color: var(--color-codemenu);">Prompt</div>
<div class="stack-item" style="color: var(--text-primary); border-color: var(--color-codemenu);">Image</div>
<div class="stack-item" style="color: var(--text-primary); border-color: var(--color-codemenu);">Color</div>
<div class="stack-item">APL</div>
<div class="stack-item">PGP</div>
<div class="stack-item">ASN.1</div>
<div class="stack-item">CMake</div>
<div class="stack-item">C</div>
<div class="stack-item">C++</div>
<div class="stack-item">Objective-C</div>
<div class="stack-item">Kotlin</div>
<div class="stack-item">Scala</div>
<div class="stack-item">C#</div>
<div class="stack-item">Java</div>
<div class="stack-item">COBOL</div>
<div class="stack-item">CoffeeScript</div>
<div class="stack-item">Lisp</div>
<div class="stack-item">CSS/SCSS</div>
<div class="stack-item">Django</div>
<div class="stack-item">Dart</div>
<div class="stack-item">Dockerfile</div>
<div class="stack-item">Erlang</div>
<div class="stack-item">Fortran</div>
<div class="stack-item">Go</div>
<div class="stack-item">Groovy</div>
<div class="stack-item">Haskell</div>
<div class="stack-item">HTML</div>
<div class="stack-item">HTTP</div>
<div class="stack-item">JavaScript</div>
<div class="stack-item">TypeScript</div>
<div class="stack-item">JSON</div>
<div class="stack-item">ECMA</div>
<div class="stack-item">Jinja</div>
<div class="stack-item">Lua</div>
<div class="stack-item">Markdown</div>
<div class="stack-item">Maths</div>
<div class="stack-item">N-Triples</div>
<div class="stack-item">Pascal</div>
<div class="stack-item">Perl</div>
<div class="stack-item">PHP</div>
<div class="stack-item">PowerShell</div>
<div class="stack-item">Properties</div>
<div class="stack-item">Protobuf</div>
<div class="stack-item">Python</div>
<div class="stack-item">R</div>
<div class="stack-item">Ruby</div>
<div class="stack-item">Rust</div>
<div class="stack-item">Sass</div>
<div class="stack-item">Scheme</div>
<div class="stack-item">Shell</div>
<div class="stack-item">SQL</div>
<div class="stack-item">SQLite</div>
<div class="stack-item">SPARQL</div>
<div class="stack-item">MySQL</div>
<div class="stack-item">LaTeX</div>
<div class="stack-item">Swift</div>
<div class="stack-item">Text</div>
<div class="stack-item">TOML</div>
<div class="stack-item">Turtle</div>
<div class="stack-item">VB.NET</div>
<div class="stack-item">Vue</div>
<div class="stack-item">XML</div>
<div class="stack-item">YAML</div>
<div class="stack-item">RegEx</div>
</div>
</div>
</section>
<!-- Integration Stack Section -->
<section class="section" style="background: linear-gradient(180deg, rgba(255,179,0,0.02) 0%, rgba(0,0,0,0) 100%);">
<div class="container">
<div style="text-align: center; max-width: 760px; margin: 0 auto var(--space-12) auto;">
<p class="text-gradient"
style="font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--text-sm);">
Integration</p>
<h2>The missing layer in your stack</h2>
<p>CodeMenu sits between your editor, your terminal, and your AI tools.</p>
</div>
<div class="workflow-steps" style="grid-template-columns: repeat(3, 1fr);">
<!-- Step 1: Side Window -->
<div class="workflow-step">
<div class="workflow-number" style="border-radius: 8px; width: auto; padding: 0 12px;">Side Window</div>
<h3>Side Window & Suggestions app</h3>
<p>Keep CodeMenu pinned next to VS Code or Xcode. Drag and drop snippets, or use the
<strong>Suggestions</strong> companion app to find relevant code without leaving your editor (type
<code>§§</code>).
</p>
<a href="https://github.com/Extiri/Suggestions" class="btn btn-sm btn-outline-primary mt-2"
style="display: inline-block; margin-top: 12px; padding: 6px 12px; border: 1px solid var(--color-codemenu); border-radius: 6px; color: var(--color-codemenu); text-decoration: none; font-size: 0.9rem;"><i
class="fa-brands fa-github"></i> Suggestions App</a>
</div>
<!-- Step 2: Terminal -->
<div class="workflow-step">
<div class="workflow-number" style="border-radius: 8px; width: auto; padding: 0 12px;">CLI</div>
<h3>Terminal Access</h3>
<p>Access your library via <code>cdmn</code>. Features a TUI for browsing, fuzzy search for quick retrieval,
and scriptable output (like JSON).</p>
<div class="terminal-window" style="margin-top: 12px; text-align: left;">
<span class="code-line"><span class="code-comment"># Install cdmn</span></span>
<span class="code-line">$ go install github.com/extiri/cdmn@latest</span>
<span class="code-line"></span>
<span class="code-line"><span class="code-comment"># Fuzzy search for "show alert"</span></span>
<span class="code-line">$ cdmn get <span class="code-string">"show alert"</span></span>
</div>
<a href="https://github.com/Extiri/cdmn" class="btn btn-sm btn-outline-primary mt-2"
style="display: inline-block; margin-top: 12px; padding: 6px 12px; border: 1px solid var(--color-codemenu); border-radius: 6px; color: var(--color-codemenu); text-decoration: none; font-size: 0.9rem;"><i
class="fa-brands fa-github"></i> CodeMenu CLI</a>
</div>
<!-- Step 3: AI -->
<div class="workflow-step">
<div class="workflow-number" style="border-radius: 8px; width: auto; padding: 0 12px;">AI</div>
<h3>MCP Server</h3>
<p>Connect CodeMenu to Claude Code, OpenAI Codex, VS Code and any other app with support for MCP. Give your AI
agent read-access to your personal
documentation
and verified code patterns.</p>
<a href="https://github.com/Extiri/codemenu-mcp" class="btn btn-sm btn-outline-primary mt-2"
style="display: inline-block; margin-top: 12px; padding: 6px 12px; border: 1px solid var(--color-codemenu); border-radius: 6px; color: var(--color-codemenu); text-decoration: none; font-size: 0.9rem;"><i
class="fa-brands fa-github"></i> MCP Server</a>
</div>
</div>
</div>
</section>
<!-- Slideshow Section -->
<section class="section slideshow-section">
<div class="container">
<div class="slideshow-container">
<div class="slideshow-images">
<img data-src="./images/codemenu/promo-images/Screenshot 1.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 1"
class="slideshow-img">
<img data-src="./images/codemenu/promo-images/Screenshot 2.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 2"
class="slideshow-img">
<img data-src="./images/codemenu/promo-images/Screenshot 4.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 3"
class="slideshow-img">
<img data-src="./images/codemenu/promo-images/Screenshot 5.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 4"
class="slideshow-img">
<img data-src="./images/codemenu/promo-images/Screenshot 7.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 5"
class="slideshow-img">
<img data-src="./images/codemenu/promo-images/Screenshot 8.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 6"
class="slideshow-img">
<img data-src="./images/codemenu/promo-images/Screenshot 9.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" alt="CodeMenu promo 7"
class="slideshow-img">
</div>
<button class="slideshow-btn slideshow-prev" aria-label="Previous Slide">←</button>
<button class="slideshow-btn slideshow-next" aria-label="Next Slide">→</button>
<div class="slideshow-dots">
<!-- Dots injected by JS -->
</div>
</div>
</div>
</section>
<!-- Deep Dive Sections -->
<section class="section">
<div class="container">
<h2 style="text-align: center; margin-bottom: var(--space-12);">Engineered for Focus</h2>
<div class="grid">
<!-- Feature 1: Organization (Spaces/Stashes) -->
<article class="app-card-large">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(255, 179, 0, 0.1); color: var(--color-codemenu);"><i
class="fa-solid fa-layer-group"></i></div>
<h3>Structured for Focus</h3>
<p>Context switching kills flow. Use <strong>Spaces</strong> to isolate only the snippets relevant to your
current project. Dump temporary ideas into <strong>Stashes</strong> for quick access without the clutter.
Of course, standard Groups and Tags are there when you need them.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/promo-images/Screenshot 4.png" alt="Organization with Spaces and Stashes">
</div>
</article>
<!-- Feature 2: Graph View -->
<article class="app-card-large reversed">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(130, 214, 255, 0.1); color: #82d6ff;"><i
class="fa-solid fa-diagram-project"></i></div>
<h3>Visual Knowledge Graph</h3>
<p>Knowledge doesn't live in isolation. Link an OSINT screenshot to your research notes, or a database
config to its migration script. Navigate your knowledge base visually to rediscover connections you forgot
you made.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/codemenu-graphs-screenshot.webp" alt="Graph View showing connected nodes">
</div>
</article>
<!-- Feature 3: Content Types -->
<article class="app-card-large">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(61, 214, 140, 0.1); color: #3dd68c;"><i
class="fa-solid fa-box-open"></i></div>
<h3>First-Class Artifacts</h3>
<p>It's not just a text bucket. CodeMenu renders Markdown with LaTeX support, previews images and colors,
and highlights syntax for 60+ languages. Store the <em>entire</em> context of your work, from PDFs to
shell scripts.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/promo-images/Screenshot 2.png"
alt="Various content types including images and code">
</div>
</article>
<!-- Feature 4: Execution & Preview -->
<article class="app-card-large reversed">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(255, 99, 71, 0.1); color: #ff6347;"><i
class="fa-solid fa-play"></i></div>
<h3>Run & Preview</h3>
<p>Don't just store code—execute it. Run shell scripts directly from the app, preview HTML/JS snippets in a
sandboxed web view, or test that Regex before you commit it.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/promo-images/Screenshot 7.png" alt="Running and previewing code snippets">
</div>
</article>
<!-- Feature 5: Extensibility -->
<article class="app-card-large">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(255, 224, 130, 0.1); color: #ffe082;"><i
class="fa-solid fa-plug"></i></div>
<h3>Headless & Scriptable</h3>
<p>The built-in HTTP server exposes your library to your local network of tools. Fetch snippets via `curl`,
integrate with Raycast, or write JavaScript automations to transform content on paste.</p>
<div class="terminal-window">
<div class="terminal-header">
<div class="terminal-dot red"></div>
<div class="terminal-dot yellow"></div>
<div class="terminal-dot green"></div>
</div>
<span class="code-line"><span class="code-comment"># Access your snippets from anywhere</span></span>
<span class="code-line">$ curl localhost:1300/v1/snippets</span>
</div>
</div>
<div class="app-card-media">
<img src="./images/codemenu/promo-images/Screenshot 8.png" alt="HTTP Server and Automation settings">
</div>
</article>
<!-- Feature 6: Built-in AI Chat -->
<article class="app-card-large reversed">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(130, 214, 255, 0.1); color: #82d6ff;"><i
class="fa-solid fa-comments"></i></div>
<h3>Built-in AI Chat</h3>
<p>Ask questions about your snippets, code patterns, APIs, or concepts — right inside CodeMenu. The AI
automatically finds relevant snippets from your library and uses them as context, so answers are grounded
in <em>your</em> code, not generic examples.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/ai-demo-codemenu.png" alt="Built-in AI chat with snippet context">
</div>
</article>
<!-- Feature 7: Shortcuts App Support -->
<article class="app-card-large">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(255, 99, 71, 0.1); color: #ff6347;"><i
class="fa-solid fa-wand-magic-sparkles"></i></div>
<h3>Shortcuts Integration</h3>
<p>CodeMenu ships with 20+ Shortcuts actions — create, search, update, and organise snippets, groups, and
tags without ever opening the app. Build powerful automations that feed your knowledge base on
autopilot.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/shortcuts-codemenu.png" alt="Shortcuts app actions for CodeMenu">
</div>
</article>
<!-- Feature 8: The Rest -->
<article class="app-card-large reversed">
<div class="app-card-content">
<div class="feature-icon-box" style="background: rgba(255, 255, 255, 0.1); color: #fff;"><i
class="fa-solid fa-star"></i></div>
<h3>And So Much More</h3>
<p>Generate shareable code images, recognise text from screenshots, encrypt sensitive snippets, sync via
iCloud, publish to GitHub Gists, or host your own Snippets Store. Every detail is designed to keep you
in the flow.</p>
</div>
<div class="app-card-media">
<img src="./images/codemenu/promo-images/Screenshot 9.png" alt="Additional CodeMenu features">
</div>
</article>
</div>
</div>
</section>
<!-- Comparison -->
<section class="section">
<div class="container">
<h2 style="text-align: center; margin-bottom: var(--space-8);">More than a snippet manager</h2>
<div style="overflow-x: auto;">
<table class="comparison-table">
<thead>
<tr>
<th></th>
<th>Basic snippet tools</th>
<th>CodeMenu</th>
</tr>
</thead>
<tbody>
<tr>
<td>Content types</td>
<td>Text</td>
<td>Code, prompts, images, colors, notes</td>
</tr>
<tr>
<td>Organization</td>
<td>Folders, tags</td>
<td>Folders, tags, graph links</td>
</tr>
<tr>
<td>Search</td>
<td>Text search</td>
<td>Text search + semantic search</td>
</tr>
<tr>
<td>Automation</td>
<td>Text expansion</td>
<td>JavaScript, HTTP calls, dynamic placeholders</td>
</tr>
<tr>
<td>Data storage</td>
<td>Cloud</td>
<td>Local (offline-first)</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- FAQ -->
<section class="section" id="faq">
<div class="container" style="max-width: 800px;">
<h2 style="text-align: center; margin-bottom: var(--space-8);">FAQ</h2>
<div class="faq-list">
<div class="faq-item">
<button class="faq-question">Is CodeMenu just a snippet manager?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>It's a developer knowledge base. While it excels at snippets, it's designed to store your entire context:
API responses, design tokens, prompt templates, and research notes. It's the long-term memory for your
shipping workflow.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Does CodeMenu support iCloud sync?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>Yes, it does. You can sync your snippets and some settings across your devices using iCloud by enabling
it in the settings.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Which models do integrated AI features support?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>CodeMenu supports two types of models for the AI chat and generation features. First is builtin which
allows you to use Mistral 7B and Gemma 2 2B. Second is Ollama app. If you download Ollama you can then
connect CodeMenu to it and use any model available through it.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Where is my data stored?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>CodeMenu is offline-first and privacy-focused. Your code never leaves your machine unless you explicitly
choose to share it.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">What is the HTTP server for?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>The built-in HTTP server provides a local API for your other tools to access your library. It is
<strong>not</strong> for public sharing. Use it to fetch snippets via scripts, integrate with
Raycast/Alfred, or build custom workflows that need access to your knowledge base.
</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Can I use it with AI?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>Yes. CodeMenu is designed to be the context layer for your AI. Use the <a
href="https://github.com/Extiri/codemenu-mcp">MCP server</a> to let Claude or other agents query your
library, or use the local semantic search to find relevant context to paste into your LLM.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Is there a free trial?<span class="faq-arrow"><i
class="fa-solid fa-chevron-right"></i></span></button>
<div class="faq-answer">
<p>Yes, there is a 7-day free trial available on the Mac App Store. You can choose between a one-time
purchase or a subscription.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="section">
<div class="container" style="max-width: 700px; text-align: center;">
<h2 style="margin-bottom: var(--space-4);">The CodeMenu Newsletter</h2>
<p style="margin-bottom: var(--space-8); color: var(--text-secondary); font-size: 1.1rem; line-height: 1.6;">Join
the community. Get tips on building your personal knowledge base, advanced workflows with AI, and updates on new
CodeMenu features.</p>
<script async data-uid="72455a1b9f" src="https://extiri.kit.com/72455a1b9f/index.js"></script>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<img src="images/logo.webp" alt="Extiri" width="100" style="opacity: 0.8;">
<p>Extiri is an independent software studio crafting simple, well‑crafted apps for macOS, iOS, and web.</p>
</div>
<div class="footer-links">
<h4>Products</h4>
<ul>
<li><a href="./codemenu.html">CodeMenu</a></li>
<li><a href="./resso.html">Resso</a></li>
<li><a href="./chitneek.html">Chitneek</a></li>
<li><a href="./clipguru.html">ClipGuru</a></li>
<li><a href="./slowko.html">Słówko</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Company</h4>
<ul>
<li><a href="./index.html#about">About</a></li>
<li><a href="./blog/index.html">Blog</a></li>
<li><a href="privacy_policy.html">Privacy Policy</a></li>
<li><a href="codemenu/terms_of_services.html">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Extiri. All rights reserved.</p>
<p>Mac is a trademark of Apple Inc.</p>
</div>
</div>
</footer>
<!-- Page Specific Scripts -->
<script>
// Slideshow Logic
(function () {
const imgs = Array.from(document.querySelectorAll('.slideshow-img'));
const dotsContainer = document.querySelector('.slideshow-dots');
const nextBtn = document.querySelector('.slideshow-next');