-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
895 lines (770 loc) · 31.3 KB
/
index.html
File metadata and controls
895 lines (770 loc) · 31.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Analytics 4 — replace G-7CR1MW6RL0 with your Measurement ID from https://analytics.google.com -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7CR1MW6RL0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7CR1MW6RL0');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AgentLinux -- Linux, for agents</title>
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://agentlinux.org">
<meta property="og:title" content="AgentLinux -- Linux, for agents">
<meta property="og:description" content="A purpose-built Linux distribution for AI coding agents. Full OS isolation, pre-configured toolchains, agents in the repos.">
<meta property="og:image" content="https://agentlinux.org/assets/og-image.svg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="AgentLinux -- Linux, for agents">
<meta name="twitter:description" content="A purpose-built Linux distribution for AI coding agents.">
<meta name="twitter:image" content="https://agentlinux.org/assets/og-image.svg">
<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=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0a0a0a;
--bg-secondary: #141414;
--bg-tertiary: #1e1e1e;
--text-primary: #e0e0e0;
--text-secondary: #a0a0a0;
--text-muted: #666666;
--border: #2a2a2a;
--accent: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
background: var(--bg-primary);
color: var(--text-primary);
font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', monospace;
line-height: 1.6;
font-size: 16px;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
/* Sticky Nav */
nav {
position: sticky;
top: 0;
z-index: 1000;
background: var(--bg-primary);
border-bottom: 1px solid var(--border);
}
.nav-inner {
max-width: 900px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
.nav-logo {
font-weight: 700;
font-size: 1.2rem;
color: var(--accent);
text-decoration: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
margin-left: 2rem;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: color 0.2s ease;
}
.nav-links a:hover {
color: var(--accent);
}
@media (max-width: 640px) {
.nav-links a {
margin-left: 1rem;
font-size: 0.75rem;
}
}
/* Section base styles */
.section-container {
max-width: 900px;
margin: 0 auto;
padding: 6rem 2rem;
display: flex;
flex-direction: column;
justify-content: center;
}
section.full-height {
min-height: 100vh;
}
section.full-height .section-container {
min-height: 100vh;
}
section h2 {
font-size: 2rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 1rem;
}
section p {
color: var(--text-secondary);
}
/* Hero Section */
#hero .section-container {
align-items: center;
text-align: center;
}
.hero-mascot {
width: 360px;
height: 180px;
margin-bottom: 2rem;
image-rendering: pixelated;
}
.hero-title {
font-size: 3.5rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.5rem;
letter-spacing: -0.02em;
}
.hero-tagline {
font-size: 1.5rem;
color: var(--text-secondary);
margin-bottom: 2rem;
font-weight: 400;
}
.hero-value-prop {
font-size: 1rem;
color: var(--text-secondary);
max-width: 600px;
margin-bottom: 3rem;
line-height: 1.8;
}
.hero-cta {
display: inline-block;
color: var(--accent);
background: transparent;
border: 1px solid var(--accent);
padding: 0.875rem 2.5rem;
font-family: inherit;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.1em;
text-decoration: none;
cursor: pointer;
transition: all 0.2s ease;
}
.hero-cta:hover {
background: var(--accent);
color: var(--bg-primary);
}
@media (max-width: 640px) {
.hero-mascot {
width: 200px;
height: 113px;
}
.hero-title {
font-size: 2.25rem;
}
.hero-tagline {
font-size: 1.125rem;
}
.hero-value-prop {
font-size: 0.875rem;
}
}
/* Problem Section */
#problem {
background: var(--bg-secondary);
}
.problem-intro {
font-size: 1.05rem;
color: var(--text-secondary);
margin-bottom: 3rem;
line-height: 1.8;
max-width: 760px;
}
.pain-point {
margin-bottom: 3rem;
}
.pain-point:last-child {
margin-bottom: 2rem;
}
.pain-point-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
}
.pain-point-icon {
width: 24px;
height: 24px;
color: var(--text-secondary);
flex-shrink: 0;
}
.pain-point-title {
font-size: 1.25rem;
font-weight: 700;
color: var(--accent);
}
.pain-point-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.pain-point-col {
padding: 1.25rem;
border: 1px solid var(--border);
border-radius: 4px;
}
.pain-point-col-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin-bottom: 0.75rem;
font-weight: 500;
}
.pain-point-col p {
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 0;
}
.pain-point code {
background: var(--bg-tertiary);
padding: 0.15em 0.4em;
border-radius: 3px;
font-size: 0.9em;
color: var(--text-primary);
}
.pain-point .punch {
color: var(--text-primary);
font-style: italic;
}
@media (max-width: 640px) {
.pain-point-columns {
grid-template-columns: 1fr;
}
}
.problem-bridge {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
font-size: 1.1rem;
color: var(--text-primary);
font-weight: 500;
}
/* Features Section */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-card {
background: var(--bg-tertiary);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1.5rem;
}
.feature-icon {
width: 24px;
height: 24px;
color: var(--text-secondary);
margin-bottom: 0.75rem;
}
.feature-title {
font-size: 1rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.5rem;
}
.feature-desc {
font-size: 0.875rem;
color: var(--text-secondary);
line-height: 1.7;
}
.features-intro {
font-size: 1.05rem;
color: var(--text-secondary);
line-height: 1.8;
max-width: 760px;
}
@media (max-width: 640px) {
.features-grid {
grid-template-columns: 1fr;
}
}
/* Comparison Section */
#comparison {
background: var(--bg-secondary);
}
.comparison-intro {
font-size: 1.05rem;
color: var(--text-secondary);
margin-bottom: 3rem;
line-height: 1.8;
max-width: 760px;
}
.comparison-block {
margin-bottom: 2.5rem;
}
.comparison-block:last-of-type {
margin-bottom: 2rem;
}
.comparison-block h3 {
font-size: 1.1rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.75rem;
}
.comparison-block p {
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 0.75rem;
}
.comparison-block code {
background: var(--bg-tertiary);
padding: 0.15em 0.4em;
border-radius: 3px;
font-size: 0.9em;
color: var(--text-primary);
}
.comparison-block .solution {
color: var(--text-primary);
font-weight: 500;
}
.comparison-closing {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
font-size: 1.1rem;
color: var(--text-primary);
line-height: 1.8;
font-weight: 500;
}
/* Signup Section */
#signup {
background: var(--bg-secondary);
}
.signup-subtext {
font-size: 1.05rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
line-height: 1.8;
max-width: 600px;
}
.signup-form {
display: flex;
gap: 1rem;
max-width: 500px;
width: 100%;
}
.signup-form input[type="email"] {
flex: 1;
background: var(--bg-tertiary);
border: 1px solid var(--border);
color: var(--text-primary);
padding: 0.875rem 1rem;
font-family: inherit;
font-size: 0.875rem;
outline: none;
transition: border-color 0.2s ease;
}
.signup-form input[type="email"]::placeholder {
color: var(--text-muted);
}
.signup-form input[type="email"]:focus {
border-color: var(--accent);
}
.signup-form button {
background: transparent;
border: 1px solid var(--accent);
color: var(--accent);
padding: 0.875rem 1.5rem;
font-family: inherit;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
}
.signup-form button:hover {
background: var(--accent);
color: var(--bg-primary);
}
.signup-form button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.signup-success {
color: var(--text-primary);
font-size: 1.05rem;
line-height: 1.8;
}
.signup-error {
color: #cc6666;
font-size: 0.875rem;
margin-top: 0.75rem;
}
@media (max-width: 640px) {
.signup-form {
flex-direction: column;
}
.signup-form input[type="email"],
.signup-form button {
width: 100%;
}
}
/* FAQ Section */
#faq {
background: var(--bg-primary);
}
.faq-list {
margin-top: 2rem;
max-width: 760px;
}
.faq-item {
margin-bottom: 2rem;
}
.faq-item:last-child {
margin-bottom: 0;
}
.faq-question {
font-size: 1rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.5rem;
}
.faq-answer {
font-size: 0.9375rem;
color: var(--text-secondary);
line-height: 1.8;
}
/* Footer */
footer {
background: var(--bg-secondary);
border-top: 1px solid var(--border);
}
footer .section-container {
padding: 2rem;
text-align: center;
}
footer p {
font-size: 0.8125rem;
color: var(--text-muted);
}
footer a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s ease;
}
footer a:hover {
color: var(--accent);
}
/* Responsive: Mobile (max-width: 640px) */
@media (max-width: 640px) {
.section-container {
padding: 4rem 1.25rem;
}
section h2 {
font-size: 1.5rem;
}
.problem-intro,
.features-intro,
.comparison-intro,
.signup-subtext {
font-size: 0.9375rem;
}
.pain-point-title {
font-size: 1.1rem;
}
.pain-point-col p {
font-size: 0.9375rem;
}
.problem-bridge {
font-size: 1rem;
}
.feature-card {
padding: 1.25rem;
}
.comparison-block h3 {
font-size: 1rem;
}
.comparison-block p {
font-size: 0.9375rem;
}
.comparison-closing {
font-size: 1rem;
}
.faq-question {
font-size: 0.9375rem;
}
.faq-answer {
font-size: 0.875rem;
}
}
/* Responsive: Tablet (max-width: 900px) */
@media (max-width: 900px) and (min-width: 641px) {
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
}
/* Prevent horizontal scrollbar */
body {
overflow-x: hidden;
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<a href="#" class="nav-logo">AgentLinux</a>
<div class="nav-links">
<a href="#problem">Problem</a>
<a href="#features">Features</a>
<a href="#signup">Signup</a>
<a href="#faq">FAQ</a>
</div>
</div>
</nav>
<section id="hero" class="full-height">
<div class="section-container">
<img src="assets/crab-mascot.svg" alt="AgentLinux crab mascot" class="hero-mascot">
<h1 class="hero-title">AgentLinux</h1>
<p class="hero-tagline">Linux, for agents</p>
<p class="hero-value-prop">A purpose-built Linux distribution that runs on a dedicated machine — virtual or physical — so your AI coding agent gets an entire OS to itself.</p>
<a href="#signup" class="hero-cta">Join the waitlist</a>
</div>
</section>
<section id="problem" class="full-height">
<div class="section-container">
<h2>The problem with running agents today</h2>
<p class="problem-intro">You need somewhere to run your agent. Every option available was designed for humans, not machines.</p>
<div class="pain-point">
<div class="pain-point-header">
<!-- Lucide: monitor -->
<svg class="pain-point-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="20" height="14" x="2" y="3" rx="2"/><line x1="8" x2="16" y1="21" y2="21"/><line x1="12" x2="12" y1="17" y2="21"/></svg>
<span class="pain-point-title">Your local machine</span>
</div>
<div class="pain-point-columns">
<div class="pain-point-col">
<div class="pain-point-col-label">// the engineer</div>
<p>You give the agent access to your machine and immediately face a choice: run it unrestricted and risk it wiping your <code>~/.ssh</code>, or sandbox it and spend your day approving every config file read, every <code>apt install</code>, every port binding. Either it's unsafe or it's unusable. <span class="punch">Your machine was built for you, not for a tireless process that doesn't know when to stop.</span></p>
</div>
<div class="pain-point-col">
<div class="pain-point-col-label">// the agent</div>
<p>I'm walking through someone else's house. Every file I touch might be important. Every package I install might conflict with theirs. Half the time I'm blocked by permission prompts I can't dismiss. I need <code>sudo</code> for basic setup but the engineer is right not to trust me with it. <span class="punch">I need my own space, not a corner of someone else's.</span></p>
</div>
</div>
</div>
<div class="pain-point">
<div class="pain-point-header">
<!-- Lucide: box -->
<svg class="pain-point-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"/><path d="m3.3 7 8.7 5 8.7-5"/><path d="M12 22V12"/></svg>
<span class="pain-point-title">Docker</span>
</div>
<div class="pain-point-columns">
<div class="pain-point-col">
<div class="pain-point-col-label">// the engineer</div>
<p>Containers seem perfect until you realize your agent needs Docker inside Docker to build and test services. Now you're debugging nested daemon sockets, volume mount propagation, and network namespaces within namespaces. Every <code>apt install</code> requires rebuilding the image. <span class="punch">Containers are for shipping apps, not housing workers.</span></p>
</div>
<div class="pain-point-col">
<div class="pain-point-col-label">// the agent</div>
<p>I can't <code>systemctl</code> start anything. I can't install packages without the whole container being rebuilt. My long-running sessions vanish when the container recycles. And tools like Claude Code refuse to run as <code>root</code>, but the container's default user is root. <span class="punch">I'm not a microservice — I'm a worker that needs a real OS.</span></p>
</div>
</div>
</div>
<div class="pain-point">
<div class="pain-point-header">
<!-- Lucide: server -->
<svg class="pain-point-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="20" height="8" x="2" y="2" rx="2" ry="2"/><rect width="20" height="8" x="2" y="14" rx="2" ry="2"/><line x1="6" x2="6.01" y1="6" y2="6"/><line x1="6" x2="6.01" y1="18" y2="18"/></svg>
<span class="pain-point-title">Generic VMs</span>
</div>
<div class="pain-point-columns">
<div class="pain-point-col">
<div class="pain-point-col-label">// the engineer</div>
<p>A full VM gives you real isolation. It also gives you a sysadmin job: provisioning Ubuntu, creating users, installing toolchains, configuring SSH, hardening security — before the agent writes one line of code. Multiply by ten agents. <span class="punch">You became the sysadmin for your agent fleet.</span></p>
</div>
<div class="pain-point-col">
<div class="pain-point-col-label">// the agent</div>
<p>I land in a blank Linux install that knows nothing about my workload. No language runtimes. No non-root user for me. No skills or rules preconfigured for how I work. Everything has to be provisioned by the engineer before I can start. <span class="punch">The environment should have been ready on boot.</span></p>
</div>
</div>
</div>
<p class="problem-bridge">What if the operating system itself was designed for agents?</p>
</div>
</section>
<section id="features" class="full-height">
<div class="section-container">
<h2>Built for agents from the ground up</h2>
<p class="features-intro">AgentLinux isn't a generic distro with a few scripts bolted on. It's an entire operating system where every default is configured for an agent — not a human.</p>
<div class="features-grid">
<div class="feature-card">
<!-- Lucide: minimize-2 (minimalistic) -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="4 14 10 14 10 20"/><polyline points="20 10 14 10 14 4"/><line x1="14" x2="21" y1="10" y2="3"/><line x1="3" x2="10" y1="21" y2="14"/></svg>
<div class="feature-title">Minimalistic</div>
<p class="feature-desc">Nothing the agent doesn't need. No desktop environment, no GUI stack, no bloat. Every resource goes to the agent's workload.</p>
</div>
<div class="feature-card">
<!-- Lucide: terminal -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="4 17 10 11 4 5"/><line x1="12" x2="20" y1="19" y2="19"/></svg>
<div class="feature-title">Automatic agent user</div>
<p class="feature-desc">Boots into a non-root user account automatically. Tools like Claude Code that refuse to run as <code>root</code> work out of the box — no setup required.</p>
</div>
<div class="feature-card">
<!-- Lucide: package -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7.5 4.27 9 5.15"/><path d="M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"/><path d="m3.3 7 8.7 5 8.7-5"/><path d="M12 22V12"/></svg>
<div class="feature-title">Easy-to-install package groups</div>
<p class="feature-desc">One command to install everything for web development, GUI testing, or any common agent workload. No hunting for individual packages.</p>
</div>
<div class="feature-card">
<!-- Lucide: wand-2 (skills) -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72Z"/><path d="m14 7 3 3"/><path d="M5 6v4"/><path d="M19 14v4"/><path d="M10 2v2"/><path d="M7 8H3"/><path d="M21 16h-4"/><path d="M11 3H9"/></svg>
<div class="feature-title">Agent skills</div>
<p class="feature-desc">Built-in skills for popular AI agents to work with distro-specific tooling and setup. The agent knows how to manage its own OS.</p>
</div>
<div class="feature-card">
<!-- Lucide: download -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" x2="12" y1="15" y2="3"/></svg>
<div class="feature-title">Agents in the repos</div>
<p class="feature-desc">Popular AI agents — Claude Code, Codex, and more — available directly from distro repositories. <code>apt install claude-code</code> and go.</p>
</div>
<div class="feature-card">
<!-- Lucide: puzzle (frameworks) -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.439 7.85c-.049.322.059.648.289.878l1.568 1.568c.47.47.706 1.087.706 1.704s-.235 1.233-.706 1.704l-1.611 1.611a.98.98 0 0 1-.837.276c-.47-.07-.802-.48-.968-.925a2.501 2.501 0 1 0-3.214 3.214c.446.166.855.497.925.968a.979.979 0 0 1-.276.837l-1.61 1.61a2.404 2.404 0 0 1-1.705.707 2.402 2.402 0 0 1-1.704-.706l-1.568-1.568a1.026 1.026 0 0 0-.877-.29c-.493.074-.84.504-1.02.968a2.5 2.5 0 1 1-3.237-3.237c.464-.18.894-.527.967-1.02a1.026 1.026 0 0 0-.289-.877l-1.568-1.568A2.402 2.402 0 0 1 1.998 12c0-.617.236-1.234.706-1.704L4.315 8.685a.98.98 0 0 1 .837-.276c.47.07.802.48.968.925a2.501 2.501 0 1 0 3.214-3.214c-.446-.166-.855-.497-.925-.968a.979.979 0 0 1 .276-.837l1.61-1.61a2.404 2.404 0 0 1 1.705-.707 2.402 2.402 0 0 1 1.704.706l1.568 1.568c.23.23.556.338.877.29.493-.074.84-.504 1.02-.968a2.5 2.5 0 1 1 3.237 3.237c-.464.18-.894.527-.967 1.02Z"/></svg>
<div class="feature-title">Frameworks and plugins</div>
<p class="feature-desc">Agent frameworks like GSD for Claude Code available in distro repos. Install productivity extensions the same way you install anything else.</p>
</div>
<div class="feature-card">
<!-- Lucide: wrench (CLI) -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76Z"/></svg>
<div class="feature-title">Agent-friendly CLI tools</div>
<p class="feature-desc">Custom command-line tooling designed to be operated by agents, not humans. Clear output, predictable behavior, machine-readable where it matters.</p>
</div>
<div class="feature-card">
<!-- Lucide: layers (distribution) -->
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z"/><path d="m22.54 12.43-8.58 3.91a2 2 0 0 1-1.66 0L3.46 12.5"/><path d="m22.54 16.43-8.58 3.91a2 2 0 0 1-1.66 0L3.46 16.5"/></svg>
<div class="feature-title">Multiple distribution formats</div>
<p class="feature-desc">Available as installation images, QEMU VM images, and Docker micro-VMs. Run it however your infrastructure expects — bare metal, cloud, or local.</p>
</div>
</div>
</div>
</section>
<section id="comparison" class="full-height">
<div class="section-container">
<h2>Why not just use what exists?</h2>
<p class="comparison-intro">Every option today was built for a different job. Here's what changes when the OS is designed for agents.</p>
<div class="comparison-block">
<h3>Local machine → a dedicated machine instead</h3>
<p class="solution">Instead of sharing your machine and choosing between unsafe access or endless approval prompts, give the agent its own AgentLinux instance. A separate machine — virtual or physical — where the agent has full autonomy and your files are never at risk.</p>
</div>
<div class="comparison-block">
<h3>Docker → a full OS instead of a locked box</h3>
<p class="solution">AgentLinux is a complete operating system. The agent installs packages with <code>apt</code> mid-session, starts services with <code>systemctl</code>, and keeps state across restarts. No docker-in-docker gymnastics. Boots into a non-root user that tools like Claude Code require.</p>
</div>
<div class="comparison-block">
<h3>Generic VMs → ready on boot instead of provisioning</h3>
<p class="solution">AgentLinux images boot with everything pre-configured: non-root agent user, toolchains, agent-friendly CLI tools, and popular agents right in the repos. A purpose-built environment in seconds, not hours.</p>
</div>
<p class="comparison-closing">Not another general-purpose distro hoping agents will figure it out. A go-to Linux distro choice for running your agents — built from the kernel config to the default shell for machines that write code.</p>
</div>
</section>
<section id="signup">
<div class="section-container">
<h2>Get early access</h2>
<p class="signup-subtext">AgentLinux is in active development. Join the waitlist to be notified when it's ready -- and get early access to preview builds.</p>
<form action="https://buttondown.com/api/emails/embed-subscribe/agentlinux" method="post" class="embeddable-buttondown-form signup-form" id="signup-form">
<input type="email" name="email" placeholder="you@example.com" required aria-label="Email address" />
<input type="hidden" name="embed" value="1" />
<button type="submit">Join the waitlist</button>
</form>
</div>
</section>
<section id="faq">
<div class="section-container">
<h2>Frequently asked questions</h2>
<div class="faq-list">
<div class="faq-item">
<p class="faq-question">What is AgentLinux?</p>
<p class="faq-answer">A Linux distribution purpose-built for AI coding agents. It runs on a dedicated machine — virtual or physical — where the agent gets an entire OS configured for its workload, not for human desktop use.</p>
</div>
<div class="faq-item">
<p class="faq-question">When will it be available?</p>
<p class="faq-answer">We're in early development. Join the waitlist to get notified when preview builds are ready.</p>
</div>
<div class="faq-item">
<p class="faq-question">Is it free?</p>
<p class="faq-answer">Yes. AgentLinux will be free and open source.</p>
</div>
<div class="faq-item">
<p class="faq-question">What agents does it support?</p>
<p class="faq-answer">Any agent that runs on Linux -- Claude Code, Codex, and more. If it can execute in a terminal, it runs on AgentLinux.</p>
</div>
<div class="faq-item">
<p class="faq-question">How is this different from Docker?</p>
<p class="faq-answer">Docker is a container runtime. AgentLinux is a full operating system on a dedicated machine. The agent gets persistent state, real process management, mid-session package installs, and an environment that survives restarts.</p>
</div>
</div>
</div>
</section>
<footer>
<div class="section-container">
<p>© 2026 AgentLinux</p>
</div>
</footer>
<script>
// Progressive enhancement for email signup form
document.getElementById('signup-form').addEventListener('submit', async function(e) {
// On file:// protocol, let the form POST normally (redirect)
if (window.location.protocol === 'file:') return;
e.preventDefault();
var form = e.target;
var button = form.querySelector('button');
var originalText = button.textContent;
button.textContent = 'Submitting...';
button.disabled = true;
try {
var response = await fetch(form.action, {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: new URLSearchParams(new FormData(form))
});
if (response.ok || response.redirected) {
form.innerHTML = '<p class="signup-success">You\'re on the list. We\'ll be in touch.</p>';
} else {
throw new Error('Submission failed');
}
} catch (err) {
button.textContent = originalText;
button.disabled = false;
// Fallback: submit form normally (will redirect)
form.submit();
}
});
</script>
</body>
</html>