-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1978 lines (1958 loc) · 65.3 KB
/
Copy pathindex.html
File metadata and controls
1978 lines (1958 loc) · 65.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
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" />
<title>forgekit — cognitive infrastructure for AI coding agents</title>
<meta
name="description"
content="forgekit gives AI coding agents a shared cognitive substrate: proof-carrying memory, impact foresight, reuse, and enforceable guardrails compiled into native tool config."
/>
<meta name="theme-color" content="#171310" />
<link rel="canonical" href="https://codewithjuber.github.io/forgekit/" />
<!-- Favicon + apple-touch-icon (deployed to the Pages root by static.yml). -->
<link
rel="icon"
type="image/svg+xml"
href="https://codewithjuber.github.io/forgekit/favicon.svg"
/>
<link
rel="apple-touch-icon"
href="https://codewithjuber.github.io/forgekit/apple-touch-icon.png"
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="forgekit" />
<meta
property="og:title"
content="forgekit — cognitive infrastructure for AI coding agents"
/>
<meta
property="og:description"
content="A production-grade substrate for Claude Code, Codex, Cursor, Gemini, Aider, and more: proof-carrying memory, blast-radius prediction, verified reuse, and cross-tool config."
/>
<meta
property="og:url"
content="https://codewithjuber.github.io/forgekit/"
/>
<!-- Absolute image URL required by scrapers; 1200x630 card rasterized once via
Chromium (docs/assets/og.png), copied to the Pages root by static.yml. -->
<meta
property="og:image"
content="https://codewithjuber.github.io/forgekit/og.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="forgekit — give every coding agent the same working memory."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="forgekit — cognitive infrastructure for AI coding agents"
/>
<meta
name="twitter:description"
content="One brain for every AI coding agent: proof-carrying memory, impact foresight, reuse, and enforced guardrails compiled to native config."
/>
<meta
name="twitter:image"
content="https://codewithjuber.github.io/forgekit/og.png"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "forgekit",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "macOS, Linux, Windows",
"license": "https://opensource.org/licenses/MIT",
"url": "https://codewithjuber.github.io/forgekit/",
"description": "Cross-tool config compiler and cognitive substrate with proof-carrying memory, impact prediction, reuse, and guardrails for AI coding agents.",
"offers": { "@type": "Offer", "price": "0" }
}
</script>
<style>
/* Hallmark · macrostructure: Stat-Led · genre: modern-minimal · tone: technical
* nav: N1b canonical · footer: Ft statement · theme: Ember (dark paper · warm accent · geometric-sans)
* pre-emit critique: P5 H4 E5 S5 R5 V4
* One design system, shared verbatim with the status page (scripts/build-pages.mjs):
* the same warm ember/near-black tokens sourced from brand.json.colors, one accent,
* a system font stack (no webfont to silently fail). test/pages.test.js enforces
* the full-palette parity (dark + light) against brand.json — this file's :root block
* is not a second source, it is a reconciled mirror. */
:root {
color-scheme: dark;
--bg: #171310;
--bg-2: #201a15;
--panel: #201a15;
--panel-2: #272019;
--text: #f2ede7;
--muted: #a99e90;
--faint: #8a7d6d;
--line: #372c22;
--line-strong: #4a3b2e;
--brand: #f26430;
--brand-2: #f7a072;
--ok: #67e8a5;
--shadow: 0 24px 64px rgba(23, 19, 16, 0.56);
--radius: 20px;
--radius-sm: 10px;
--max: 1180px;
--mono:
ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
--sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
/* Fluid type scale — one formula (src/brand.js: typeScaleCss), not per-element
magic numbers. Every font-size below is one of these ten steps.
test/pages.test.js checks this block is exactly what the formula emits. */
--fs-n2: clamp(12.5px, 0.79rem - 0.02vw, 12.64px);
--fs-n1: clamp(14.22px, 0.87rem + 0.09vw, 15px);
--fs-0: clamp(16px, 0.94rem + 0.23vw, 18px);
--fs-1: clamp(18px, 1.02rem + 0.41vw, 21.6px);
--fs-2: clamp(20.25px, 1.1rem + 0.64vw, 25.92px);
--fs-3: clamp(22.78px, 1.19rem + 0.95vw, 31.1px);
--fs-4: clamp(25.63px, 1.27rem + 1.33vw, 37.32px);
--fs-5: clamp(28.83px, 1.35rem + 1.81vw, 44.79px);
--fs-6: clamp(32.44px, 1.42rem + 2.42vw, 53.75px);
--fs-7: clamp(36.49px, 1.49rem + 3.18vw, 64.5px);
/* Spacing scale — one base unit (4px) × an integer step (src/brand.js:
spaceScaleCss). Every margin/padding/gap below is one of these steps. */
--sp-1: 4px;
--sp-2: 8px;
--sp-3: 12px;
--sp-4: 16px;
--sp-5: 20px;
--sp-6: 24px;
--sp-7: 28px;
--sp-8: 32px;
--sp-9: 36px;
--sp-10: 40px;
--sp-12: 48px;
--sp-14: 56px;
--sp-16: 64px;
--sp-20: 80px;
--sp-24: 96px;
/* Page-scoped structural tokens — like --radius / --ease-out above, these
are landing-local (NOT part of the brand.json color-parity set). Shadows
and tints are derived from the theme tokens so they flip with the scheme. */
--radius-lg: 26px;
--ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
--tint: color-mix(in srgb, var(--brand) 12%, transparent);
--tint-soft: color-mix(in srgb, var(--brand) 7%, transparent);
--hairline: color-mix(in srgb, var(--line-strong) 55%, transparent);
--bezel: inset 0 1px 0 color-mix(in srgb, var(--text) 7%, transparent);
}
@media (prefers-color-scheme: light) {
:root {
color-scheme: light;
--bg: #f7f3ed;
--bg-2: #fffdf9;
--panel: #fffdf9;
--panel-2: #efe7db;
--text: #201a15;
--muted: #6b5f50;
--faint: #7e7161;
--line: #e2d6c4;
--line-strong: #cbbba3;
/* Accents darkened for AA contrast (>=4.5:1) on the light paper — the raw
peach/mint tints read at ~2:1 on #f7f3ed. Single source: brand.json.colors.light. */
--brand: #ba4b1e;
--brand-2: #b8481c;
--ok: #1b7e48;
--shadow: 0 24px 64px rgba(32, 26, 21, 0.12);
}
}
* {
box-sizing: border-box;
}
/* Gate 34: overflow-x clip on BOTH html and body — never hidden. */
html,
body {
overflow-x: clip;
}
html {
scroll-behavior: smooth;
background: var(--bg);
}
/* Motion is opt-out: every transition/animation collapses to ~0 so a
reduced-motion visitor sees the final, fully-legible layout instantly. */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.001ms !important;
animation-delay: 0ms !important;
scroll-behavior: auto !important;
transition-duration: 0.001ms !important;
}
}
body {
margin: 0;
color: var(--text);
font: var(--fs-0) / 1.65 var(--sans);
/* Two ember washes — a warm forge-glow top-right, a fainter counter-light
bottom-left — both derived from the accent tokens so they flip per theme. */
background:
radial-gradient(
1120px 560px at 90% -12%,
color-mix(in srgb, var(--brand) 15%, transparent),
transparent 66%
),
radial-gradient(
820px 520px at -6% 6%,
color-mix(in srgb, var(--brand-2) 8%, transparent),
transparent 60%
),
var(--bg);
background-attachment: fixed;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
a {
color: inherit;
}
/* Focus ring shows instantly — never transition outline (a11y). */
a:focus-visible,
button:focus-visible {
outline: 3px solid var(--brand-2);
outline-offset: 3px;
border-radius: var(--radius-sm);
}
::selection {
background: var(--brand);
color: var(--bg);
}
.wrap {
width: min(var(--max), calc(100% - 48px));
margin: 0 auto;
}
.mono {
font-family: var(--mono);
}
.skip {
position: absolute;
left: var(--sp-4);
top: -80px;
background: var(--text);
color: var(--bg);
padding: var(--sp-3) var(--sp-4);
border-radius: var(--radius-sm);
z-index: 30;
}
.skip:focus {
top: var(--sp-4);
}
/* ---- Nav (N1b canonical) ---------------------------------------- */
.nav {
position: sticky;
top: 0;
z-index: 20;
border-bottom: 1px solid var(--line);
background: color-mix(in srgb, var(--bg) 78%, transparent);
/* Gate: compositor-friendly blur — kept ≤8px so the sticky nav doesn't
trigger a heavy repaint on every scroll frame. */
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.nav-inner {
min-height: 66px;
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--sp-6);
}
.brand {
display: inline-flex;
gap: var(--sp-3);
align-items: center;
text-decoration: none;
font: 700 var(--fs-0) var(--mono);
letter-spacing: -0.03em;
}
.logo {
width: 30px;
height: 30px;
border-radius: 9px;
display: grid;
place-items: center;
background: linear-gradient(150deg, var(--brand), var(--brand-2));
color: var(--bg);
font-weight: 800;
font-size: var(--fs-n1);
box-shadow:
0 6px 18px color-mix(in srgb, var(--brand) 40%, transparent),
var(--bezel);
}
.brand em {
color: var(--brand);
font-style: normal;
}
.nav-links {
display: flex;
align-items: center;
gap: var(--sp-6);
font: 500 var(--fs-n1) var(--mono);
letter-spacing: -0.01em;
}
.nav-links a {
color: var(--muted);
text-decoration: none;
transition: color 0.16s var(--ease-out);
}
.nav-links a:hover {
color: var(--text);
}
.nav-links .pill {
color: var(--text);
border: 1px solid var(--line-strong);
border-radius: 999px;
padding: var(--sp-2) var(--sp-4);
transition:
border-color 0.18s var(--ease-out),
background 0.18s var(--ease-out),
transform 0.18s var(--ease-spring);
}
.nav-links .pill:hover {
border-color: var(--brand);
background: var(--tint);
transform: translateY(-1px);
}
@media (max-width: 760px) {
.nav-links a:not(.pill) {
display: none;
}
.wrap {
width: min(var(--max), calc(100% - 32px));
}
}
/* ---- Hero (Stat-Led) -------------------------------------------- */
.hero {
padding: var(--sp-24) 0 var(--sp-12);
}
.eyebrow {
display: inline-flex;
gap: var(--sp-3);
align-items: center;
margin: 0 0 var(--sp-6);
padding: var(--sp-2) var(--sp-4) var(--sp-2) var(--sp-3);
border: 1px solid var(--line);
border-radius: 999px;
background: color-mix(in srgb, var(--panel) 60%, transparent);
color: var(--brand-2);
font: 600 var(--fs-n2) var(--mono);
letter-spacing: 0.12em;
text-transform: uppercase;
}
/* Honest status dot — a plain marker, not a faux-live pulse. No glow ring,
no animation pretending to be a heartbeat. */
.dot {
width: 7px;
height: 7px;
border-radius: 999px;
background: var(--ok);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 22%, transparent);
}
h1 {
margin: 0;
max-width: 17ch;
/* The display voice is monospace — the product compiles config, so its
headline is set in the same family as the code it emits. Tight tracking
and leading keep the mono forms from reading as a terminal dump. */
font: 700 var(--fs-7) / 1.02 var(--mono);
letter-spacing: -0.045em;
overflow-wrap: anywhere;
min-width: 0;
}
h1 span {
color: var(--brand);
}
.lede {
margin: var(--sp-7) 0 0;
max-width: 60ch;
color: var(--muted);
font-size: var(--fs-1);
line-height: 1.6;
text-wrap: pretty;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: var(--sp-3);
margin-top: var(--sp-8);
}
.btn {
display: inline-flex;
min-height: 48px;
align-items: center;
justify-content: center;
gap: var(--sp-2);
border-radius: 999px;
border: 1px solid var(--line-strong);
padding: var(--sp-3) var(--sp-6);
text-decoration: none;
font: 650 var(--fs-n1) var(--mono);
letter-spacing: -0.01em;
white-space: nowrap;
transition:
background 0.18s var(--ease-out),
border-color 0.18s var(--ease-out),
color 0.18s var(--ease-out),
box-shadow 0.18s var(--ease-out),
transform 0.16s var(--ease-spring);
}
.btn:hover {
transform: translateY(-2px);
}
.btn:active {
transform: translateY(0);
}
.btn-primary {
background: var(--text);
color: var(--bg);
border-color: transparent;
}
.btn-primary:hover {
background: var(--brand);
color: var(--bg);
box-shadow: 0 12px 30px
color-mix(in srgb, var(--brand) 34%, transparent);
}
.btn-secondary {
background: color-mix(in srgb, var(--panel) 55%, transparent);
}
.btn-secondary:hover {
border-color: var(--brand);
color: var(--brand-2);
background: var(--tint-soft);
}
/* The install affordance — the page's one crafted "instrument". A framed
prompt with an ember caret, sized in the mono display voice. */
.command {
margin-top: var(--sp-6);
display: flex;
max-width: 640px;
align-items: center;
gap: var(--sp-3);
border: 1px solid var(--line-strong);
border-radius: var(--radius-sm);
padding: var(--sp-3) var(--sp-3) var(--sp-3) var(--sp-4);
background: var(--panel);
box-shadow: var(--shadow), var(--bezel);
overflow-x: auto;
font: 600 var(--fs-n1) var(--mono);
transition: border-color 0.18s var(--ease-out);
}
.command:hover {
border-color: color-mix(in srgb, var(--brand) 55%, var(--line-strong));
}
.command .prompt {
color: var(--brand);
flex: none;
font-weight: 700;
}
.command code {
flex: 1;
white-space: nowrap;
color: var(--text);
}
.command button {
flex: none;
border: 1px solid var(--line-strong);
background: var(--panel-2);
color: var(--muted);
border-radius: 8px;
padding: var(--sp-2) var(--sp-4);
cursor: pointer;
font: 650 var(--fs-n2) var(--mono);
letter-spacing: 0.02em;
transition:
color 0.16s var(--ease-out),
border-color 0.16s var(--ease-out),
background 0.16s var(--ease-out);
}
.command button:hover {
color: var(--text);
border-color: var(--brand);
background: var(--tint);
}
/* ---- Hero diagram (the real, shipped SVG) ----------------------- */
.diagram {
margin: var(--sp-16) 0 0;
}
.diagram figure {
position: relative;
margin: 0;
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
background: var(--panel);
box-shadow: var(--shadow), var(--bezel);
}
/* Schematic corner ticks — the signature detail. Two opposed L-brackets read
as an instrument bezel / blueprint crop, quietly reinforcing "engineered,
measured infrastructure" without adding chrome. */
.diagram figure::before,
.diagram figure::after {
content: "";
position: absolute;
width: 14px;
height: 14px;
border: 1.5px solid var(--brand);
opacity: 0.55;
pointer-events: none;
z-index: 1;
}
.diagram figure::before {
top: 12px;
left: 12px;
border-right: 0;
border-bottom: 0;
border-top-left-radius: 4px;
}
.diagram figure::after {
bottom: 12px;
right: 12px;
border-left: 0;
border-top: 0;
border-bottom-right-radius: 4px;
}
/* The real shipped hero art, inlined so it resolves in local preview AND on
the deployed site root (the deploy copies only index.html, not docs/assets).
Two palettes baked in — toggle by scheme, never recolor via CSS. */
.hero-art {
display: block;
width: 100%;
height: auto;
}
.hero-art-light {
display: none;
}
@media (prefers-color-scheme: light) {
.hero-art-dark {
display: none;
}
.hero-art-light {
display: block;
}
}
.diagram figcaption {
color: var(--faint);
font: 500 var(--fs-n1) var(--mono);
line-height: 1.6;
margin-top: var(--sp-5);
text-align: center;
max-width: 68ch;
margin-inline: auto;
}
/* ---- Stat band -------------------------------------------------- */
.stats {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 0;
margin: var(--sp-16) 0 0;
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
background: var(--panel);
box-shadow: var(--bezel);
}
.stat {
position: relative;
padding: var(--sp-8) var(--sp-6) var(--sp-7);
border-right: 1px solid var(--line);
}
/* Each readout wears a short ember gauge-tick above the figure. */
.stat::before {
content: "";
position: absolute;
top: 0;
left: var(--sp-6);
width: 26px;
height: 2px;
background: var(--brand);
}
.stat:last-child {
border-right: 0;
}
.stat b {
display: block;
font: 700 var(--fs-5) var(--mono);
letter-spacing: -0.04em;
font-variant-numeric: tabular-nums;
color: var(--text);
}
.stat span {
display: block;
margin-top: var(--sp-3);
color: var(--muted);
font-size: var(--fs-n1);
}
.stat small {
display: block;
margin-top: var(--sp-2);
color: var(--faint);
font: 400 var(--fs-n2) var(--mono);
}
@media (max-width: 860px) {
.stats {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stat:nth-child(2) {
border-right: 0;
}
.stat:nth-child(1),
.stat:nth-child(2) {
border-bottom: 1px solid var(--line);
}
}
@media (max-width: 460px) {
.stats {
grid-template-columns: 1fr;
}
.stat {
border-right: 0;
border-bottom: 1px solid var(--line);
}
.stat:last-child {
border-bottom: 0;
}
}
/* ---- Sections --------------------------------------------------- */
section {
padding: var(--sp-24) 0;
border-top: 1px solid var(--line);
}
/* Section reference tag — a schematic label, not decoration: an ember index
mark keys the eye to each stage of the story. */
.kicker {
display: inline-flex;
align-items: center;
gap: var(--sp-3);
margin: 0 0 var(--sp-5);
color: var(--brand);
font: 700 var(--fs-n2) var(--mono);
letter-spacing: 0.2em;
text-transform: uppercase;
}
.kicker::before {
content: "";
width: 22px;
height: 2px;
background: var(--brand);
}
h2 {
margin: 0;
max-width: 22ch;
font: 700 var(--fs-5) / 1.08 var(--mono);
letter-spacing: -0.035em;
overflow-wrap: anywhere;
min-width: 0;
}
.sub {
color: var(--muted);
margin: var(--sp-5) 0 0;
font-size: var(--fs-1);
line-height: 1.6;
max-width: 62ch;
text-wrap: pretty;
}
/* Capability list — icon + copy rows divided by hairlines, NOT a grid of
identical bordered icon-tiles (breaks the card-in-card / icon-grid tell). */
.caps {
margin: var(--sp-12) 0 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0 var(--sp-16);
}
.cap {
position: relative;
display: grid;
grid-template-columns: 42px 1fr;
gap: var(--sp-4);
align-items: start;
padding: var(--sp-7) 0;
border-top: 1px solid var(--line);
}
/* Hairline lights up on hover — a low-key affordance that keeps the eye moving. */
.cap::before {
content: "";
position: absolute;
top: -1px;
left: 0;
width: 0;
height: 2px;
background: var(--brand);
transition: width 0.32s var(--ease-out);
}
.cap:hover::before {
width: 42px;
}
.cap-ico {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border: 1px solid var(--line);
border-radius: 11px;
background: var(--tint-soft);
color: var(--brand-2);
transition:
border-color 0.2s var(--ease-out),
background 0.2s var(--ease-out);
}
.cap:hover .cap-ico {
border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
background: var(--tint);
}
.cap-ico svg {
width: 22px;
height: 22px;
}
.cap h3 {
margin: var(--sp-1) 0 var(--sp-2);
font: 600 var(--fs-2) var(--sans);
letter-spacing: -0.01em;
}
.cap p {
margin: 0;
color: var(--muted);
font-size: var(--fs-n1);
line-height: 1.6;
}
@media (max-width: 760px) {
.caps {
grid-template-columns: 1fr;
}
}
/* Workflow — steps beside an honestly-labelled code listing (no fake
terminal window: no traffic-light dots, no mock title bar). */
.split {
display: grid;
grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
gap: var(--sp-12);
align-items: start;
}
.steps {
display: grid;
gap: var(--sp-3);
margin-top: var(--sp-8);
counter-reset: step;
}
.step {
display: grid;
grid-template-columns: 36px 1fr;
gap: var(--sp-5);
align-items: start;
padding: var(--sp-5) 0;
border-top: 1px solid var(--line);
}
/* A real, ordered sequence — so the numeric markers carry information. */
.step-num {
counter-increment: step;
width: 36px;
height: 36px;
border-radius: 10px;
display: grid;
place-items: center;
background: var(--tint);
border: 1px solid color-mix(in srgb, var(--brand) 32%, var(--line));
color: var(--brand-2);
font: 700 var(--fs-n1) var(--mono);
font-variant-numeric: tabular-nums;
}
.step-num::before {
content: counter(step, decimal-leading-zero);
}
.step h3 {
margin: var(--sp-1) 0 var(--sp-2);
font: 600 var(--fs-2) var(--sans);
letter-spacing: -0.01em;
}
.step p {
margin: 0;
color: var(--muted);
line-height: 1.6;
}
figure.listing {
margin: 0;
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--panel-2);
box-shadow: var(--shadow), var(--bezel);
overflow: hidden;
}
figure.listing figcaption {
display: flex;
align-items: center;
gap: var(--sp-3);
padding: var(--sp-3) var(--sp-5);
border-bottom: 1px solid var(--line);
color: var(--faint);
font: 600 var(--fs-n2) var(--mono);
letter-spacing: 0.06em;
text-transform: uppercase;
}
figure.listing figcaption::before {
content: "";
width: 7px;
height: 7px;
border-radius: 999px;
background: var(--brand);
flex: none;
}
pre {
margin: 0;
padding: var(--sp-6) var(--sp-5);
overflow-x: auto;
font: var(--fs-n1) / 1.75 var(--mono);
color: var(--text);
}
.c-dim {
color: var(--faint);
}
.c-hot {
color: var(--brand-2);
}
.c-ok {
color: var(--ok);
}
/* Evidence — two honest limits, real icons. */
.honesty {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: var(--sp-10);
margin-top: var(--sp-12);
}
.honest {
display: grid;
grid-template-columns: 42px 1fr;
gap: var(--sp-4);
align-items: start;
padding-top: var(--sp-7);
border-top: 2px solid var(--brand);
}
.honest .cap-ico {
color: var(--brand);
border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
}
.honest h3 {
margin: var(--sp-1) 0 var(--sp-2);
font: 600 var(--fs-2) var(--sans);
letter-spacing: -0.01em;
}
.honest p {
margin: 0;
color: var(--muted);
line-height: 1.6;
}
@media (max-width: 640px) {
.honesty {
grid-template-columns: 1fr;
gap: var(--sp-6);
}
}
/* Data sources */
.sources {
display: grid;
gap: var(--sp-3);
padding: 0;
margin: var(--sp-8) 0 0;
list-style: none;
}
.sources li {
overflow-wrap: anywhere;
border-left: 3px solid var(--brand);
padding: var(--sp-2) 0 var(--sp-2) var(--sp-4);
color: var(--muted);
font: 500 var(--fs-n1) var(--mono);
}
footer {
border-top: 1px solid var(--line);
padding: var(--sp-10) 0;
color: var(--muted);
}
.foot {
display: flex;
justify-content: space-between;
gap: var(--sp-5);
flex-wrap: wrap;
}
.foot .mono {
font-size: var(--fs-n1);
color: var(--faint);
}
.foot a {
color: var(--muted);
text-decoration: none;
margin-left: var(--sp-5);
white-space: nowrap;
font: 500 var(--fs-n1) var(--mono);
transition: color 0.16s var(--ease-out);
}
.foot a:first-child {
margin-left: 0;
}
.foot a:hover {
color: var(--brand-2);
}
@media (max-width: 900px) {
.split {
grid-template-columns: 1fr;
}
}
@media (max-width: 560px) {
.hero {
padding-top: var(--sp-16);
}
section {
padding: var(--sp-16) 0;
}
.foot a {
margin-left: 0;
margin-right: var(--sp-5);
}
}
/* Orchestrated hero entrance — one calm, staggered rise on load. Gated behind
no-preference so reduced-motion visitors never see a hidden/animated state. */
@media (prefers-reduced-motion: no-preference) {
.hero > .wrap > .eyebrow,
.hero > .wrap > h1,
.hero > .wrap > .lede,
.hero > .wrap > .actions,
.hero > .wrap > .command,
.hero > .wrap > .diagram,
.hero > .wrap > .stats {
animation: rise 0.72s var(--ease-out) both;
}
.hero > .wrap > h1 {
animation-delay: 0.06s;
}
.hero > .wrap > .lede {
animation-delay: 0.14s;
}
.hero > .wrap > .actions {
animation-delay: 0.2s;
}
.hero > .wrap > .command {
animation-delay: 0.26s;
}
.hero > .wrap > .diagram {
animation-delay: 0.34s;
}
.hero > .wrap > .stats {
animation-delay: 0.4s;
}
@keyframes rise {
from {
opacity: 0;
transform: translateY(14px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
}
</style>
</head>
<body>
<a class="skip" href="#main">Skip to content</a>
<header class="nav">
<div class="wrap nav-inner">
<a class="brand" href="#top" aria-label="forgekit home"
><span class="logo" aria-hidden="true">F</span>forge<em>kit</em></a
>
<nav class="nav-links" aria-label="Primary navigation">
<a href="#platform">Platform</a>
<a href="#workflow">Workflow</a>
<a href="#evidence">Evidence</a>
<a href="https://codewithjuber.github.io/forgekit/status/">Status</a>
<a class="pill" href="https://github.com/CodeWithJuber/forgekit"
>GitHub ↗</a
>
</nav>
</div>
</header>
<main id="main">
<section class="hero" id="top" aria-labelledby="hero-title">
<div class="wrap">
<p class="eyebrow">
<span class="dot" aria-hidden="true"></span> forgekit v0.25.0 · MIT
· zero runtime dependencies
</p>
<h1 id="hero-title">
Give every coding agent the same <span>working memory.</span>
</h1>
<p class="lede">