forked from bluenoah1991/omni-context-cli-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
901 lines (862 loc) · 45.6 KB
/
index.html
File metadata and controls
901 lines (862 loc) · 45.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OmniContext CLI - AI Coding Assistant for Your Terminal</title>
<meta name="description"
content="A zero-telemetry AI coding assistant that lives in your terminal, editor, browser, and documents. 10 agentic tools. Multi-model. Fully extensible.">
<link rel="icon" href="favicon.ico">
<link href="assets/fonts/inter.css" rel="stylesheet">
<script src="assets/js/lucide.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body id="top">
<div class="bg-gradient"></div>
<div class="grid-pattern"></div>
<nav id="navbar">
<div class="container nav-content">
<a href="#top" class="logo"><img src="assets/img/logo.svg" alt="" class="logo-icon">OmniContext</a>
<div class="nav-links">
<a href="#how-it-works" class="nav-link">How It Works</a>
<a href="#cost-optimization" class="nav-link">Cost Optimization</a>
<a href="#integrations" class="nav-link">Integrations</a>
<a href="docs/" class="nav-link">Docs</a>
</div>
<div class="nav-right">
<a href="zh-Hans/" class="nav-lang">中文</a>
<a href="https://github.com/bluenoah1991/omni-context-cli-landing" class="nav-link-icon" target="_blank"
aria-label="GitHub">
<i data-lucide="github"></i>
</a>
<a href="https://github.com/bluenoah1991/omni-context-cli-landing/releases" class="nav-cta"
target="_blank">Download</a>
</div>
<button class="mobile-menu-btn" id="mobileMenuBtn" aria-label="Menu">
<i data-lucide="menu"></i>
</button>
</div>
<div class="mobile-menu" id="mobileMenu">
<a href="#how-it-works" class="mobile-menu-link">How It Works</a>
<a href="#cost-optimization" class="mobile-menu-link">Cost Optimization</a>
<a href="#integrations" class="mobile-menu-link">Integrations</a>
<a href="docs/" class="mobile-menu-link">Docs</a>
<a href="zh-Hans/" class="mobile-menu-link">中文</a>
<a href="https://github.com/bluenoah1991/omni-context-cli-landing/releases" class="mobile-menu-link"
target="_blank">Download</a>
</div>
</nav>
<!-- ========== HERO ========== -->
<section class="hero">
<div class="container">
<div class="hero-tags">
<span class="hero-tag"><i data-lucide="feather"></i> Lean system prompts</span>
<span class="hero-tag"><i data-lucide="coins"></i> Cost-optimized architecture</span>
<span class="hero-tag"><i data-lucide="shield-off"></i> Zero telemetry</span>
<span class="hero-tag"><i data-lucide="file-spreadsheet"></i> Office integration</span>
<span class="hero-tag"><i data-lucide="layers"></i> Specialist delegation</span>
<span class="hero-tag"><i data-lucide="brain"></i> Cross-session memory</span>
<span class="hero-tag"><i data-lucide="plug-zap"></i> Native multi-protocol</span>
</div>
<h1>
<span class="gradient-text">Precision context.</span><br>
Minimal cost.
</h1>
<p class="hero-description">
OmniContext CLI is a terminal-native coding assistant that treats context as a
first-class resource. Lean system prompts keep overhead low. Specialist delegation
routes grunt work to cheaper models while keeping your main context clean. Zero telemetry
means your code never leaves your machine. And it extends into VS Code, Office, the browser, and Figma.
</p>
<div class="hero-actions">
<div class="install-command" id="installCmd">
<code><span class="prompt">$</span> npm install -g omni-context-cli && omx</code>
<button class="copy-btn" id="copyBtn" onclick="copyInstallCommand()">
<i data-lucide="copy"></i>
</button>
</div>
<a href="docs/" class="btn-secondary">
Read the Docs
<i data-lucide="arrow-right"></i>
</a>
</div>
<div class="hero-terminal">
<div class="terminal-chrome">
<div class="terminal-dots">
<span></span><span></span><span></span>
</div>
<span class="terminal-title">Terminal</span>
</div>
<div class="tui">
<pre
class="tui-banner"><span class="tui-blue-text">╔═╗┌┬┐┌┐┌┬ </span><span class="tui-white-text">╔═╗┌─┐┌┐┌┌┬┐┌─┐─┐ ┬┌┬┐ ╔═╗╦ ╦</span>
<span class="tui-blue-text">║ ║│││││││ </span><span class="tui-white-text">║ │ ││││ │ ├┤ ┌┴┬┘ │ ║ ║ ║</span>
<span class="tui-blue-text">╚═╝┴ ┴┘└┘┴ </span><span class="tui-white-text">╚═╝└─┘┘└┘ ┴ └─┘┴ └─ ┴ ╚═╝╩═╝╩</span></pre>
<div class="tui-meta">
<span>▸ Version: 0.0.70</span>
<span>▸ Project: my-project</span>
<span>▸ Session: 1771152411043-cipsnmcqu</span>
</div>
<div class="tui-rule"></div>
<p class="tui-welcome">Omni Context CLI. Tell Omx <span class="tui-blue-text">what you want to
do.</span></p>
<div class="tui-spacer"></div>
<div class="tui-statusbar">
<span>Anthropic: Claude Opus 4.6 (Thinking) | 0.0% (⇈ 0 ⇊ 0 ↺ 0)</span>
<span>(Press ESC to enter the menu)</span>
</div>
<div class="tui-border-line"></div>
<div class="tui-input">
<span class="tui-caret">❯</span>
<span class="tui-placeholder">Type your message...</span>
<span class="tui-cursor"></span>
</div>
<div class="tui-border-line"></div>
</div>
</div>
</div>
</section>
<!-- ========== METRICS STRIP ========== -->
<section class="metrics">
<div class="container">
<div class="metrics-grid">
<div class="metric">
<span class="metric-value">10</span>
<span class="metric-label">Agentic Tools</span>
</div>
<div class="metric-divider"></div>
<div class="metric">
<span class="metric-value">5</span>
<span class="metric-label">Workflow Presets</span>
</div>
<div class="metric-divider"></div>
<div class="metric">
<span class="metric-value">4</span>
<span class="metric-label">Supported API Protocols</span>
</div>
<div class="metric-divider"></div>
<div class="metric">
<span class="metric-value">0</span>
<span class="metric-label">Telemetry</span>
</div>
</div>
</div>
</section>
<!-- ========== HOW IT WORKS ========== -->
<section class="section" id="how-it-works">
<div class="container">
<div class="section-header center">
<span class="section-label">How It Works</span>
<h2 class="section-title">Specialist delegation:<br>fewer rounds, lower cost</h2>
<p class="section-subtitle">
Traditional assistants call basic tools one at a time, resending your
entire context with every round. OmniContext CLI delegates multi-step operations
to agentic sub-agents running on a cheaper model -- your expensive model
stays focused on reasoning, not file I/O.
</p>
</div>
<div class="comparison-wide">
<div class="cw-task">
Task: "Find the definition of <code>handleAuth</code>"
</div>
<div class="cw-columns">
<div class="cw-col">
<div class="cw-col-header bad"><i data-lucide="x-circle"></i> Traditional</div>
<div class="cw-steps">
<div class="cw-round">
<div class="cw-step"><span class="cw-label">R1</span> <code>glob("src/**/*.ts")</code>
</div>
<div class="cw-result">43 files returned</div>
</div>
<div class="cw-round">
<div class="cw-step"><span class="cw-label">R2</span>
<code>grep("handleAuth", ...)</code></div>
<div class="cw-result">7 matches in 4 files</div>
</div>
<div class="cw-round">
<div class="cw-step"><span class="cw-label">R3</span>
<code>read("src/middleware/auth.ts")</code></div>
<div class="cw-result">186 lines -- wrong file</div>
</div>
<div class="cw-round">
<div class="cw-step"><span class="cw-label">R4</span>
<code>read("src/routes/login.ts")</code></div>
<div class="cw-result">124 lines -- still looking</div>
</div>
<div class="cw-round">
<div class="cw-step"><span class="cw-label">R5</span>
<code>read("src/services/auth.ts", 40-90)</code></div>
<div class="cw-result ok">Found it -- 50 more lines</div>
</div>
</div>
<div class="cw-summary bad">5 rounds, ~12K context added, all on main model</div>
</div>
<div class="cw-divider"></div>
<div class="cw-col">
<div class="cw-col-header good"><i data-lucide="check-circle-2"></i> Specialist Mode</div>
<div class="cw-steps">
<div class="cw-round">
<div class="cw-step accent"><span class="cw-label">R1</span>
<code>pluck("handleAuth definition")</code></div>
<div class="cw-agent">
<span class="cw-agent-label">Sub-agent (cheap model):</span>
<div class="cw-agent-steps">
<span>glob</span>
<span>grep</span>
<span>read</span>
<span>locate</span>
<span>extract</span>
</div>
</div>
<div class="cw-result ok">auth.ts:42-78 -- full function body</div>
</div>
</div>
<div class="cw-summary good">1 round, ~1K context added, grunt work on cheap model</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== AGENTIC TOOLS ========== -->
<section class="section section-alt" id="agentic-tools">
<div class="container">
<div class="section-header center">
<span class="section-label">Agentic Tools</span>
<h2 class="section-title">10 tools that think for themselves</h2>
<p class="section-subtitle">
Each tool runs as an autonomous sub-agent on a cheaper model. It handles
file I/O, error recovery, and retries internally -- keeping intermediate
output out of your main context and your token bill down.
Tip: start with glance and slice when exploring a codebase -- they're faster than
hunting file by file.
</p>
</div>
<div class="tools-grid">
<div class="tool-card">
<div class="tool-icon"><i data-lucide="map"></i></div>
<div class="tool-info">
<h4>explore</h4>
<p>Survey project architecture. Understands directory layout, key files, and how the codebase is
organized.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="terminal"></i></div>
<div class="tool-info">
<h4>spark</h4>
<p>Run shell commands with automatic error detection and retry. Handles build failures and
install issues.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="pencil"></i></div>
<div class="tool-info">
<h4>sculpt</h4>
<p>Edit files with surgical precision. Finds the right location, makes the change, and validates
the result.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="file-text"></i></div>
<div class="tool-info">
<h4>weave</h4>
<p>Write entire files from scratch with auto-validation. Handles formatting and structure
automatically.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="search"></i></div>
<div class="tool-info">
<h4>sweep</h4>
<p>Find files matching complex criteria. Searches by name, content, or structure across your
project.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="clipboard-list"></i></div>
<div class="tool-info">
<h4>pluck</h4>
<p>Extract specific code segments from any file. Pulls functions, classes, or blocks you need.
</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="waves"></i></div>
<div class="tool-info">
<h4>ripple</h4>
<p>Trace symbol references across your codebase. Finds every usage of a function, variable, or
type.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="scissors"></i></div>
<div class="tool-info">
<h4>slice</h4>
<p>Answer targeted code questions. Reads only the relevant parts to give you focused answers.
</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="globe"></i></div>
<div class="tool-info">
<h4>quest</h4>
<p>Research any topic via web search. Finds documentation, examples, and solutions from across
the internet.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon"><i data-lucide="eye"></i></div>
<div class="tool-info">
<h4>glance</h4>
<p>Preview multiple files at once with brief summaries. Quickly understand what you are working
with.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ========== WORKFLOW PRESETS ========== -->
<section class="section">
<div class="container">
<div class="section-header center">
<span class="section-label">Workflow Presets</span>
<h2 class="section-title">One assistant, many modes</h2>
<p class="section-subtitle">
Switch how OmniContext CLI behaves with a single command. Each preset changes
the tools available, the system prompt, and the response style.
</p>
</div>
<div class="presets-grid">
<div class="preset-card active" data-preset="specialist">
<div class="preset-icon"><i data-lucide="cpu"></i></div>
<h3>Specialist</h3>
<span class="preset-badge">Default</span>
<p>Your main model reasons, a cheaper agent model executes. Agentic tools keep the cheap model out
of decisions. Fewer rounds, cleaner context, lower cost.</p>
</div>
<div class="preset-card" data-preset="explorer">
<div class="preset-icon"><i data-lucide="compass"></i></div>
<h3>Explorer</h3>
<p>Research-first mode. Launches multiple web searches before answering. Great for current events,
docs, and fact-checking.</p>
</div>
<div class="preset-card" data-preset="artist">
<div class="preset-icon"><i data-lucide="palette"></i></div>
<h3>Artist</h3>
<p>Visual-first responses. Prioritizes image generation when the model supports it. Ideal for design
exploration and mockups.</p>
</div>
<div class="preset-card" data-preset="assistant">
<div class="preset-icon"><i data-lucide="layout-grid"></i></div>
<h3>Assistant</h3>
<p>Personal assistant for app integrations. Controls browser tabs, Office documents, and Figma
designs through natural language.</p>
</div>
<div class="preset-card" data-preset="normal">
<div class="preset-icon"><i data-lucide="code"></i></div>
<h3>Normal</h3>
<p>Basic tools with manual orchestration. Direct read, write, edit, and bash access. Full control,
no abstraction.</p>
</div>
</div>
</div>
</section>
<!-- ========== NATIVE PROTOCOLS ========== -->
<section class="section section-alt">
<div class="container">
<div class="section-header center">
<span class="section-label">Native Multi-Protocol</span>
<h2 class="section-title">Four API protocols,<br>zero format conversion</h2>
<p class="section-subtitle">
Most tools funnel everything through a single API format and hope for the best.
OmniContext CLI has a dedicated request builder and stream handler for each protocol.
Prompt caching, extended thinking, and provider-specific features work exactly
as the vendor intended -- no lossy translation layer in between.
</p>
</div>
<div class="protocols-grid">
<div class="protocol-card">
<div class="protocol-name">Anthropic</div>
<div class="protocol-desc">Native Messages API with prompt caching, extended thinking, and
streaming. Token-level cache control via custom TTL.</div>
<div class="protocol-tag">Claude Opus 4.6 / Claude Sonnet 4.6 / DeepSeek V3.2</div>
</div>
<div class="protocol-card">
<div class="protocol-name">OpenAI</div>
<div class="protocol-desc">Native Chat Completions API. Compatible with any endpoint that speaks the
OpenAI format -- Zhipu, MiniMax, local models, and more.</div>
<div class="protocol-tag">GLM-5 / Minimax 2.5</div>
</div>
<div class="protocol-card">
<div class="protocol-name">Gemini / Vertex</div>
<div class="protocol-desc">Native generateContent API with Gemini-specific streaming. No OpenAI shim
-- tools and function calling use Gemini's own schema.</div>
<div class="protocol-tag">Gemini 3 Pro / Gemini 3 Pro Image</div>
</div>
<div class="protocol-card">
<div class="protocol-name">Responses API</div>
<div class="protocol-desc">OpenAI's newer Responses API with built-in tool orchestration. Separate
path from Chat Completions, not a compatibility wrapper.</div>
<div class="protocol-tag">GPT-5.2 / GPT-5.2-Codex</div>
</div>
</div>
</div>
</section>
<!-- ========== COST OPTIMIZATION ========== -->
<section class="section" id="cost-optimization">
<div class="container">
<div class="section-header center">
<span class="section-label">Cost Optimization</span>
<h2 class="section-title">Specialist mode saves real money</h2>
<p class="section-subtitle">
Every API call resends your full conversation history. Fewer rounds means fewer
cache reads. Cleaner context means fewer tokens written. Specialist mode
cuts both -- and offloads the grunt work to a cheaper model.
</p>
</div>
<div class="cost-explainer">
<div class="cost-how">
<div class="cost-how-item">
<div class="cost-how-icon"><i data-lucide="repeat"></i></div>
<h3>Fewer API rounds</h3>
<p>Traditional tools need 5 rounds to find a function definition.
Specialist mode does it in 1. That is 4 fewer full-context resends --
saving cache read costs on every skipped round.</p>
</div>
<div class="cost-how-item">
<div class="cost-how-icon"><i data-lucide="minimize-2"></i></div>
<h3>Smaller context growth</h3>
<p>Basic tools dump ~10KB of intermediate output into your conversation.
Agentic tools return only the final result. Context editing
automatically trims old tool payloads and thinking blocks,
keeping growth in check even over long sessions.</p>
</div>
<div class="cost-how-item">
<div class="cost-how-icon"><i data-lucide="split"></i></div>
<h3>Cheap model for execution</h3>
<p>Sub-agents run on a low-cost model (e.g. GLM-5) while your main model
(e.g. Claude Opus 4.6) handles only planning and decisions.
The expensive model never does file I/O.</p>
</div>
<div class="cost-how-item">
<div class="cost-how-icon"><i data-lucide="clock"></i></div>
<h3>1-hour cache for deep work</h3>
<p>The default 5-minute prompt cache expires if you pause to think.
Switch to 1-hour in preferences for debugging, refactoring, or research --
it eliminates repeated cache rebuilds across a session.</p>
</div>
</div>
<div class="cost-chart">
<div class="cost-chart-header">Simulated cost comparison: "Find the definition of handleAuth"</div>
<table class="cost-table">
<thead>
<tr>
<th></th>
<th>Traditional</th>
<th>Specialist</th>
<th>Saved</th>
</tr>
</thead>
<tbody>
<tr>
<td>API rounds</td>
<td>5</td>
<td>1</td>
<td class="saved">-4 rounds</td>
</tr>
<tr>
<td>Cache read per round</td>
<td>~20K tokens x 5</td>
<td>~20K tokens x 1</td>
<td class="saved">-80K tokens</td>
</tr>
<tr>
<td>New context added</td>
<td>~10KB</td>
<td>~3KB</td>
<td class="saved">-70%</td>
</tr>
<tr>
<td>Cache write (new tokens)</td>
<td>~2.5K tokens</td>
<td>~1K tokens</td>
<td class="saved">-60%</td>
</tr>
<tr class="total-row">
<td>Execution model</td>
<td>Opus 4.6 only</td>
<td>Opus 4.6 + GLM-5</td>
<td class="saved">~30% cheaper</td>
</tr>
</tbody>
</table>
<p class="cost-chart-note">Based on a 20K-token conversation finding a function across a TypeScript
project. Actual savings depend on project size and model pricing.</p>
</div>
</div>
</div>
</section>
<!-- ========== MULTI-MODEL ========== -->
<section class="section section-alt">
<div class="container">
<div class="split-layout reverse">
<div class="split-content">
<span class="section-label">Model Providers</span>
<h2 class="section-title">One command to add<br>all your models</h2>
<p class="section-subtitle">
OmniContext CLI ships with built-in provider presets. Pick one,
paste your API key, and every model from that service is ready to use.
</p>
<div class="provider-grid">
<div class="provider-tag">Zenmux</div>
<div class="provider-tag">DeepSeek</div>
<div class="provider-tag">OpenRouter</div>
<div class="provider-tag">Zhipu (GLM)</div>
<div class="provider-tag">MiniMax</div>
</div>
</div>
<div class="split-visual">
<div class="code-block">
<div class="code-header">
<span>Quick setup with Zenmux</span>
</div>
<pre><code><span class="t-comment"># List available providers</span>
<span class="t-prompt">$</span> omx --list-providers
<span class="t-comment"># Add all Zenmux models in one go</span>
<span class="t-prompt">$</span> omx --add-provider zenmux --api-key zmx-...
<span class="t-output">Added: Zenmux Anthropic (Claude Sonnet 4)</span>
<span class="t-output">Added: Zenmux Anthropic (Claude Haiku)</span>
<span class="t-output">Added: Zenmux Gemini (Gemini 2.5 Flash)</span>
<span class="t-output">Added: Zenmux OpenAI (GPT-4o)</span>
<span class="t-output">...</span>
<span class="t-comment"># Remove a provider just as easily</span>
<span class="t-prompt">$</span> omx --remove-provider zenmux</code></pre>
</div>
</div>
</div>
</div>
</section>
<!-- ========== MEMORY ========== -->
<section class="section">
<div class="container">
<div class="split-layout">
<div class="split-content">
<span class="section-label">Cross-Session Memory</span>
<h2 class="section-title">It learns as you work</h2>
<p class="section-subtitle">
OmniContext CLI remembers your coding style, project patterns, and past
mistakes across sessions. Key points are scored over time --
helpful insights stick around, irrelevant ones decay.
</p>
<div class="feature-list">
<div class="feature-list-item">
<i data-lucide="brain"></i>
<div>
<strong>Agentic Context Engineering</strong>
<span>Extracts key points from every conversation and injects them into future
sessions</span>
</div>
</div>
<div class="feature-list-item">
<i data-lucide="trending-up"></i>
<div>
<strong>Scored Memory</strong>
<span>Helpful points gain score (+1), harmful ones drop fast (-3), unused ones decay
naturally</span>
</div>
</div>
<div class="feature-list-item">
<i data-lucide="folder-open"></i>
<div>
<strong>Per-Project Storage</strong>
<span>Each project has its own memory file. Edit it directly if you want full
control.</span>
</div>
</div>
</div>
</div>
<div class="split-visual">
<div class="memory-demo">
<div class="memory-card">
<div class="memory-header">
<span class="memory-label">memory.json</span>
<span class="memory-score positive">+3</span>
</div>
<code>"This project uses TypeScript strict mode with path aliases configured in tsconfig"</code>
</div>
<div class="memory-card">
<div class="memory-header">
<span class="memory-label">memory.json</span>
<span class="memory-score positive">+2</span>
</div>
<code>"API routes follow REST conventions in src/routes/ with Zod validation"</code>
</div>
<div class="memory-card fading">
<div class="memory-header">
<span class="memory-label">memory.json</span>
<span class="memory-score negative">-4</span>
</div>
<code>"Uses Webpack for bundling"</code>
<span class="memory-status">Decaying -- will be removed at -5</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== INTEGRATIONS ========== -->
<section class="section section-alt" id="integrations">
<div class="container">
<div class="section-header center">
<span class="section-label">Integrations</span>
<h2 class="section-title">Goes everywhere your work does</h2>
<p class="section-subtitle">
Terminal is home base, but OmniContext CLI reaches into every tool you use.
One AI, consistent context, zero context switching.
</p>
</div>
<div class="integration-grid">
<div class="integration-card large">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="monitor"></i></div>
<div>
<h3>VS Code Extension</h3>
<p>Full IDE integration with file context, diagnostics, and diff views. OmniContext CLI sees
what you see in the editor.</p>
</div>
</div>
<div class="integration-features">
<span>Active file awareness</span>
<span>Selection context</span>
<span>Error diagnostics</span>
<span>Inline diffs</span>
</div>
</div>
<div class="integration-card large">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="app-window"></i></div>
<div>
<h3>Desktop App</h3>
<p>GUI for the CLI. Acts as the local hub connecting Office, browser, and Figma extensions.
</p>
</div>
</div>
<div class="integration-features">
<span>Full CLI features</span>
<span>Model management</span>
<span>Serve mode</span>
<span>Connection hub</span>
</div>
</div>
<div class="integration-card">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="chrome"></i></div>
<div>
<h3>Chrome Extension</h3>
<p>Sidebar on any webpage. Summarize, extract data, run scripts, and automate browser tasks.
</p>
</div>
</div>
</div>
<div class="integration-card">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="file-spreadsheet"></i></div>
<div>
<h3>Office Add-in</h3>
<p>AI panel inside Word, Excel, and PowerPoint. Create budgets, format docs, and design
slides.</p>
</div>
</div>
</div>
<div class="integration-card">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="figma"></i></div>
<div>
<h3>Figma Plugin</h3>
<p>Inspect layouts, create shapes, modify nodes, and export assets through the chat panel.
</p>
</div>
</div>
</div>
<div class="integration-card">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="code"></i></div>
<div>
<h3>Zed Editor</h3>
<p>Works as an external agent via Agent Client Protocol. Full tool access inside Zed's agent
panel.</p>
</div>
</div>
</div>
<div class="integration-card">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="globe"></i></div>
<div>
<h3>Web Client</h3>
<p>Browser UI with LaTeX, Mermaid diagrams, file attachments, and drag-and-drop support.</p>
</div>
</div>
</div>
<div class="integration-card">
<div class="integration-header">
<div class="integration-icon"><i data-lucide="smartphone"></i></div>
<div>
<h3>Mobile Access</h3>
<p>Run <code>omx --serve</code> and connect from your phone. Code reviews from the couch.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== EXTENSIBILITY ========== -->
<section class="section">
<div class="container">
<div class="section-header center">
<span class="section-label">Extensibility</span>
<h2 class="section-title">Build on top of OmniContext CLI</h2>
<p class="section-subtitle">
Custom agents, skills, slash commands, and MCP servers.
Everything is a markdown file or JSON config.
</p>
</div>
<div class="extend-grid">
<div class="extend-card">
<div class="extend-icon"><i data-lucide="bot"></i></div>
<h3>Custom SubAgents</h3>
<p>Write a markdown file with a prompt template and tool permissions. It becomes a new agentic tool
instantly. Add OMX-AGENTS.md for global agent instructions.</p>
<div class="extend-path">~/.omx/agents/review.md</div>
</div>
<div class="extend-card">
<div class="extend-icon"><i data-lucide="book-open"></i></div>
<h3>Custom Skills</h3>
<p>Teach OmniContext CLI domain-specific knowledge and workflows. Skills inject instructions into
the current conversation.</p>
<div class="extend-path">~/.omx/skills/code-style/SKILL.md</div>
</div>
<div class="extend-card">
<div class="extend-icon"><i data-lucide="slash"></i></div>
<h3>Slash Commands</h3>
<p>Create shortcuts for common prompts. Type /review and your custom prompt fires with Handlebars
templating.</p>
<div class="extend-path">~/.omx/slash/review.md</div>
</div>
<div class="extend-card">
<div class="extend-icon"><i data-lucide="plug"></i></div>
<h3>MCP Servers</h3>
<p>Connect external tools and data sources via Model Context Protocol. Stdio and HTTP transports
supported.</p>
<div class="extend-path">~/.omx/mcp.json</div>
</div>
</div>
</div>
</section>
<!-- ========== FEATURES GRID ========== -->
<section class="section section-alt">
<div class="container">
<div class="section-header center">
<span class="section-label">Built Right</span>
<h2 class="section-title">The details matter</h2>
</div>
<div class="details-grid">
<div class="detail-item">
<i data-lucide="feather"></i>
<h3>Lean System Prompts</h3>
<p>Minimal, focused instructions and concise tool descriptions. Your tokens go toward actual work,
not bloated framework overhead.</p>
</div>
<div class="detail-item">
<i data-lucide="shield"></i>
<h3>Zero Telemetry</h3>
<p>No usage tracking, no analytics, no data collection. Your code and conversations never leave your
machine.</p>
</div>
<div class="detail-item">
<i data-lucide="scissors"></i>
<h3>Context Editing</h3>
<p>Automatically trims old tool call payloads and thinking blocks from your conversation history.
Keeps token usage lean in long sessions.</p>
</div>
<div class="detail-item">
<i data-lucide="sparkles"></i>
<h3>Extended Thinking</h3>
<p>Enable deeper reasoning for complex tasks. The model thinks step by step before responding, with
configurable budget limits.</p>
</div>
<div class="detail-item">
<i data-lucide="file-check"></i>
<h3>CLAUDE.md Compatible</h3>
<p>Already have a CLAUDE.md in your repo? OmniContext CLI reads it automatically, right alongside
OMX.md. Zero-friction migration.</p>
</div>
<div class="detail-item">
<i data-lucide="archive"></i>
<h3>Auto-Compaction</h3>
<p>When context hits 80% capacity, the conversation is compacted, key memories are extracted, and a
fresh session picks up where you left off.</p>
</div>
<div class="detail-item">
<i data-lucide="database"></i>
<h3>Native Prompt Caching</h3>
<p>Automatic cache control for Anthropic and Gemini. Custom TTL settings (5 min or 1 hour) keep
frequently used context cached and costs down.</p>
</div>
<div class="detail-item">
<i data-lucide="file-cog"></i>
<h3>Project Instructions</h3>
<p>Drop an OMX.md in your repo root. Everyone on the team gets the same conventions and context.
Also reads CLAUDE.md for easy migration.</p>
</div>
</div>
</div>
</section>
<!-- ========== CTA ========== -->
<section class="section">
<div class="container">
<div class="cta-section">
<div class="cta-glow"></div>
<h2>Start building with OmniContext CLI</h2>
<p>One command. Zero config. Bring your own API key.</p>
<div class="cta-install">
<div class="install-command cta-cmd" id="installCmd2">
<code><span class="prompt">$</span> npm install -g omni-context-cli && omx</code>
<button class="copy-btn" id="copyBtn2" onclick="copyInstallCommand2()">
<i data-lucide="copy"></i>
</button>
</div>
</div>
<div class="cta-links">
<a href="https://github.com/bluenoah1991/omni-context-cli-landing/releases" target="_blank">
<i data-lucide="download"></i>
Download Desktop
</a>
<a href="docs/">
<i data-lucide="book-open"></i>
Documentation
</a>
<a href="https://github.com/bluenoah1991/omni-context-cli-landing" target="_blank">
<i data-lucide="github"></i>
GitHub
</a>
</div>
</div>
</div>
</section>
<footer>
<div class="container footer-content">
<div class="footer-left">
<span class="logo"><img src="assets/img/logo.svg" alt="" class="logo-icon">OmniContext</span>
<span class="footer-tagline">Zero telemetry AI coding assistant</span>
</div>
<div class="footer-links">
<a href="docs/">Docs</a>
<a href="https://github.com/bluenoah1991/omni-context-cli-landing" target="_blank">GitHub</a>
<a href="https://www.npmjs.com/package/omni-context-cli" target="_blank">npm</a>
</div>
</div>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>