-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude-code-guide.html
More file actions
1601 lines (1467 loc) · 67.8 KB
/
claude-code-guide.html
File metadata and controls
1601 lines (1467 loc) · 67.8 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="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Claude Code 커스터마이징 가이드</title>
<style>
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #10b981;
--bg: #0f172a;
--bg-card: #1e293b;
--bg-code: #334155;
--text: #e2e8f0;
--text-muted: #94a3b8;
--border: #334155;
--accent-red: #f87171;
--accent-yellow: #fbbf24;
--accent-green: #34d399;
--accent-blue: #60a5fa;
--accent-purple: #a78bfa;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
padding: 60px 0;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 16px;
font-weight: 700;
}
header p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
}
/* Navigation */
nav {
background: var(--bg-card);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
}
nav ul {
display: flex;
list-style: none;
gap: 8px;
padding: 16px 0;
overflow-x: auto;
flex-wrap: wrap;
justify-content: center;
}
nav a {
color: var(--text-muted);
text-decoration: none;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.2s;
white-space: nowrap;
font-size: 0.9rem;
}
nav a:hover {
background: var(--bg-code);
color: var(--text);
}
/* Sections */
section {
padding: 60px 0;
border-bottom: 1px solid var(--border);
}
section:last-child {
border-bottom: none;
}
h2 {
font-size: 1.8rem;
margin-bottom: 24px;
color: var(--primary);
display: flex;
align-items: center;
gap: 12px;
}
h3 {
font-size: 1.3rem;
margin: 32px 0 16px;
color: var(--text);
}
h4 {
font-size: 1.1rem;
margin: 24px 0 12px;
color: var(--text-muted);
}
p {
margin-bottom: 16px;
color: var(--text-muted);
}
/* Cards */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 24px;
}
.card {
background: var(--bg-card);
border-radius: 12px;
padding: 24px;
border: 1px solid var(--border);
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card h4 {
margin: 0 0 12px;
color: var(--text);
display: flex;
align-items: center;
gap: 8px;
}
.card p {
font-size: 0.9rem;
margin-bottom: 0;
}
.card .count {
background: var(--primary);
color: white;
padding: 2px 8px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 600;
}
/* Code blocks */
pre {
background: var(--bg-code);
border-radius: 8px;
padding: 16px;
overflow-x: auto;
margin: 16px 0;
border: 1px solid var(--border);
}
code {
font-family: 'Fira Code', 'Consolas', monospace;
font-size: 0.9rem;
color: var(--accent-green);
}
pre code {
color: var(--text);
}
/* Tables */
.table-wrapper {
overflow-x: auto;
margin: 20px 0;
}
table {
width: 100%;
border-collapse: collapse;
background: var(--bg-card);
border-radius: 8px;
overflow: hidden;
}
th, td {
padding: 14px 16px;
text-align: left;
border-bottom: 1px solid var(--border);
}
th {
background: var(--bg-code);
font-weight: 600;
color: var(--text);
}
td {
color: var(--text-muted);
}
td code {
background: var(--bg-code);
padding: 2px 6px;
border-radius: 4px;
font-size: 0.85rem;
}
tr:last-child td {
border-bottom: none;
}
tr:hover td {
background: rgba(99, 102, 241, 0.1);
}
/* Tags */
.tag {
display: inline-block;
padding: 4px 10px;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 500;
margin-right: 6px;
margin-bottom: 6px;
}
.tag-ai { background: rgba(168, 139, 250, 0.2); color: var(--accent-purple); }
.tag-frontend { background: rgba(96, 165, 250, 0.2); color: var(--accent-blue); }
.tag-backend { background: rgba(52, 211, 153, 0.2); color: var(--accent-green); }
.tag-db { background: rgba(251, 191, 36, 0.2); color: var(--accent-yellow); }
.tag-util { background: rgba(248, 113, 113, 0.2); color: var(--accent-red); }
.tag-plan { background: rgba(52, 211, 153, 0.15); color: var(--accent-green); }
.tag-test { background: rgba(251, 191, 36, 0.15); color: var(--accent-yellow); }
.tag-doc { background: rgba(96, 165, 250, 0.15); color: var(--accent-blue); }
/* Alert boxes */
.alert {
padding: 16px 20px;
border-radius: 8px;
margin: 20px 0;
border-left: 4px solid;
}
.alert-info {
background: rgba(96, 165, 250, 0.1);
border-color: var(--accent-blue);
}
.alert-warning {
background: rgba(251, 191, 36, 0.1);
border-color: var(--accent-yellow);
}
.alert-success {
background: rgba(52, 211, 153, 0.1);
border-color: var(--accent-green);
}
.alert strong {
color: var(--text);
}
/* Steps */
.steps {
counter-reset: step;
}
.step {
position: relative;
padding-left: 50px;
margin-bottom: 24px;
}
.step::before {
counter-increment: step;
content: counter(step);
position: absolute;
left: 0;
top: 0;
width: 36px;
height: 36px;
background: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.9rem;
}
.step h4 {
margin-top: 0;
color: var(--text);
}
/* Footer */
footer {
background: var(--bg-card);
padding: 40px 0;
text-align: center;
color: var(--text-muted);
}
footer a {
color: var(--primary);
text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
header h1 {
font-size: 1.8rem;
}
nav ul {
justify-content: flex-start;
}
h2 {
font-size: 1.5rem;
}
}
/* Accordion */
details {
background: var(--bg-card);
border-radius: 8px;
margin-bottom: 12px;
border: 1px solid var(--border);
}
summary {
padding: 16px;
cursor: pointer;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
summary:hover {
background: var(--bg-code);
}
details[open] summary {
border-bottom: 1px solid var(--border);
}
details > div {
padding: 16px;
}
/* Diagram */
.diagram {
background: var(--bg-code);
border-radius: 8px;
padding: 24px;
margin: 20px 0;
font-family: monospace;
white-space: pre;
overflow-x: auto;
line-height: 1.4;
font-size: 0.85rem;
}
/* Pipeline */
.pipeline {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
margin: 16px 0;
padding: 16px;
background: var(--bg-code);
border-radius: 8px;
}
.pipeline-step {
background: var(--primary);
color: white;
padding: 8px 16px;
border-radius: 8px;
font-weight: 600;
font-size: 0.85rem;
}
.pipeline-arrow {
color: var(--accent-yellow);
font-size: 1.2rem;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Claude Code 커스터마이징 가이드</h1>
<p>Skills, Agents, Hooks, MCP 서버를 활용한 Claude Code 확장 도구 모음 (Claude + Codex + Gemini 3-CLI 지원)</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="#overview">개요</a></li>
<li><a href="#quick-start">빠른 시작</a></li>
<li><a href="#core-systems">핵심 시스템</a></li>
<li><a href="#structure">프로젝트 구조</a></li>
<li><a href="#skills">스킬 (74개)</a></li>
<li><a href="#agents">에이전트 (41개)</a></li>
<li><a href="#hooks">훅 (9개)</a></li>
<li><a href="#mcp">MCP 서버</a></li>
<li><a href="#external">외부 리소스</a></li>
<li><a href="#by-stack">기술 스택별</a></li>
</ul>
</div>
</nav>
<main class="container">
<!-- 개요 -->
<section id="overview">
<h2>📋 개요</h2>
<p>이 프로젝트는 Claude Code, Codex CLI, Gemini CLI의 기능을 확장하기 위한 커스터마이징 도구 모음입니다.</p>
<h3>왜 이 프로젝트를 만들었나?</h3>
<div class="card-grid">
<div class="card">
<h4>🔄 반복 문제 해결</h4>
<p>새 프로젝트마다 같은 설정을 반복하는 문제를 해결합니다.</p>
</div>
<div class="card">
<h4>📚 리소스 중앙화</h4>
<p>유용한 외부 스킬과 플러그인을 한 곳에서 관리합니다.</p>
</div>
<div class="card">
<h4>⚡ 빠른 설정</h4>
<p>프로젝트 유형별 템플릿으로 빠르게 시작합니다.</p>
</div>
<div class="card">
<h4>🤖 멀티 AI 통합</h4>
<p>Claude + Codex + Gemini 3개 CLI를 하나의 설치로 통합합니다.</p>
</div>
</div>
<h3>핵심 개념</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>구성요소</th>
<th>설명</th>
<th>위치</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Skills</strong></td>
<td>사용자 요청 시 활성화되는 전문 기능 (74개)</td>
<td><code>~/.claude/skills/</code></td>
</tr>
<tr>
<td><strong>Agents</strong></td>
<td>항상 컨텍스트에 존재하는 가이드라인/전문가 (41개)</td>
<td><code>~/.claude/agents/</code></td>
</tr>
<tr>
<td><strong>Hooks</strong></td>
<td>이벤트 발생 시 자동 실행되는 스크립트 (9개)</td>
<td><code>~/.claude/hooks/</code></td>
</tr>
<tr>
<td><strong>MCP</strong></td>
<td>외부 서비스 연동 (GitHub, Playwright 등)</td>
<td><code>settings.json</code></td>
</tr>
</tbody>
</table>
</div>
<h3>설치 범위 (12단계)</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>단계</th>
<th>대상 CLI</th>
<th>내용</th>
</tr>
</thead>
<tbody>
<tr><td>1-7</td><td>Claude Code</td><td>Skills, Agents, Hooks, settings.json, CLAUDE.md, MCP, Orchestrator MCP</td></tr>
<tr><td>8-11</td><td>Codex CLI</td><td>Codex-Mnemo, Skills/Agents 동기화, MCP, Orchestrator MCP</td></tr>
<tr><td>12</td><td>Gemini CLI</td><td>Gemini-Mnemo</td></tr>
</tbody>
</table>
</div>
</section>
<!-- 빠른 시작 -->
<section id="quick-start">
<h2>🚀 빠른 시작</h2>
<div class="alert alert-info">
<strong>5분 안에 시작하기</strong> - 아래 단계를 따라 기본 설정을 완료하세요.
</div>
<h3>방법 1: 자동 설치 (권장)</h3>
<div class="steps">
<div class="step">
<h4>저장소 클론</h4>
<pre><code>git clone https://github.com/Dannykkh/claude-code-agent-customizations
cd claude-code-agent-customizations</code></pre>
</div>
<div class="step">
<h4>설치 스크립트 실행</h4>
<pre><code># Windows - 인터랙티브 메뉴 (LLM 선택)
install.bat
# Windows - 전체 자동 설치 (모든 LLM + 모든 번들)
install.bat --all
# Linux/Mac
chmod +x install.sh && ./install.sh # 인터랙티브
./install.sh --all # 전체 자동</code></pre>
</div>
<div class="step">
<h4>설치 확인</h4>
<pre><code># Claude Code에서 실행
/skills # 설치된 스킬 확인
/mcp # MCP 상태 확인</code></pre>
</div>
</div>
<h3>설치 옵션</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>옵션</th>
<th>설명</th>
<th>예시</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>(옵션 없음)</code></td>
<td>인터랙티브 메뉴 (Up/Down, Space, Enter)</td>
<td><code>install.bat</code></td>
</tr>
<tr>
<td><code>--all</code></td>
<td>전체 자동 설치 (모든 LLM + 모든 번들)</td>
<td><code>install.bat --all</code></td>
</tr>
<tr>
<td><code>--llm <list></code></td>
<td>대상 CLI 지정 (콤마 구분)</td>
<td><code>install.bat --llm claude,codex</code></td>
</tr>
<tr>
<td><code>--uninstall</code></td>
<td>설정 제거 (MCP, Mnemo, Hooks 등)</td>
<td><code>install.bat --uninstall</code></td>
</tr>
</tbody>
</table>
</div>
<h3>설치 모드 비교 (복사 vs 링크)</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>모드</th>
<th>명령어</th>
<th>장점</th>
<th>단점</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>복사 (기본)</strong></td>
<td><code>install.bat</code></td>
<td>원본과 독립적, 안전</td>
<td>업데이트 시 재설치 필요</td>
</tr>
<tr>
<td><strong>링크</strong></td>
<td><code>install-link.bat</code><br><code>./install.sh --link</code></td>
<td>git pull만으로 자동 반영</td>
<td>원본 삭제 시 동작 안 함</td>
</tr>
<tr>
<td><strong>링크 해제</strong></td>
<td><code>install-unlink.bat</code><br><code>./install.sh --unlink</code></td>
<td>링크 제거 후 원래 상태 복원</td>
<td>-</td>
</tr>
</tbody>
</table>
</div>
<h3>번들 구성 (5개 번들, 모두 코어 설치)</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>번들</th>
<th>포함 내용</th>
</tr>
</thead>
<tbody>
<tr><td><code>zephermine</code></td><td>SPEC 인터뷰 시스템 + zeus 전자동 파이프라인</td></tr>
<tr><td><code>agent-team</code></td><td>Agent Teams (Opus 4.6) + Codex Multi-Agent</td></tr>
<tr><td><code>mnemo</code></td><td>장기기억 시스템 (Claude/Codex/Gemini 각각)</td></tr>
<tr><td><code>orchestrator</code></td><td>PM-Worker 병렬 작업 MCP 서버</td></tr>
<tr><td><code>mcp</code></td><td>Context7, Fetch, Playwright, Chrome DevTools 등</td></tr>
</tbody>
</table>
</div>
<div class="alert alert-success">
<strong>Codex/Gemini CLI가 설치되어 있으면</strong> 해당 단계가 자동으로 실행됩니다. 미설치 시 자동 스킵됩니다.
</div>
</section>
<!-- 핵심 시스템 -->
<section id="core-systems">
<h2>⚙️ 핵심 시스템</h2>
<p>이 프로젝트를 차별화하는 6가지 핵심 시스템입니다.</p>
<div class="card-grid">
<div class="card">
<h4>🎯 Zephermine (젭마인) <span class="count">Planning</span></h4>
<p>24단계 심층 인터뷰로 완전한 SPEC 문서를 생성합니다. 5 Whys 기법, 5-에이전트 리뷰, 자동 검증 포함.</p>
<div class="pipeline">
<span class="pipeline-step">/zephermine</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Interview</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">SPEC.md</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">5-Agent 검증</span>
</div>
</div>
<div class="card">
<h4>🧠 Mnemo (므네모) <span class="count">Memory</span></h4>
<p>파일 기반 크로스 세션 메모리 시스템. DB 불필요, 훅에서 AI 호출 없음. Claude/Codex/Gemini 3-CLI 통합 기억.</p>
<div class="pipeline">
<span class="pipeline-step">Session A</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">#tags 저장</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">MEMORY.md</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Session B 복원</span>
</div>
</div>
<div class="card">
<h4>🤖 workpm <span class="count">Multi-AI</span></h4>
<p>PM이 작업 분배, Worker(Claude+Codex+Gemini)가 파일 락킹으로 병렬 실행. Agent Teams 또는 MCP 모드 선택.</p>
<div class="pipeline">
<span class="pipeline-step">workpm (PM)</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Task 분배</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">pmworker 병렬</span>
</div>
<div class="table-wrapper" style="margin-top:12px">
<table>
<thead><tr><th>CLI</th><th>PM 명령어</th><th>특징</th></tr></thead>
<tbody>
<tr><td>Claude</td><td><code>workpm</code></td><td>Agent Teams, 실시간 팀원 통신</td></tr>
<tr><td>Codex/Gemini</td><td><code>workpm-mcp</code></td><td>MCP 도구만, 태스크 기반</td></tr>
<tr><td>공통</td><td><code>pmworker</code></td><td>Worker: 태스크 수행, 파일 락</td></tr>
</tbody>
</table>
</div>
</div>
<div class="card">
<h4>🧪 QPassenger (큐패신저) <span class="count">QA</span></h4>
<p>QA 시나리오를 Playwright 테스트로 변환, 모든 테스트 통과까지 자동 수정 반복 (Healer Loop, max 5회).</p>
<div class="pipeline">
<span class="pipeline-step">시나리오 수집</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Playwright 생성</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">실행</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Healer Loop</span>
</div>
</div>
<div class="card">
<h4>🔄 Chronos (크로노스) <span class="count">Auto Loop</span></h4>
<p>Chronos(시간의 신) — 끝없이 돌아가는 수레바퀴. 서브에이전트가 이슈 찾기→수정→검증을 자율 반복. 사용자 개입 0회.</p>
<div class="pipeline">
<span class="pipeline-step">FIND</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">FIX</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">VERIFY</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">반복 (자율)</span>
</div>
</div>
<div class="card">
<h4>⚡ Zeus (제우스) <span class="count">Full Pipeline</span></h4>
<p>한 줄 설명만으로 설계→구현→테스트 전체를 자동 완료. AskUserQuestion 절대 호출 금지. 5개 Phase 연속 실행.</p>
<div class="pipeline">
<span class="pipeline-step">/zeus</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Zephermine</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">workpm</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">QPassenger</span>
<span class="pipeline-arrow">→</span>
<span class="pipeline-step">Report</span>
</div>
</div>
</div>
<h3>추천 워크플로우</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>시나리오</th>
<th>체이닝 순서</th>
</tr>
</thead>
<tbody>
<tr><td><strong>새 프로젝트 (풀코스)</strong></td><td>zephermine → architect → agent-team → qpassenger → docker-deploy</td></tr>
<tr><td><strong>전자동 (제우스)</strong></td><td>zeus — 한 줄 설명만으로 설계→구현→테스트 완전 자동</td></tr>
<tr><td><strong>기능 추가</strong></td><td>zephermine → agent-team/수동 구현 → qpassenger</td></tr>
<tr><td><strong>UI 디자인 → 구현</strong></td><td>stitch-enhance-prompt → stitch-loop → stitch-react → frontend-react</td></tr>
<tr><td><strong>코드 리뷰 종합</strong></td><td>code-reviewer → security-reviewer → reducing-entropy</td></tr>
<tr><td><strong>QA 자동화</strong></td><td>qpassenger (시나리오 자동 생성 → Playwright → Healer)</td></tr>
</tbody>
</table>
</div>
</section>
<!-- 프로젝트 구조 -->
<section id="structure">
<h2>📁 프로젝트 구조</h2>
<div class="diagram">claude-code-customizations/
├── skills/ # 커스텀 스킬 (74개)
│ ├── mnemo/ # 🧠 메모리 시스템 (글로벌 설치)
│ ├── orchestrator/ # 🤖 멀티 AI 오케스트레이션 (프로젝트별)
│ ├── zephermine/ # 🎯 SPEC 인터뷰 시스템
│ ├── zeus/ # ⚡ 전자동 파이프라인
│ ├── agent-team/ # Agent Teams (Opus 4.6)
│ ├── agent-team-codex/ # Codex Multi-Agent
│ ├── codex/ # OpenAI Codex 연동
│ ├── gemini/ # Google Gemini 연동
│ ├── qpassenger/ # QA 자동화 (Playwright)
│ ├── stitch-*/ # Stitch UI 생성 (4개)
│ ├── docker-deploy/ # Docker 배포
│ ├── docker-db-backup/ # Docker DB 백업
│ ├── code-reviewer/ # 코드 리뷰
│ └── ... (60+ 추가 스킬)
├── agents/ # 커스텀 에이전트 (41개)
│ ├── architect.md # 시스템 아키텍처 설계
│ ├── frontend-react.md # React 전문가
│ ├── backend-spring.md # Spring Boot 전문가
│ ├── backend-dotnet.md # ASP.NET Core 전문가
│ ├── desktop-wpf.md # WPF 데스크톱 전문가
│ ├── security-reviewer.md # 보안 리뷰어
│ ├── stitch-developer.md # Stitch UI 전문가
│ └── ... (34+ 추가 에이전트)
├── hooks/ # 글로벌 훅 (9개, sh+ps1 쌍)
│ ├── save-conversation.sh/.ps1
│ ├── save-response.sh/.ps1
│ ├── orchestrator-detector.js
│ ├── validate-code.sh/.ps1
│ ├── validate-api.sh/.ps1
│ ├── validate-docs.sh/.ps1
│ ├── check-new-file.sh/.ps1
│ ├── protect-files.sh/.ps1
│ └── format-code.sh/.ps1
├── docs/ # 문서
│ ├── quickstart.md
│ ├── workflow-guide.md
│ └── resources/
├── scripts/ # 유틸리티 스크립트
│ ├── sync-codex-assets.js
│ └── sync-gemini-assets.js
├── install.bat # Windows 설치 (12단계)
├── install.sh # Linux/Mac 설치 (12단계)
├── install-link.bat # Windows 링크 모드
├── SETUP.md # 상세 설정 가이드
└── README.md</div>
</section>
<!-- 스킬 -->
<section id="skills">
<h2>⚡ 스킬 (74개)</h2>
<p>사용자 요청 시 활성화되는 전문 기능입니다. 12개 카테고리로 분류됩니다.</p>
<details>
<summary>🤖 AI 도구 (6개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>codex</code></td><td>OpenAI Codex CLI 연동 (GPT-5.2)</td></tr>
<tr><td><code>gemini</code></td><td>Google Gemini CLI 연동 (Gemini 3 Pro)</td></tr>
<tr><td><code>multi-ai-orchestration</code></td><td>멀티 AI CLI 설정/사용 가이드</td></tr>
<tr><td><code>orchestrator</code></td><td>PM-Worker 병렬 처리 (MCP 기반)</td></tr>
<tr><td><code>agent-team</code></td><td>Claude Agent Teams (Opus 4.6 네이티브)</td></tr>
<tr><td><code>agent-team-codex</code></td><td>Codex Multi-Agent 팀</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>🔮 메타 도구 (7개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>agent-md-refactor</code></td><td>에이전트 파일 리팩토링</td></tr>
<tr><td><code>command-creator</code></td><td>슬래시 명령어 생성 도구</td></tr>
<tr><td><code>plugin-forge</code></td><td>플러그인 생성</td></tr>
<tr><td><code>skill-judge</code></td><td>스킬 품질 평가</td></tr>
<tr><td><code>find-skills</code></td><td>스킬 검색/설치</td></tr>
<tr><td><code>manage-skills</code></td><td>검증 스킬 생성/CLAUDE.md 관리</td></tr>
<tr><td><code>verify-implementation</code></td><td>모든 verify 스킬 통합 실행</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>📝 문서화 (7개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>mermaid-diagrams</code></td><td>Mermaid 다이어그램 생성</td></tr>
<tr><td><code>marp-slide</code></td><td>Marp 프레젠테이션 슬라이드 (7개 테마)</td></tr>
<tr><td><code>draw-io</code></td><td>Draw.io 다이어그램 편집</td></tr>
<tr><td><code>excalidraw</code></td><td>Excalidraw 다이어그램</td></tr>
<tr><td><code>crafting-effective-readmes</code></td><td>효과적인 README 작성</td></tr>
<tr><td><code>api-handoff</code></td><td>API 문서 핸드오프 (프론트↔백엔드)</td></tr>
<tr><td><code>writing-clearly-and-concisely</code></td><td>명확하고 간결한 글쓰기</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>🎨 프론트엔드 (9개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>react-dev</code></td><td>React 개발 가이드 (React 19, Server Components)</td></tr>
<tr><td><code>vercel-react-best-practices</code></td><td>Vercel React/Next.js 성능 최적화</td></tr>
<tr><td><code>mui</code></td><td>Material-UI v7 가이드</td></tr>
<tr><td><code>design-system-starter</code></td><td>디자인 시스템 구축</td></tr>
<tr><td><code>openapi-to-typescript</code></td><td>OpenAPI → TypeScript 변환</td></tr>
<tr><td><code>stitch-design-md</code></td><td>Stitch 프로젝트 DESIGN.md 생성</td></tr>
<tr><td><code>stitch-enhance-prompt</code></td><td>Stitch 최적 프롬프트 변환</td></tr>
<tr><td><code>stitch-loop</code></td><td>Stitch 멀티페이지 자율 생성</td></tr>
<tr><td><code>stitch-react</code></td><td>Stitch HTML → React 변환</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>🛠️ 개발 도구 (10개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>docker-deploy</code></td><td>Docker 이미지 기반 배포 환경 구성</td></tr>
<tr><td><code>docker-db-backup</code></td><td>Docker DB 자동 백업 (PostgreSQL/MySQL)</td></tr>
<tr><td><code>python-backend-fastapi</code></td><td>FastAPI 개발 가이드</td></tr>
<tr><td><code>database-schema-designer</code></td><td>DB 스키마 설계</td></tr>
<tr><td><code>dependency-updater</code></td><td>스마트 의존성 업데이트</td></tr>
<tr><td><code>fullstack-coding-standards</code></td><td>풀스택 코딩 표준</td></tr>
<tr><td><code>dotnet-coding-standards</code></td><td>.NET 코딩 표준</td></tr>
<tr><td><code>wpf-coding-standards</code></td><td>WPF 코딩 표준</td></tr>
<tr><td><code>naming-analyzer</code></td><td>네이밍 분석/제안</td></tr>
<tr><td><code>reducing-entropy</code></td><td>코드베이스 최소화</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>🎯 계획/요구사항 (4개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>zephermine</code></td><td>24단계 SPEC 인터뷰 + 5-에이전트 검증 (젭마인)</td></tr>
<tr><td><code>zeus</code></td><td>전자동 설계→구현→테스트 파이프라인 (제우스)</td></tr>
<tr><td><code>game-changing-features</code></td><td>10x 제품 기회 발견</td></tr>
<tr><td><code>ship-learn-next</code></td><td>학습 콘텐츠 → 구현 계획 변환</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>🧪 테스트/리뷰 (5개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>code-reviewer</code></td><td>자동 코드 리뷰 (500줄 제한, 보안)</td></tr>
<tr><td><code>api-tester</code></td><td>API 연동 테스트 (CORS, JWT, 프록시)</td></tr>
<tr><td><code>qa-test-planner</code></td><td>테스트 계획/시나리오 생성</td></tr>
<tr><td><code>qpassenger</code></td><td>QA Playwright 자동 테스트 + Healer 루프</td></tr>
<tr><td><code>auto-continue-loop</code></td><td>반복 수정→검증 자동 루프</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>👔 전문 커뮤니케이션 (3개)</summary>
<div>
<div class="table-wrapper">
<table>
<thead>
<tr><th>스킬</th><th>설명</th></tr>
</thead>
<tbody>
<tr><td><code>professional-communication</code></td><td>기술 커뮤니케이션 가이드</td></tr>
<tr><td><code>workplace-conversations</code></td><td>직장 내 대화/피드백 프레임워크</td></tr>
<tr><td><code>daily-meeting-update</code></td><td>데일리 스탠드업 업데이트 생성</td></tr>
</tbody>
</table>
</div>
</div>
</details>
<details>
<summary>📖 학습 (1개)</summary>
<div>