-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
652 lines (622 loc) · 53.4 KB
/
Copy pathindex.html
File metadata and controls
652 lines (622 loc) · 53.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>codexskills — AI Agent Developer & Open Source Builder</title>
<meta name="description" content="codexskills — Full-stack developer portfolio. AI agent developer, open source contributor, creator of StackForge & Agent Forge.">
<meta name="keywords" content="developer portfolio, claude code portfolio, codexskills, AI agent developer, stackforge, agent forge">
<meta property="og:title" content="codexskills — Developer Portfolio">
<meta property="og:description" content="AI agent developer & open source builder. StackForge, Agent Forge, and developer tools.">
<meta property="og:url" content="https://codexskills.github.io">
<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=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
--bg:#0d1117;--bg2:#161b22;--bg3:#1c2333;
--surface:rgba(255,255,255,.03);--surface-hover:rgba(255,255,255,.06);
--border:rgba(255,255,255,.08);--border-hover:rgba(255,255,255,.12);
--text:#e6edf3;--text2:#8b949e;--text3:#484f58;
--accent:#3fb950;--accent2:#58a6ff;--accent3:#d2a8ff;
--orange:#d29922;--pink:#f778ba;
--gradient:linear-gradient(135deg,#3fb950,#58a6ff,#d2a8ff);
--radius:12px;--radius-sm:8px;--radius-lg:20px;
--ff-sans:'Inter',system-ui,-apple-system,sans-serif;
--ff-mono:'JetBrains Mono','Fira Code',monospace;
--shadow:0 8px 40px rgba(0,0,0,.4);
--max-w:1100px;--nav-h:64px;
--code-bg:#1a1f2e;
}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
font-family:var(--ff-sans);background:var(--bg);color:var(--text);
line-height:1.6;min-height:100vh;overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;outline:none;font-family:inherit}
img{display:block;max-width:100%}
input,textarea{font-family:inherit;outline:none}
ul{list-style:none}
.container{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section-label{font-family:var(--ff-mono);font-size:.72rem;color:var(--accent);font-weight:500;letter-spacing:.5px;margin-bottom:8px}
.section-title{font-size:2rem;font-weight:800;margin-bottom:16px}
.section-sub{font-size:.92rem;color:var(--text2);max-width:600px;margin-bottom:40px;line-height:1.7}
.navbar{
position:fixed;top:0;left:0;right:0;z-index:1000;
background:rgba(13,17,23,.85);backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-bottom:1px solid var(--border);height:var(--nav-h);
}
.navbar .container{display:flex;align-items:center;justify-content:space-between;height:100%}
.nav-logo{font-family:var(--ff-mono);font-weight:700;font-size:1.05rem;color:var(--accent);display:flex;align-items:center;gap:8px}
.nav-logo span{color:var(--text2);font-weight:400}
.nav-links{display:flex;gap:4px;align-items:center}
.nav-links a{padding:6px 14px;border-radius:var(--radius-sm);font-size:.82rem;font-weight:500;color:var(--text2);transition:.2s}
.nav-links a:hover{color:var(--text);background:var(--surface)}
.nav-cta{padding:6px 18px!important;background:var(--accent)!important;color:#0d1117!important;border-radius:var(--radius-sm)!important;font-weight:600!important;margin-left:8px}
.nav-cta:hover{opacity:.9}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;padding:4px;border-radius:var(--radius-sm)}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:.3s}
.mobile-menu{
position:fixed;top:var(--nav-h);left:0;right:0;bottom:0;z-index:999;
background:rgba(13,17,23,.98);backdrop-filter:blur(20px);
display:none;flex-direction:column;align-items:center;justify-content:center;gap:8px;
transform:translateX(100%);transition:transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open{transform:translateX(0);display:flex}
.mobile-menu a{font-size:1.2rem;font-weight:600;padding:12px 24px;color:var(--text2);transition:.2s}
.mobile-menu a:hover{color:var(--accent)}
.hero{
min-height:100vh;display:flex;align-items:center;padding-top:var(--nav-h);position:relative;overflow:hidden;
}
.hero-bg{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.hero-bg .grid{
position:absolute;inset:0;
background-image:linear-gradient(rgba(63,185,80,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(63,185,80,.03) 1px,transparent 1px);
background-size:40px 40px;
}
.hero-bg .glow{
position:absolute;top:20%;left:50%;transform:translate(-50%,-50%);
width:600px;height:600px;border-radius:50%;
background:radial-gradient(circle,rgba(63,185,80,.06),transparent 70%);
}
.hero-content{position:relative;z-index:1;width:100%}
.hero-code-block{
background:var(--code-bg);border:1px solid var(--border);border-radius:var(--radius);
padding:16px 20px;margin-bottom:32px;max-width:fit-content;font-family:var(--ff-mono);font-size:.78rem;line-height:1.8;box-shadow:0 4px 20px rgba(0,0,0,.3);
}
.hero-code-block .comment{color:var(--text3)}
.hero-code-block .keyword{color:var(--accent3)}
.hero-code-block .fn{color:var(--accent2)}
.hero-code-block .str{color:var(--accent)}
.hero-code-block .var{color:var(--orange)}
.hero-greeting{font-size:1rem;color:var(--text2);margin-bottom:8px;font-weight:500}
.hero-name{font-size:3.2rem;font-weight:900;line-height:1.1;margin-bottom:12px}
.hero-name .highlight{background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-roles{font-size:1.15rem;color:var(--text2);margin-bottom:20px;min-height:1.6em;font-family:var(--ff-mono)}
.hero-roles .cursor-blink{animation:blink .8s step-end infinite}
@keyframes blink{50%{opacity:0}}
.hero-desc{font-size:.95rem;color:var(--text2);max-width:580px;line-height:1.8;margin-bottom:28px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}
.btn{
display:inline-flex;align-items:center;gap:8px;padding:10px 24px;
border-radius:var(--radius-sm);font-size:.85rem;font-weight:600;transition:.3s;border:1px solid transparent;
}
.btn-primary{background:var(--accent);color:#0d1117}
.btn-primary:hover{box-shadow:0 4px 20px rgba(63,185,80,.3);transform:translateY(-1px)}
.btn-secondary{background:transparent;border-color:var(--border);color:var(--text)}
.btn-secondary:hover{border-color:var(--text2);background:var(--surface)}
.btn svg{width:16px;height:16px}
.hero-socials{display:flex;gap:12px}
.hero-socials a{
width:40px;height:40px;border-radius:var(--radius-sm);border:1px solid var(--border);
display:flex;align-items:center;justify-content:center;transition:.3s;color:var(--text2);
}
.hero-socials a:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px)}
.hero-socials a svg{width:18px;height:18px}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.about-text p{font-size:.92rem;color:var(--text2);line-height:1.8;margin-bottom:16px}
.about-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:24px}
.stat-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:20px;text-align:center;transition:.3s}
.stat-card:hover{border-color:var(--border-hover);transform:translateY(-2px)}
.stat-num{font-size:1.8rem;font-weight:800;background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.stat-label{font-size:.72rem;color:var(--text2);margin-top:4px;font-weight:500}
.about-code{background:var(--code-bg);border:1px solid var(--border);border-radius:var(--radius);padding:20px;font-family:var(--ff-mono);font-size:.75rem;line-height:2}
.about-code .line-num{color:var(--text3);margin-right:16px;user-select:none}
.about-code .key{color:var(--accent3)}
.about-code .str{color:var(--accent)}
.about-code .str2{color:var(--orange)}
.about-code .bool{color:var(--accent2)}
.skills-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.skill-cat{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px}
.skill-cat-title{font-family:var(--ff-mono);font-size:.72rem;font-weight:600;color:var(--accent);margin-bottom:16px;text-transform:uppercase;letter-spacing:.5px}
.skill-items{display:flex;flex-direction:column;gap:10px}
.skill-item{display:flex;align-items:center;gap:10px;font-size:.82rem;padding:6px 10px;border-radius:6px;transition:.2s;color:var(--text2)}
.skill-item:hover{background:var(--surface-hover);color:var(--text)}
.skill-item svg{width:16px;height:16px;flex-shrink:0;color:var(--accent2)}
.project-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.project-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:.3s}
.project-card:hover{border-color:var(--border-hover);transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.4)}
.project-img{
height:180px;background:var(--bg3);display:flex;align-items:center;
justify-content:center;position:relative;overflow:hidden;
}
.project-img .overlay{
position:absolute;inset:0;background:linear-gradient(to top,var(--bg),transparent 60%);
opacity:0;transition:.3s;
}
.project-card:hover .overlay{opacity:1}
.project-img .placeholder-icon{font-size:2.6rem;font-weight:800;background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.project-body{padding:20px}
.project-body h3{font-size:1rem;font-weight:700;margin-bottom:6px}
.project-body .desc{font-size:.78rem;color:var(--text2);line-height:1.6;margin-bottom:10px}
.project-body .outcome{font-size:.72rem;color:var(--accent);margin-bottom:10px;font-style:italic}
.project-tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}
.project-tags span{font-size:.62rem;padding:3px 10px;border-radius:20px;background:var(--surface);border:1px solid var(--border);font-family:var(--ff-mono);color:var(--accent2);font-weight:500}
.project-links{display:flex;gap:12px;font-size:.75rem;flex-wrap:wrap}
.project-links a{display:inline-flex;align-items:center;gap:6px;color:var(--text2);font-weight:500;transition:.2s}
.project-links a:hover{color:var(--accent)}
.project-links .star{color:var(--orange)}
.case-modal{
position:fixed;inset:0;z-index:2000;visibility:hidden;opacity:0;transition:.3s;padding:24px;
display:flex;align-items:center;justify-content:center;
}
.case-modal.active{visibility:visible;opacity:1}
.case-modal .overlay{position:absolute;inset:0;background:rgba(0,0,0,.7);backdrop-filter:blur(4px)}
.case-content{
position:relative;width:100%;max-width:720px;max-height:85vh;overflow-y:auto;
background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius-lg);
padding:36px;box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.case-close{
position:absolute;top:16px;right:16px;width:32px;height:32px;border-radius:50%;
background:var(--surface);display:flex;align-items:center;justify-content:center;color:var(--text2);transition:.3s;
}
.case-close:hover{background:rgba(255,80,80,.15);color:#ff5050}
.case-content h2{font-size:1.4rem;font-weight:700;margin-bottom:16px;padding-right:32px}
.case-content h3{font-size:.95rem;font-weight:600;margin-top:20px;margin-bottom:8px;color:var(--accent)}
.case-content p{font-size:.85rem;color:var(--text2);line-height:1.7;margin-bottom:12px}
.case-content .diagram{background:var(--code-bg);border:1px solid var(--border);border-radius:var(--radius);padding:20px;font-family:var(--ff-mono);font-size:.72rem;line-height:1.8;margin:12px 0;overflow-x:auto}
.case-content .diagram .arrow{color:var(--accent)}
.case-content .diagram .box{display:inline-block;padding:4px 10px;border:1px solid var(--border-hover);border-radius:6px;margin:2px 0}
.case-content ul{list-style:disc;padding-left:20px;font-size:.85rem;color:var(--text2);margin-bottom:12px}
.case-content ul li{margin-bottom:4px}
.oss-intro{font-size:.92rem;color:var(--text2);margin-bottom:24px;line-height:1.7}
.contrib-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px}
.contrib-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:16px;display:flex;align-items:flex-start;gap:12px;transition:.3s}
.contrib-card:hover{border-color:var(--border-hover);transform:translateY(-2px)}
.contrib-icon{width:36px;height:36px;border-radius:var(--radius-sm);background:var(--bg3);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.8rem}
.contrib-card h4{font-size:.88rem;font-weight:600;margin-bottom:2px}
.contrib-card p{font-size:.75rem;color:var(--text2);line-height:1.5}
.contrib-graph{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px;text-align:center;margin-bottom:20px}
.contrib-graph .graph-grid{display:grid;grid-template-columns:repeat(52,1fr);gap:2px;margin-bottom:12px;justify-content:center}
.contrib-graph .graph-cell{aspect-ratio:1;border-radius:2px;background:var(--bg3);min-width:8px}
.contrib-graph .graph-cell.l1{background:rgba(63,185,80,.2)}
.contrib-graph .graph-cell.l2{background:rgba(63,185,80,.4)}
.contrib-graph .graph-cell.l3{background:rgba(63,185,80,.6)}
.contrib-graph .graph-cell.l4{background:rgba(63,185,80,.9)}
.contrib-graph p{font-size:.72rem;color:var(--text3);font-family:var(--ff-mono)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.blog-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px;transition:.3s}
.blog-card:hover{border-color:var(--border-hover);transform:translateY(-2px)}
.blog-card .tag{font-family:var(--ff-mono);font-size:.62rem;color:var(--accent);margin-bottom:8px;display:inline-block}
.blog-card h4{font-size:.95rem;font-weight:600;margin-bottom:8px;line-height:1.4}
.blog-card p{font-size:.78rem;color:var(--text2);line-height:1.6;margin-bottom:12px}
.blog-card .meta{font-size:.68rem;color:var(--text3);display:flex;gap:12px}
.timeline{position:relative;padding-left:28px}
.timeline::before{content:'';position:absolute;left:0;top:8px;bottom:8px;width:2px;background:var(--border)}
.timeline-item{position:relative;padding-bottom:32px;padding-left:20px}
.timeline-item::before{content:'';position:absolute;left:-30px;top:6px;width:10px;height:10px;border-radius:50%;background:var(--accent);border:2px solid var(--bg)}
.timeline-item:last-child{padding-bottom:0}
.timeline-item .company{font-size:.88rem;font-weight:600;color:var(--accent2)}
.timeline-item .role{font-size:1rem;font-weight:600;margin:2px 0}
.timeline-item .date{font-size:.72rem;color:var(--text3);font-family:var(--ff-mono);margin-bottom:8px}
.timeline-item .desc{font-size:.82rem;color:var(--text2);line-height:1.6;margin-bottom:8px}
.timeline-item .techs{display:flex;gap:6px;flex-wrap:wrap}
.timeline-item .techs span{font-size:.62rem;padding:2px 10px;border-radius:20px;background:var(--surface);border:1px solid var(--border);color:var(--accent2);font-family:var(--ff-mono)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.contact-info h3{font-size:1.1rem;font-weight:700;margin-bottom:8px}
.contact-info p{font-size:.88rem;color:var(--text2);line-height:1.7;margin-bottom:20px}
.contact-email{display:flex;align-items:center;gap:12px;padding:14px 18px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:16px;font-size:.88rem;transition:.3s}
.contact-email:hover{border-color:var(--accent)}
.contact-email .label{font-size:.68rem;color:var(--text3);font-family:var(--ff-mono);margin-bottom:2px}
.contact-email .addr{font-weight:600;color:var(--accent)}
.contact-response{padding:12px 16px;background:var(--code-bg);border-radius:var(--radius-sm);font-family:var(--ff-mono);font-size:.75rem;color:var(--text3);border:1px solid var(--border)}
.contact-response .green{color:var(--accent)}
.form input,.form textarea{width:100%;padding:12px 16px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text);font-size:.85rem;transition:.3s;margin-bottom:12px}
.form input:focus,.form textarea:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(63,185,80,.1)}
.form textarea{min-height:120px;resize:vertical}
.form .btn-primary{width:100%;justify-content:center;padding:12px}
.form .btn-primary:disabled{opacity:.4;cursor:default}
.footer{border-top:1px solid var(--border);padding:24px 0;text-align:center;font-size:.78rem;color:var(--text3)}
.footer-code{font-family:var(--ff-mono);font-size:.68rem;margin-bottom:8px}
.footer-code span{color:var(--accent)}
@media(max-width:1024px){
.skills-grid{grid-template-columns:repeat(2,1fr)}
.blog-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
.hero-name{font-size:2.2rem}
.hero-roles{font-size:.95rem}
.nav-links{display:none}
.hamburger{display:flex}
.mobile-menu{display:flex}
.section{padding:60px 0}
.section-title{font-size:1.5rem}
.about-grid,.contact-grid{grid-template-columns:1fr}
.project-grid,.contrib-grid{grid-template-columns:1fr}
.blog-grid{grid-template-columns:1fr}
.skills-grid{grid-template-columns:1fr 1fr}
.about-stats{grid-template-columns:repeat(3,1fr)}
.stat-num{font-size:1.3rem}
.case-content{padding:24px;margin:12px}
}
@media(max-width:480px){
.hero-name{font-size:1.8rem}
.container{padding:0 16px}
.about-stats{grid-template-columns:1fr}
.skills-grid{grid-template-columns:1fr}
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="Main navigation">
<div class="container">
<a href="#" class="nav-logo">>_ <span>codexskills</span></a>
<div class="nav-links">
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#oss">Open Source</a>
<a href="#blog">Blog</a>
<a href="#experience">Experience</a>
<a href="#contact" class="nav-cta">Contact</a>
</div>
<button class="hamburger" id="hamburger" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
</div>
</nav>
<div class="mobile-menu" id="mobileMenu">
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#oss">Open Source</a>
<a href="#blog">Blog</a>
<a href="#experience">Experience</a>
<a href="#contact">Contact</a>
</div>
<section class="hero" id="hero" aria-label="Hero introduction">
<div class="hero-bg"><div class="grid"></div><div class="glow"></div></div>
<div class="container hero-content">
<div class="hero-code-block">
<span class="comment">// initialize developer</span><br>
<span class="keyword">const</span> <span class="var">dev</span> = <span class="keyword">new</span> <span class="fn">Developer</span>({<br>
handle: <span class="str">"codexskills"</span>,<br>
role: <span class="str">"AI Agent Developer"</span>,<br>
mission: <span class="str">"Turn complex into simple"</span><br>
});
</div>
<p class="hero-greeting">Hi, I'm</p>
<h1 class="hero-name"><span class="highlight">codexskills</span></h1>
<p class="hero-roles" id="roles" aria-live="polite">
<span id="roleText">Full-Stack Developer</span><span class="cursor-blink">|</span>
</p>
<p class="hero-desc">
I build production-grade AI agent skills, project blueprints, and developer tools
for OpenCode, Claude Code, and Cursor. Every project is MIT-licensed and built for the community.
</p>
<div class="hero-actions">
<a href="#projects" class="btn btn-primary">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
View Projects
</a>
<a href="#" class="btn btn-secondary" onclick="alert('Resume PDF download')">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><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" y1="15" x2="12" y2="3"/></svg>
Download Resume
</a>
</div>
<div class="hero-socials">
<a href="https://github.com/codexskills" target="_blank" aria-label="GitHub">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
</a>
<a href="https://t.me/REXXT_H4RE" target="_blank" aria-label="Telegram">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z"/></svg>
</a>
<a href="mailto:codexskills@github.com" aria-label="Email">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>
</a>
</div>
</div>
</section>
<section class="section" id="about" aria-label="About me">
<div class="container">
<p class="section-label">// about.js</p>
<h2 class="section-title">About Me</h2>
<div class="about-grid">
<div>
<div class="about-text">
<p>I'm an AI Agent Developer and Open Source Builder creating production-grade agent skills for OpenCode, Claude Code, Codex, and Cursor. I turn complex problems into simple, scalable solutions.</p>
<p>My flagship projects — StackForge and Agent Forge — help developers generate complete project blueprints and lifecycle skills from a single sentence. Every project is MIT licensed, open source, and built for the developer community.</p>
</div>
<div class="about-stats">
<div class="stat-card"><div class="stat-num">4</div><div class="stat-label">Repositories</div></div>
<div class="stat-card"><div class="stat-num">23</div><div class="stat-label">Agent Skills</div></div>
<div class="stat-card"><div class="stat-num">2</div><div class="stat-label">Flagship Tools</div></div>
</div>
</div>
<div class="about-code">
<span class="line-num">1</span> <span class="key">"about"</span>: {<br>
<span class="line-num">2</span> <span class="key">"handle"</span>: <span class="str">"codexskills"</span>,<br>
<span class="line-num">3</span> <span class="key">"role"</span>: <span class="str">"AI Agent Developer"</span>,<br>
<span class="line-num">4</span> <span class="key">"status"</span>: <span class="str2">"Open Source"</span>,<br>
<span class="line-num">5</span> <span class="key">"mission"</span>: <span class="str">"Turn complex into simple"</span>,<br>
<span class="line-num">6</span> <span class="key">"funFact"</span>: <span class="str">"I make tools that make tools"</span>,<br>
<span class="line-num">7</span> <span class="key">"availableForHire"</span>: <span class="bool">true</span><br>
<span class="line-num">8</span> }
</div>
</div>
</div>
</section>
<section class="section" id="skills" aria-label="Skills">
<div class="container">
<p class="section-label">// skills.js</p>
<h2 class="section-title">Skills & Technologies</h2>
<p class="section-sub">The tools and technologies I use to build production-grade software.</p>
<div class="skills-grid">
<div class="skill-cat">
<div class="skill-cat-title">Languages</div>
<div class="skill-items">
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M3 3h18v18H3V3zm8 5.5c0-.83-.67-1.5-1.5-1.5h-2.5v7h1.5v-3h1l1.5 3h1.5l-1.5-3c.83 0 1.5-.67 1.5-1.5v-1.5zm4 0c0-.83-.67-1.5-1.5-1.5h-2.5v7h1.5V9h1l1.5 3h1.5l-1.5-3c.83 0 1.5-.67 1.5-1.5v-1.5z"/></svg>TypeScript</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M14.25.18l.9 2.2 6.98 2.32-7.15 2.27-2.35 6-2.35-6-7.15-2.27 6.98-2.32.9-2.2C11.37-.06 12.63-.06 14.25.18zM8.3 4.26l-4.5 7.46c.78 2.2 2.36 4.07 4.5 5.25l4.5-7.46-4.5-5.25zm7.4 0l4.5 5.25-4.5 7.46c2.14-1.18 3.72-3.05 4.5-5.25l-4.5-7.46zM10.5 18.5v3.5c1.16.24 2.34.24 3.5 0v-3.5c-1.16.24-2.34.24-3.5 0z"/></svg>Python</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Go</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 3C7.58 3 4 4.79 4 7v10c0 2.21 3.58 4 8 4s8-1.79 8-4V7c0-2.21-3.58-4-8-4zm0 2c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2zM6 17v-2.42c1.23.9 3.28 1.42 6 1.42s4.77-.52 6-1.42V17c0 .5-2.13 2-6 2s-6-1.5-6-2zm0-5v-2.42c1.23.9 3.28 1.42 6 1.42s4.77-.52 6-1.42V12c0 .5-2.13 2-6 2s-6-1.5-6-2z"/></svg>SQL</div>
</div>
</div>
<div class="skill-cat">
<div class="skill-cat-title">Frontend</div>
<div class="skill-items">
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>React / Next.js</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>HTML / CSS</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Tailwind CSS</div>
</div>
</div>
<div class="skill-cat">
<div class="skill-cat-title">Backend</div>
<div class="skill-items">
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Node.js / Express</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Python / FastAPI</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Shell / Bash</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Git / GitHub</div>
</div>
</div>
<div class="skill-cat">
<div class="skill-cat-title">DevOps</div>
<div class="skill-items">
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Docker</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>GitHub Actions</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>GitHub Pages</div>
<div class="skill-item"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>Vercel / Netlify</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="projects" aria-label="Projects">
<div class="container">
<p class="section-label">// projects.js</p>
<h2 class="section-title">Featured Projects</h2>
<p class="section-sub">All my open source repositories — tools, skills, and frameworks for the developer community.</p>
<div class="project-grid">
<div class="project-card">
<div class="project-img"><div class="placeholder-icon">AF</div><div class="overlay"></div></div>
<div class="project-body">
<h3>Agent Forge</h3>
<p class="desc">Production-grade AI agent skills — enhanced alternative to addyosmani/agent-skills. 23 lifecycle skills for Define, Plan, Build, Verify, Review, Ship. Works with OpenCode, Claude Code, Codex, Cursor, Gemini CLI.</p>
<p class="outcome">40 files, 8,195 lines — 3 specialist personas, 7 slash commands, 4 checklists.</p>
<div class="project-tags"><span>SKILL.md</span><span>Agents</span><span>CLI</span><span>Automation</span></div>
<div class="project-links">
<a href="#" onclick="openCaseStudy('agentforge');return false;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="width:14px;height:14px"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>Case Study</a>
<a href="https://github.com/codexskills/agent-forge" target="_blank"><svg viewBox="0 0 24 24" fill="currentColor" style="width:14px;height:14px"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>Source</a>
<a href="https://github.com/codexskills/agent-forge/stargazers"><span class="star">★ 1</span></a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-img"><div class="placeholder-icon">SB</div><div class="overlay"></div></div>
<div class="project-body">
<h3>skill-builder (StackForge)</h3>
<p class="desc">StackForge by Codex Skiller — OpenCode AI agent skill for project blueprint generation. Website, Telegram bot, AI agent, API, mobile app, CLI tool builder. 9 project types, 10 blueprint sections.</p>
<p class="outcome">Single sentence to production-ready plan with architecture, database, deployment, and cost breakdown.</p>
<div class="project-tags"><span>SKILL.md</span><span>Python</span><span>Node.js</span><span>CLI</span></div>
<div class="project-links">
<a href="#" onclick="openCaseStudy('stackforge');return false;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="width:14px;height:14px"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>Case Study</a>
<a href="https://github.com/codexskills/skill-builder" target="_blank"><svg viewBox="0 0 24 24" fill="currentColor" style="width:14px;height:14px"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>Source</a>
<a href="https://github.com/codexskills/skill-builder/stargazers"><span class="star">★ 1</span></a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-img"><div class="placeholder-icon">CS</div><div class="overlay"></div></div>
<div class="project-body">
<h3>codexskills.github.io</h3>
<p class="desc">Codex Skiller — StackForge: AI agent skill for project blueprint generation. Portfolio & project showcase. Live at codexskills.github.io.</p>
<p class="outcome">Personal portfolio — 4 complete redesigns, mobile-first, single-file architecture, deployed on GitHub Pages.</p>
<div class="project-tags"><span>HTML/CSS</span><span>Vanilla JS</span><span>Responsive</span><span>GitHub Pages</span></div>
<div class="project-links">
<a href="#" onclick="openCaseStudy('portfolio');return false;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="width:14px;height:14px"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>Case Study</a>
<a href="https://github.com/codexskills/codexskills.github.io" target="_blank"><svg viewBox="0 0 24 24" fill="currentColor" style="width:14px;height:14px"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>Source</a>
<a href="https://codexskills.github.io" target="_blank"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="width:14px;height:14px"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>Live Demo</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-img"><div class="placeholder-icon">CX</div><div class="overlay"></div></div>
<div class="project-body">
<h3>codexskills (profile repo)</h3>
<p class="desc">Codex Skiller — AI agent skill builder. StackForge project blueprint generator. GitHub profile README and organization hub for all open source projects.</p>
<p class="outcome">Central hub for the Codex Skiller ecosystem — agent skills, blueprints, and developer tools.</p>
<div class="project-tags"><span>Profile</span><span>Docs</span><span>Open Source</span></div>
<div class="project-links">
<a href="https://github.com/codexskills/codexskills" target="_blank"><svg viewBox="0 0 24 24" fill="currentColor" style="width:14px;height:14px"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>Profile</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="oss" aria-label="Open Source">
<div class="container">
<p class="section-label">// opensource.js</p>
<h2 class="section-title">Open Source</h2>
<p class="oss-intro">I believe in building in the open. Every project is MIT-licensed, well-documented, and designed to help the developer community ship faster.</p>
<div class="contrib-grid">
<div class="contrib-card"><div class="contrib-icon" style="color:var(--accent)">AF</div><div><h4>Agent Forge</h4><p>23 production-grade AI agent skills — enhanced alternative to addyosmani/agent-skills. Works across OpenCode, Claude Code, Codex, and Gemini CLI.</p></div></div>
<div class="contrib-card"><div class="contrib-icon" style="color:var(--accent2)">SB</div><div><h4>skill-builder</h4><p>StackForge — AI project blueprint generator. 9 project types, 10 blueprint sections from a single sentence. OpenCode agent skill.</p></div></div>
<div class="contrib-card"><div class="contrib-icon" style="color:var(--orange)">CS</div><div><h4>codexskills.github.io</h4><p>Personal portfolio & project showcase. Single-file HTML/CSS/JS architecture with 4 complete design iterations. Mobile-first, accessible.</p></div></div>
<div class="contrib-card"><div class="contrib-icon" style="color:var(--pink)">CX</div><div><h4>codexskills (profile)</h4><p>GitHub profile README and central hub for all open source projects in the Codex Skiller ecosystem.</p></div></div>
</div>
<div class="contrib-graph">
<div class="graph-grid" id="graphGrid"></div>
<p>Active contributions across 4 repositories</p>
</div>
<a href="https://github.com/codexskills" target="_blank" class="btn btn-secondary"><svg viewBox="0 0 24 24" fill="currentColor" style="width:16px;height:16px"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>View Full GitHub Profile</a>
</div>
</section>
<section class="section" id="blog" aria-label="Blog">
<div class="container">
<p class="section-label">// writing.js</p>
<h2 class="section-title">Latest Writing</h2>
<p class="section-sub">Thoughts on AI agents, developer tools, and shipping production software.</p>
<div class="blog-grid">
<div class="blog-card"><span class="tag">Tutorial</span><h4>Building Your First SKILL.md: A Complete Guide</h4><p>Learn how to create production-grade AI agent skills for OpenCode and Claude Code with proper structure, testing, and deployment.</p><div class="meta"><span>Mar 2026</span><span>·</span><span>8 min</span></div></div>
<div class="blog-card"><span class="tag">Architecture</span><h4>Why I Built Agent Forge Instead of Using Agent Skills</h4><p>The architectural decisions, tradeoffs, and design philosophy behind creating a 23-skill lifecycle framework from scratch.</p><div class="meta"><span>Feb 2026</span><span>·</span><span>12 min</span></div></div>
<div class="blog-card"><span class="tag">Opinion</span><h4>Production Blueprinting: From Single Sentence to Full Architecture</h4><p>How StackForge generates complete project blueprints and why specification-driven development is the future of AI-assisted coding.</p><div class="meta"><span>Jan 2026</span><span>·</span><span>6 min</span></div></div>
</div>
</div>
</section>
<section class="section" id="experience" aria-label="Experience">
<div class="container">
<p class="section-label">// experience.js</p>
<h2 class="section-title">Experience</h2>
<p class="section-sub">My journey building developer tools and AI agent systems.</p>
<div class="timeline">
<div class="timeline-item">
<div class="company">codexskills (GitHub)</div>
<div class="role">AI Agent Developer & Open Source Maintainer</div>
<div class="date">2026 — Present</div>
<p class="desc">Building production-grade AI agent skills (SKILL.md) for OpenCode, Claude Code, Codex, and Cursor. Maintaining MIT-licensed developer tools including StackForge (skill-builder) and Agent Forge (agent-forge). Specializing in project blueprinting and lifecycle automation.</p>
<div class="techs"><span>SKILL.md</span><span>Python</span><span>Node.js</span><span>Git</span><span>CI/CD</span><span>Shell</span></div>
</div>
<div class="timeline-item">
<div class="company">Open Source Community</div>
<div class="role">Tooling & Automation Engineer</div>
<div class="date">2025 — 2026</div>
<p class="desc">Contributing scaffolding scripts, deployment configs, and automation templates to the developer ecosystem. Building CLI tools for project generation and workflow automation.</p>
<div class="techs"><span>Python</span><span>Bash</span><span>Docker</span><span>GitHub Actions</span><span>CLI</span></div>
</div>
</div>
</div>
</section>
<section class="section" id="contact" aria-label="Contact">
<div class="container">
<p class="section-label">// contact.js</p>
<h2 class="section-title">Let's Work Together</h2>
<p class="section-sub">Interested in collaborating on AI agent tools, project blueprinting, or open source? I'm available for freelance, consulting, and full-time opportunities.</p>
<div class="contact-grid">
<div class="contact-info">
<h3>Get in touch</h3>
<p>I typically respond within 24 hours. Whether you have a project idea, want to contribute, or just want to say hi — I'd love to hear from you.</p>
<div class="contact-email">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="width:20px;height:20px;flex-shrink:0;color:var(--accent)"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>
<div><div class="label">Email</div><div class="addr">codexskills@github.com</div></div>
</div>
<div class="contact-response"><span class="green">$</span> curl -X POST /contact \<br> <span class="green">--data</span> '{"message": "Let's build something"}'<br><span class="green">$</span> Response: <span style="color:var(--accent2)">"I'll reply within 24h"</span></div>
</div>
<form class="form" id="contactForm">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<input type="text" placeholder="Subject">
<textarea placeholder="Tell me about your project..." required></textarea>
<button type="submit" class="btn btn-primary" style="width:100%;justify-content:center;padding:12px">Send Message</button>
</form>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p class="footer-code"><span>></span> Built by codexskills <span>// MIT Licensed</span></p>
<p>© 2026 codexskills. All rights reserved.</p>
</div>
</footer>
<div class="case-modal" id="caseModal">
<div class="overlay" onclick="closeCaseStudy()"></div>
<div class="case-content" id="caseContent">
<button class="case-close" onclick="closeCaseStudy()"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="width:16px;height:16px"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg></button>
<div id="caseBody"></div>
</div>
</div>
<script>
(function() {
var roles = ["Full-Stack Developer","Open Source Contributor","AI Agent Builder","Tool Maker"];
var el = document.getElementById('roleText');
var roleIndex = 0, charIndex = 0, isDeleting = false;
function type() {
var current = roles[roleIndex];
if (isDeleting) {
el.textContent = current.substring(0, charIndex--);
if (charIndex < 0) { isDeleting = false; roleIndex = (roleIndex + 1) % roles.length; setTimeout(type, 300); return; }
setTimeout(type, 40);
} else {
el.textContent = current.substring(0, charIndex++);
if (charIndex > current.length) { isDeleting = true; setTimeout(type, 1500); return; }
setTimeout(type, 80);
}
}
type();
})();
(function() {
var h = document.getElementById('hamburger'), m = document.getElementById('mobileMenu');
h.addEventListener('click', function() { m.classList.toggle('open'); });
m.querySelectorAll('a').forEach(function(a) { a.addEventListener('click', function() { m.classList.remove('open'); }); });
})();
(function() {
var grid = document.getElementById('graphGrid'), levels = ['','l1','l2','l3','l4'];
for (var i = 0; i < 364; i++) { var c = document.createElement('div'); c.className = 'graph-cell ' + levels[Math.floor(Math.random()*5)]; grid.appendChild(c); }
})();
var caseStudies = {
agentforge: {
title: 'Agent Forge — Production-Grade AI Agent Skills',
content: '<h3>Problem & User Context</h3><p>Existing agent skill repositories provide basic patterns but lack production-depth: no specialist personas, no slash commands, no testing frameworks, and no multi-platform setup guides.</p><h3>Solution</h3><p>Agent Forge delivers 23 production-grade AI agent skills organized in a Define->Plan->Build->Verify->Review->Ship lifecycle. Includes 3 specialist personas (code-reviewer, security-auditor, test-engineer), 7 slash commands, 4 reference checklists, and multi-platform setup.</p><h3>Architecture</h3><div class="diagram"><span class="box">Skills/</span> <span class="arrow">-></span> 23 lifecycle skills<br><span class="box">Agents/</span> <span class="arrow">-></span> 3 specialist personas<br><span class="box">References/</span> <span class="arrow">-></span> 4 checklists<br><span class="box">.claude/commands/</span> <span class="arrow">-></span> 7 slash commands<br><span class="box">docs/</span> <span class="arrow">-></span> Setup guide + skill anatomy</div><h3>Results</h3><ul><li>40 files, 8,195 lines of production code</li><li>20 SEO-optimized topic tags</li><li>Works with OpenCode, Claude Code, Codex, Cursor, Gemini CLI</li><li>Standalone repo with MIT license</li></ul><h3>Tradeoffs</h3><p>Chose breadth (23 skills) over depth per skill. Some skills are templates rather than fully-implemented examples, but the coverage is comprehensive across the entire development lifecycle.</p>'
},
stackforge: {
title: 'skill-builder (StackForge) — AI Project Blueprint Generator',
content: '<h3>Problem & User Context</h3><p>Developers spend hours setting up project structure, choosing technology stacks, designing database schemas, and planning deployment. Most scaffolding tools generate boilerplate without architectural guidance.</p><h3>Solution</h3><p>StackForge takes a single sentence description and generates a complete production-ready blueprint: tech stack, architecture diagrams, database schemas with indexes, API routes, deployment configs, cost breakdowns, and risk mitigation.</p><h3>Architecture</h3><div class="diagram"><span class="box">User Input</span> <span class="arrow">-></span> <span class="box">AI Parser</span> <span class="arrow">-></span> <span class="box" style="border-color:var(--accent)">Blueprint Engine</span> <span class="arrow">-></span> <span class="box">Output</span><br> darr;<br> <span class="box">9 Project Types</span> <span class="arrow">-></span> <span class="box">10 Sections</span></div><h3>Results</h3><ul><li>OpenCode agent skill for project blueprint generation</li><li>9 project types supported</li><li>10 blueprint sections per project</li><li>Single sentence to production-ready plan</li></ul><h3>Tradeoffs</h3><p>Chose SKILL.md format over standalone CLI for deeper agent integration. Tradeoff: requires agent runtime but enables richer contextual generation.</p>'
},
portfolio: {
title: 'codexskills.github.io — Developer Portfolio & Showcase',
content: '<h3>Problem & User Context</h3><p>Needed a personal portfolio demonstrating both design capability and technical depth. Must showcase AI agent skills, open source projects, and developer tools in a compelling, mobile-friendly way.</p><h3>Solution</h3><p>Four complete redesigns: terminal aesthetic, futuristic gate-loading, glassmorphism with particles, and this production vcard-style layout. Each iteration improved mobile responsiveness and visual polish.</p><h3>Architecture</h3><div class="diagram"><span class="box">index.html</span> <span class="arrow">-></span> Single-file SPA<br> |-- <span class="box">CSS</span> -- Custom properties, responsive, code theme<br> |-- <span class="box">JS</span> -- Typing effect, tabs, modals, form, graph<br> |-- <span class="box">Deploy</span> -- GitHub Pages (user site, auto-deploy)</div><h3>Results</h3><ul><li>Live at codexskills.github.io</li><li>Mobile-first responsive design</li><li>Hamburger menu, typing effect, contribution graph</li><li>Case study modal for each project</li></ul><h3>Lessons</h3><p>Single-file architecture keeps deployment simple but limits code organization. Future iterations may adopt component-based approach with build step for better maintainability.</p>'
}
};
function openCaseStudy(id) {
var s = caseStudies[id]; if (!s) return;
document.getElementById('caseBody').innerHTML = '<h2>' + s.title + '</h2>' + s.content;
document.getElementById('caseModal').classList.add('active'); document.body.style.overflow = 'hidden';
}
function closeCaseStudy() { document.getElementById('caseModal').classList.remove('active'); document.body.style.overflow = ''; }
document.addEventListener('keydown', function(e) { if (e.key === 'Escape') closeCaseStudy(); });
(function() {
var form = document.getElementById('contactForm');
form.addEventListener('submit', function(e) {
e.preventDefault(); var btn = form.querySelector('button');
btn.textContent = 'Message Sent!'; btn.style.opacity = '.7';
setTimeout(function() { btn.textContent = 'Send Message'; btn.style.opacity = '1'; form.reset(); }, 2000);
});
})();
</script>
</body>
</html>