@kood/claude-code 0.3.7 → 0.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
  3. package/templates/.claude/agents/code-reviewer.md +138 -123
  4. package/templates/.claude/agents/dependency-manager.md +99 -84
  5. package/templates/.claude/agents/deployment-validator.md +70 -55
  6. package/templates/.claude/agents/git-operator.md +78 -63
  7. package/templates/.claude/agents/implementation-executor.md +109 -94
  8. package/templates/.claude/agents/ko-to-en-translator.md +74 -0
  9. package/templates/.claude/agents/lint-fixer.md +93 -78
  10. package/templates/.claude/agents/refactor-advisor.md +136 -121
  11. package/templates/.claude/commands/agent-creator.md +199 -184
  12. package/templates/.claude/commands/bug-fix.md +207 -192
  13. package/templates/.claude/commands/command-creator.md +69 -53
  14. package/templates/.claude/commands/docs-creator.md +72 -56
  15. package/templates/.claude/commands/docs-refactor.md +41 -25
  16. package/templates/.claude/commands/execute.md +27 -11
  17. package/templates/.claude/commands/git-all.md +46 -31
  18. package/templates/.claude/commands/git-session.md +57 -41
  19. package/templates/.claude/commands/git.md +49 -33
  20. package/templates/.claude/commands/lint-fix.md +153 -137
  21. package/templates/.claude/commands/lint-init.md +76 -60
  22. package/templates/.claude/commands/plan.md +275 -259
  23. package/templates/.claude/commands/prd.md +39 -23
  24. package/templates/.claude/commands/pre-deploy.md +124 -108
  25. package/templates/.claude/commands/refactor.md +162 -146
  26. package/templates/.claude/commands/version-update.md +32 -16
  27. package/templates/hono/CLAUDE.md +28 -27
  28. package/templates/hono/docs/architecture.md +24 -24
  29. package/templates/hono/docs/deployment/cloudflare.md +18 -18
  30. package/templates/hono/docs/deployment/docker.md +13 -13
  31. package/templates/hono/docs/deployment/index.md +19 -19
  32. package/templates/hono/docs/deployment/railway.md +32 -32
  33. package/templates/hono/docs/deployment/vercel.md +29 -29
  34. package/templates/hono/docs/guides/conventions.md +57 -57
  35. package/templates/hono/docs/guides/env-setup.md +47 -47
  36. package/templates/hono/docs/guides/getting-started.md +27 -27
  37. package/templates/hono/docs/library/hono/error-handling.md +11 -11
  38. package/templates/hono/docs/library/hono/index.md +4 -4
  39. package/templates/hono/docs/library/hono/middleware.md +18 -18
  40. package/templates/hono/docs/library/hono/rpc.md +7 -7
  41. package/templates/hono/docs/library/hono/validation.md +6 -6
  42. package/templates/hono/docs/library/prisma/cloudflare-d1.md +29 -29
  43. package/templates/hono/docs/library/prisma/config.md +16 -16
  44. package/templates/hono/docs/library/prisma/index.md +32 -32
  45. package/templates/hono/docs/library/t3-env/index.md +22 -22
  46. package/templates/hono/docs/library/zod/index.md +31 -31
  47. package/templates/nextjs/CLAUDE.md +54 -51
  48. package/templates/nextjs/docs/architecture.md +812 -0
  49. package/templates/nextjs/docs/design.md +183 -183
  50. package/templates/nextjs/docs/guides/conventions.md +86 -86
  51. package/templates/nextjs/docs/guides/getting-started.md +28 -28
  52. package/templates/nextjs/docs/guides/routes.md +32 -32
  53. package/templates/nextjs/docs/library/better-auth/index.md +70 -70
  54. package/templates/nextjs/docs/library/nextjs/app-router.md +43 -43
  55. package/templates/nextjs/docs/library/nextjs/caching.md +73 -73
  56. package/templates/nextjs/docs/library/nextjs/index.md +51 -51
  57. package/templates/nextjs/docs/library/nextjs/middleware.md +41 -41
  58. package/templates/nextjs/docs/library/nextjs/route-handlers.md +31 -31
  59. package/templates/nextjs/docs/library/nextjs/server-actions.md +34 -34
  60. package/templates/nextjs/docs/library/prisma/cloudflare-d1.md +20 -20
  61. package/templates/nextjs/docs/library/prisma/config.md +18 -18
  62. package/templates/nextjs/docs/library/prisma/crud.md +17 -17
  63. package/templates/nextjs/docs/library/prisma/index.md +18 -18
  64. package/templates/nextjs/docs/library/prisma/relations.md +16 -16
  65. package/templates/nextjs/docs/library/prisma/schema.md +23 -23
  66. package/templates/nextjs/docs/library/prisma/setup.md +6 -6
  67. package/templates/nextjs/docs/library/prisma/transactions.md +10 -10
  68. package/templates/nextjs/docs/library/tanstack-query/index.md +6 -6
  69. package/templates/nextjs/docs/library/tanstack-query/invalidation.md +20 -20
  70. package/templates/nextjs/docs/library/tanstack-query/optimistic-updates.md +4 -4
  71. package/templates/nextjs/docs/library/tanstack-query/use-mutation.md +15 -15
  72. package/templates/nextjs/docs/library/tanstack-query/use-query.md +22 -22
  73. package/templates/nextjs/docs/library/zod/complex-types.md +11 -11
  74. package/templates/nextjs/docs/library/zod/index.md +8 -8
  75. package/templates/nextjs/docs/library/zod/transforms.md +11 -11
  76. package/templates/nextjs/docs/library/zod/validation.md +9 -9
  77. package/templates/npx/CLAUDE.md +38 -37
  78. package/templates/npx/docs/library/commander/index.md +12 -12
  79. package/templates/npx/docs/library/fs-extra/index.md +9 -9
  80. package/templates/npx/docs/library/prompts/index.md +3 -3
  81. package/templates/npx/docs/references/patterns.md +12 -12
  82. package/templates/tanstack-start/CLAUDE.md +54 -53
  83. package/templates/tanstack-start/docs/architecture.md +128 -128
  84. package/templates/tanstack-start/docs/design.md +169 -169
  85. package/templates/tanstack-start/docs/guides/conventions.md +43 -43
  86. package/templates/tanstack-start/docs/guides/env-setup.md +35 -35
  87. package/templates/tanstack-start/docs/guides/getting-started.md +19 -19
  88. package/templates/tanstack-start/docs/guides/hooks.md +45 -45
  89. package/templates/tanstack-start/docs/guides/routes.md +54 -54
  90. package/templates/tanstack-start/docs/guides/services.md +45 -45
  91. package/templates/tanstack-start/docs/library/better-auth/index.md +68 -68
  92. package/templates/tanstack-start/docs/library/prisma/cloudflare-d1.md +19 -19
  93. package/templates/tanstack-start/docs/library/prisma/config.md +16 -16
  94. package/templates/tanstack-start/docs/library/prisma/crud.md +17 -17
  95. package/templates/tanstack-start/docs/library/prisma/index.md +17 -17
  96. package/templates/tanstack-start/docs/library/prisma/relations.md +16 -16
  97. package/templates/tanstack-start/docs/library/prisma/schema.md +23 -23
  98. package/templates/tanstack-start/docs/library/prisma/setup.md +6 -6
  99. package/templates/tanstack-start/docs/library/prisma/transactions.md +10 -10
  100. package/templates/tanstack-start/docs/library/t3-env/index.md +21 -160
  101. package/templates/tanstack-start/docs/library/tanstack-query/index.md +6 -6
  102. package/templates/tanstack-start/docs/library/tanstack-query/invalidation.md +19 -19
  103. package/templates/tanstack-start/docs/library/tanstack-query/optimistic-updates.md +4 -4
  104. package/templates/tanstack-start/docs/library/tanstack-query/use-mutation.md +14 -14
  105. package/templates/tanstack-start/docs/library/tanstack-query/use-query.md +21 -21
  106. package/templates/tanstack-start/docs/library/tanstack-router/error-handling.md +9 -9
  107. package/templates/tanstack-start/docs/library/tanstack-router/hooks.md +11 -11
  108. package/templates/tanstack-start/docs/library/tanstack-router/index.md +18 -18
  109. package/templates/tanstack-start/docs/library/tanstack-router/navigation.md +17 -17
  110. package/templates/tanstack-start/docs/library/tanstack-router/route-context.md +5 -5
  111. package/templates/tanstack-start/docs/library/tanstack-router/search-params.md +10 -10
  112. package/templates/tanstack-start/docs/library/tanstack-start/auth-patterns.md +8 -8
  113. package/templates/tanstack-start/docs/library/tanstack-start/index.md +15 -15
  114. package/templates/tanstack-start/docs/library/tanstack-start/middleware.md +9 -9
  115. package/templates/tanstack-start/docs/library/tanstack-start/routing.md +6 -6
  116. package/templates/tanstack-start/docs/library/tanstack-start/server-functions.md +18 -18
  117. package/templates/tanstack-start/docs/library/tanstack-start/setup.md +4 -4
  118. package/templates/tanstack-start/docs/library/zod/complex-types.md +11 -11
  119. package/templates/tanstack-start/docs/library/zod/index.md +8 -8
  120. package/templates/tanstack-start/docs/library/zod/transforms.md +11 -11
  121. package/templates/tanstack-start/docs/library/zod/validation.md +9 -9
@@ -1,20 +1,36 @@
1
1
  ---
2
2
  description: 슬래시 커맨드 생성 가이드. ANTHROPIC_CONTEXT_ENGINEERING.md 규칙 기반.
3
3
  allowed-tools: Read, Write, Glob, Grep
4
- argument-hint: <커맨드명>
4
+ argument-hint: <command name>
5
5
  ---
6
6
 
7
+ <critical_instruction>
8
+
9
+ **CRITICAL: 사용자와의 모든 커뮤니케이션은 반드시 한국어로 작성하세요.**
10
+
11
+ - 내부 사고와 분석은 영어로 해도 됨
12
+ - 설명, 요약, 보고서, 피드백 등 사용자에게 전달하는 모든 내용은 반드시 한국어
13
+ - 사용자가 영어로 말하더라도 답변은 한국어로
14
+ - 진행 상황 업데이트와 상태 보고는 반드시 한국어
15
+
16
+ 이 규칙은 절대적이며 예외가 없습니다.
17
+
18
+ </critical_instruction>
19
+
20
+ ---
21
+
22
+
7
23
  # Command Creator
8
24
 
9
- > 슬래시 커맨드 생성. @ANTHROPIC_CONTEXT_ENGINEERING.md 규칙 100% 준수. 위치: `.claude/commands/[name].md`
25
+ > Create slash command. 100% compliance with @ANTHROPIC_CONTEXT_ENGINEERING.md rules. Location: `.claude/commands/[name].md`
10
26
 
11
27
  ---
12
28
 
13
29
  <argument_validation>
14
30
 
15
31
  ```
16
- $ARGUMENTS 없음 → "어떤 커맨드를 만들까요? (예: review-code, optimize, refactor)"
17
- $ARGUMENTS 있음 진행
32
+ No $ARGUMENTS → "What command to create? (e.g., review-code, optimize, refactor)"
33
+ Has $ARGUMENTS → Proceed
18
34
  ```
19
35
 
20
36
  </argument_validation>
@@ -23,14 +39,14 @@ $ARGUMENTS 있음 → 진행
23
39
 
24
40
  <rules>
25
41
 
26
- | 분류 | ❌ 금지 | ✅ 필수 |
27
- |------|---------|---------|
28
- | **설명** | 장황한 설명, 중복 | 압축, ✅/❌ 마커 |
29
- | **구조** | XML 태그 없음, 모호 | XML 섹션, 명확한 계층 |
30
- | **표현** | Don't X (부정형) | Do Y (긍정형) |
31
- | **예시** | 추상적 | 복사 가능 코드 |
32
- | **강조** | CRITICAL 남발 | 필요 시에만 |
33
- | **메타** | - | YAML frontmatter |
42
+ | Category | ❌ Forbidden | ✅ Required |
43
+ |----------|-------------|-----------|
44
+ | **Description** | Verbose, duplicate | Compressed table, ✅/❌ markers |
45
+ | **Structure** | No XML tags, vague | XML sections, clear hierarchy |
46
+ | **Expression** | Don't X (negative) | Do Y (positive) |
47
+ | **Examples** | Abstract | Copy-paste-ready code |
48
+ | **Emphasis** | CRITICAL overuse | Only when needed |
49
+ | **Meta** | - | YAML frontmatter |
34
50
 
35
51
  </rules>
36
52
 
@@ -38,37 +54,37 @@ $ARGUMENTS 있음 → 진행
38
54
 
39
55
  <structure_reference>
40
56
 
41
- ## 커맨드 파일 구조
57
+ ## Command File Structure
42
58
 
43
59
  ```markdown
44
60
  ---
45
- description: 커맨드 설명 (1줄, 트리거 키워드 포함)
46
- allowed-tools: Tool1, Tool2 # 선택적
47
- argument-hint: <인자 설명>
61
+ description: Command description (1 line, include trigger keywords)
62
+ allowed-tools: Tool1, Tool2 # Optional
63
+ argument-hint: <argument description>
48
64
  ---
49
65
 
50
66
  # Command Name
51
67
 
52
- > 목적 (1-2문장)
68
+ > Purpose (1-2 sentences)
53
69
 
54
70
  ---
55
71
 
56
72
  <purpose>
57
- 구체적 목표
73
+ Specific goal
58
74
  </purpose>
59
75
 
60
76
  ---
61
77
 
62
78
  <arguments>
63
- | 예시 | 동작 |
64
- |------|------|
65
- | `arg` | 설명 |
79
+ | Example | Action |
80
+ |---------|--------|
81
+ | `arg` | Description |
66
82
  </arguments>
67
83
 
68
84
  ---
69
85
 
70
86
  <workflow>
71
- | 단계 | 작업 | 도구 |
87
+ | Step | Task | Tool |
72
88
  |------|------|------|
73
89
  | 1. | ... | Tool |
74
90
  </workflow>
@@ -76,25 +92,25 @@ argument-hint: <인자 설명>
76
92
  ---
77
93
 
78
94
  <forbidden>
79
- | 금지 |
80
- |------|
81
- | 항목 |
95
+ | Prohibited |
96
+ |----------|
97
+ | Item |
82
98
  </forbidden>
83
99
 
84
100
  ---
85
101
 
86
102
  <required>
87
- | 필수 |
88
- |------|
89
- | 항목 |
103
+ | Required |
104
+ |----------|
105
+ | Item |
90
106
  </required>
91
107
 
92
108
  ---
93
109
 
94
110
  <examples>
95
111
  ```typescript
96
- // ✅ 올바른 패턴
97
- // ❌ 잘못된 패턴
112
+ // ✅ Correct pattern
113
+ // ❌ Wrong pattern
98
114
  ```
99
115
  </examples>
100
116
 
@@ -102,33 +118,33 @@ argument-hint: <인자 설명>
102
118
 
103
119
  <validation>
104
120
  ```text
105
- 체크리스트
106
- 금지사항
121
+ Checklist
122
+ Prohibited
107
123
  ```
108
124
  </validation>
109
125
  ```
110
126
 
111
- ## 섹션 레퍼런스
112
-
113
- | 섹션 | 용도 | 형식 | 필수 |
114
- |------|------|------|------|
115
- | **\<purpose\>** | 커맨드 목표 | 간결한 문장 | ✅ |
116
- | **\<arguments\>** | 인자 설명 | (예시\|동작) | ✅ |
117
- | **\<workflow\>** | 실행 단계 | (단계\|작업\|도구) | ✅ |
118
- | **\<forbidden\>** | 금지사항 | 표/리스트 | ✅ |
119
- | **\<required\>** | 필수사항 | 표/리스트 | ✅ |
120
- | **\<examples\>** | 코드 예시 | 실행 가능 코드 | ✅ |
121
- | **\<validation\>** | 체크리스트 | ✅/❌ 마커 | ✅ |
122
- | **\<critical_requirements\>** | 에이전트 위임 | Task 패턴 | 조건부 |
123
- | **\<thinking_strategy\>** | Sequential Thinking | 복잡도 가이드 | 조건부 |
124
-
125
- ## YAML 필드
126
-
127
- | 필드 | 설명 | 예시 | 필수 |
128
- |------|------|------|------|
129
- | **description** | 트리거 키워드 포함 설명 | `Git 커밋. push/pull 지원.` | ✅ |
130
- | **argument-hint** | 인자 예시 | `[push\|pull\|메시지...]` | ✅ |
131
- | **allowed-tools** | 도구 제한 | `Bash, Read, Grep` | ❌ |
127
+ ## Section Reference
128
+
129
+ | Section | Purpose | Format | Required |
130
+ |---------|---------|--------|----------|
131
+ | **\<purpose\>** | Command goal | Concise sentence | ✅ |
132
+ | **\<arguments\>** | Argument description | Table (example\|action) | ✅ |
133
+ | **\<workflow\>** | Execution steps | Table (step\|task\|tool) | ✅ |
134
+ | **\<forbidden\>** | Prohibited | Table/list | ✅ |
135
+ | **\<required\>** | Required | Table/list | ✅ |
136
+ | **\<examples\>** | Code example | Runnable code | ✅ |
137
+ | **\<validation\>** | Checklist | ✅/❌ markers | ✅ |
138
+ | **\<critical_requirements\>** | Agent delegation | Task pattern | Conditional |
139
+ | **\<thinking_strategy\>** | Sequential Thinking | Complexity guide | Conditional |
140
+
141
+ ## YAML Fields
142
+
143
+ | Field | Description | Example | Required |
144
+ |-------|-------------|---------|----------|
145
+ | **description** | Description with trigger keywords | `Git commit. Support push/pull.` | ✅ |
146
+ | **argument-hint** | Argument example | `[push\|pull\|message...]` | ✅ |
147
+ | **allowed-tools** | Tool restriction | `Bash, Read, Grep` | ❌ |
132
148
 
133
149
  </structure_reference>
134
150
 
@@ -1,16 +1,32 @@
1
1
  ---
2
2
  description: Claude Code 문서 작성 가이드
3
3
  allowed-tools: Read, Write, Glob, Grep
4
- argument-hint: <문서 유형: CLAUDE.md | SKILL.md | COMMAND.md>
4
+ argument-hint: <document type: CLAUDE.md | SKILL.md | COMMAND.md>
5
5
  ---
6
6
 
7
+ <critical_instruction>
8
+
9
+ **CRITICAL: 사용자와의 모든 커뮤니케이션은 반드시 한국어로 작성하세요.**
10
+
11
+ - 내부 사고와 분석은 영어로 해도 됨
12
+ - 설명, 요약, 보고서, 피드백 등 사용자에게 전달하는 모든 내용은 반드시 한국어
13
+ - 사용자가 영어로 말하더라도 답변은 한국어로
14
+ - 진행 상황 업데이트와 상태 보고는 반드시 한국어
15
+
16
+ 이 규칙은 절대적이며 예외가 없습니다.
17
+
18
+ </critical_instruction>
19
+
20
+ ---
21
+
22
+
7
23
  # Docs Creator Command
8
24
 
9
- > Claude Code 문서 (CLAUDE.md, SKILL.md, COMMAND.md) Anthropic 가이드라인에 따라 효과적으로 작성
25
+ > Effectively create Claude Code documents (CLAUDE.md, SKILL.md, COMMAND.md) following Anthropic guidelines
10
26
 
11
27
  <purpose>
12
28
 
13
- **목표:** 고밀도, 실행 가능한, 유지보수 가능한 문서 작성
29
+ **Goal:** Create high-density, executable, maintainable documentation
14
30
 
15
31
  </purpose>
16
32
 
@@ -18,13 +34,13 @@ argument-hint: <문서 유형: CLAUDE.md | SKILL.md | COMMAND.md>
18
34
 
19
35
  <trigger_conditions>
20
36
 
21
- | 상황 | 작성 필요 |
22
- |------|----------|
23
- | **새 프로젝트** | CLAUDE.md 생성 |
24
- | **새 스킬** | SKILL.md 생성 |
25
- | **새 커맨드** | COMMAND.md 생성 |
26
- | **문서 부재** | 프로젝트 규칙 문서화 |
27
- | **지식 공유** | 온보딩 가이드 |
37
+ | Situation | Create |
38
+ |-----------|--------|
39
+ | **New project** | Create CLAUDE.md |
40
+ | **New skill** | Create SKILL.md |
41
+ | **New command** | Create COMMAND.md |
42
+ | **Missing docs** | Document project rules |
43
+ | **Knowledge sharing** | Team onboarding guide |
28
44
 
29
45
  </trigger_conditions>
30
46
 
@@ -32,13 +48,13 @@ argument-hint: <문서 유형: CLAUDE.md | SKILL.md | COMMAND.md>
32
48
 
33
49
  <forbidden>
34
50
 
35
- | 분류 | 금지 사항 |
36
- |------|----------|
37
- | **설명** | 장황한 설명, 불필요한 텍스트, 중복 정보 |
38
- | **구조** | XML 태그 없는 복잡 구조, 모호한 지시 |
39
- | **표현** | 부정형 지시 (Don't X → Do Y) |
40
- | **복잡도** | 복잡한 조건문, 모든 엣지 케이스 |
41
- | **강조** | 과도한 강조 (CRITICAL, MUST 남발) |
51
+ | Category | Prohibited |
52
+ |----------|-----------|
53
+ | **Description** | Verbose text, unnecessary content, duplication |
54
+ | **Structure** | Complex without XML tags, vague instructions |
55
+ | **Expression** | Negative instructions (Don't X → Do Y) |
56
+ | **Complexity** | Complex conditionals, all edge cases |
57
+ | **Emphasis** | Excessive (CRITICAL, MUST overuse) |
42
58
 
43
59
  </forbidden>
44
60
 
@@ -46,14 +62,14 @@ argument-hint: <문서 유형: CLAUDE.md | SKILL.md | COMMAND.md>
46
62
 
47
63
  <required>
48
64
 
49
- | 분류 | 필수 사항 |
50
- |------|----------|
51
- | **구조** | XML 태그 섹션 구분, 명확한 계층 |
52
- | **표현** | 형식 압축, ✅/❌ 마커 |
53
- | **예시** | 코드/예시 중심, 복사 가능 패턴 |
54
- | **로딩** | @imports로 just-in-time |
55
- | **지시** | 명시적 지시, 긍정형 표현 |
56
- | **버전** | 라이브러리 버전 명시 |
65
+ | Category | Required |
66
+ |----------|----------|
67
+ | **Structure** | XML tag sections, clear hierarchy |
68
+ | **Expression** | Compressed tables, ✅/❌ markers |
69
+ | **Examples** | Code-focused, copy-paste-ready patterns |
70
+ | **Loading** | Just-in-time with @imports |
71
+ | **Instructions** | Explicit, positive expression |
72
+ | **Version** | Library versions specified |
57
73
 
58
74
  </required>
59
75
 
@@ -61,40 +77,40 @@ argument-hint: <문서 유형: CLAUDE.md | SKILL.md | COMMAND.md>
61
77
 
62
78
  <document_types>
63
79
 
64
- ## CLAUDE.md - 프로젝트 규칙
80
+ ## CLAUDE.md - Project Rules
65
81
 
66
- **용도:** 프로젝트별 코딩 규칙, 금지/필수 사항, 빠른 참조
82
+ **Usage:** Project-specific coding rules, forbidden/required items, quick reference
67
83
 
68
- **구조:**
84
+ **Structure:**
69
85
  ```markdown
70
- # CLAUDE.md - [프로젝트명]
86
+ # CLAUDE.md - [Project Name]
71
87
 
72
88
  <instructions>
73
89
  @path/to/common-rules.md
74
- @docs/library/[라이브러리]/index.md
90
+ @docs/library/[library]/index.md
75
91
  </instructions>
76
92
 
77
93
  ---
78
94
 
79
95
  <forbidden>
80
- | 분류 | 금지 |
81
- |------|------|
82
- | **Git** | AI 표시, 이모지, 여러 |
96
+ | Category | Forbidden |
97
+ |----------|----------|
98
+ | **Git** | AI indicators, emoji, multiple lines |
83
99
  </forbidden>
84
100
 
85
101
  ---
86
102
 
87
103
  <required>
88
- | 분류 | 필수 |
89
- |------|------|
90
- | **타입** | 명시적 return type |
104
+ | Category | Required |
105
+ |----------|----------|
106
+ | **Type** | Explicit return type |
91
107
  </required>
92
108
 
93
109
  ---
94
110
 
95
111
  <tech_stack>
96
- | 기술 | 버전 | 주의 |
97
- |------|------|------|
112
+ | Technology | Version | Note |
113
+ |----------|---------|------|
98
114
  | TypeScript | 5.x | strict |
99
115
  </tech_stack>
100
116
 
@@ -102,7 +118,7 @@ argument-hint: <문서 유형: CLAUDE.md | SKILL.md | COMMAND.md>
102
118
 
103
119
  <quick_patterns>
104
120
  ```typescript
105
- // 복사 가능한 패턴
121
+ // Copy-paste-ready pattern
106
122
  const example = () => { ... }
107
123
  ```
108
124
  </quick_patterns>
@@ -110,28 +126,28 @@ const example = () => { ... }
110
126
 
111
127
  ---
112
128
 
113
- ## SKILL.md - 재사용 작업
129
+ ## SKILL.md - Reusable Task
114
130
 
115
- **용도:** 특정 작업 자동화 스킬 정의
131
+ **Usage:** Define skill for specific task automation
116
132
 
117
- **구조:**
133
+ **Structure:**
118
134
  ```markdown
119
135
  ---
120
136
  name: skill-name
121
- description: 짧은 설명 (1)
137
+ description: Brief description (1 line)
122
138
  ---
123
139
 
124
140
  <trigger_conditions>
125
- | 키워드/상황 | 반응 |
126
- |-----------|------|
127
- | "키워드" | 즉시 실행 |
141
+ | Keyword/Situation | Action |
142
+ |------------------|--------|
143
+ | "keyword" | Execute immediately |
128
144
  </trigger_conditions>
129
145
 
130
146
  ---
131
147
 
132
148
  <workflow>
133
149
  <step number="1">
134
- <action>액션 설명</action>
150
+ <action>Action description</action>
135
151
  <tools>Tool1, Tool2</tools>
136
152
  </step>
137
153
  </workflow>
@@ -140,39 +156,39 @@ description: 짧은 설명 (1줄)
140
156
 
141
157
  <examples>
142
158
  ```typescript
143
- // 실제 코드
159
+ // Actual code
144
160
  ```
145
161
  </examples>
146
162
  ```
147
163
 
148
164
  ---
149
165
 
150
- ## COMMAND.md - CLI 커맨드
166
+ ## COMMAND.md - CLI Command
151
167
 
152
- **용도:** 슬래시 커맨드 정의 (/commit, /review)
168
+ **Usage:** Define slash command (/commit, /review)
153
169
 
154
- **구조:**
170
+ **Structure:**
155
171
  ```markdown
156
172
  ---
157
- description: 커맨드 설명
173
+ description: Command description
158
174
  allowed-tools: Read, Edit, Bash
159
- argument-hint: <인자 설명>
175
+ argument-hint: <argument description>
160
176
  ---
161
177
 
162
178
  <purpose>
163
- 구체적 목표
179
+ Specific goal
164
180
  </purpose>
165
181
 
166
182
  ---
167
183
 
168
184
  <workflow>
169
- 실행 단계
185
+ Execution steps
170
186
  </workflow>
171
187
 
172
188
  ---
173
189
 
174
190
  <examples>
175
- ✅/❌ 비교 예시
191
+ ✅/❌ Comparison examples
176
192
  </examples>
177
193
  ```
178
194
 
@@ -1,16 +1,32 @@
1
1
  ---
2
2
  description: 기존 Claude Code 문서 개선
3
3
  allowed-tools: Read, Edit, Glob, Grep
4
- argument-hint: <문서 경로>
4
+ argument-hint: <document path>
5
5
  ---
6
6
 
7
+ <critical_instruction>
8
+
9
+ **CRITICAL: 사용자와의 모든 커뮤니케이션은 반드시 한국어로 작성하세요.**
10
+
11
+ - 내부 사고와 분석은 영어로 해도 됨
12
+ - 설명, 요약, 보고서, 피드백 등 사용자에게 전달하는 모든 내용은 반드시 한국어
13
+ - 사용자가 영어로 말하더라도 답변은 한국어로
14
+ - 진행 상황 업데이트와 상태 보고는 반드시 한국어
15
+
16
+ 이 규칙은 절대적이며 예외가 없습니다.
17
+
18
+ </critical_instruction>
19
+
20
+ ---
21
+
22
+
7
23
  # Docs Refactor Command
8
24
 
9
- > 기존 CLAUDE.md, SKILL.md, COMMAND.md 문서를 Anthropic 가이드라인에 맞게 개선
25
+ > Improve existing CLAUDE.md, SKILL.md, COMMAND.md documents to align with Anthropic guidelines
10
26
 
11
27
  <purpose>
12
28
 
13
- **목표:** 토큰 효율 50% 개선, 명확성 향상, 유지보수성 강화
29
+ **Goal:** Improve token efficiency 50%, enhance clarity, strengthen maintainability
14
30
 
15
31
  </purpose>
16
32
 
@@ -18,15 +34,15 @@ argument-hint: <문서 경로>
18
34
 
19
35
  <trigger_conditions>
20
36
 
21
- | 상황 | 리팩토링 필요 |
22
- |------|--------------|
23
- | **토큰 과다** | 파일 500 초과 |
24
- | **가독성 저하** | XML 태그 미사용, 구조 불명확 |
25
- | **중복 발견** | 동일 내용 2 이상 반복 |
26
- | **설명 과다** | 코드 예시보다 설명 많음 |
27
- | **@imports 미사용** | 공통 규칙 반복 |
28
- | **모호한 지시** | "적절히", "필요시" |
29
- | **부정형 과다** | Don't, Never, Avoid 위주 |
37
+ | Situation | Refactoring Needed |
38
+ |-----------|-------------------|
39
+ | **Token overuse** | File exceeds 500 lines |
40
+ | **Readability drop** | No XML tags, unclear structure |
41
+ | **Duplication found** | Same content repeated 2+ times |
42
+ | **Excessive description** | More description than code examples |
43
+ | **@imports unused** | Common rules repeated |
44
+ | **Vague instructions** | "Appropriately", "if needed", etc. |
45
+ | **Negative overuse** | Focused on Don't, Never, Avoid |
30
46
 
31
47
  </trigger_conditions>
32
48
 
@@ -34,12 +50,12 @@ argument-hint: <문서 경로>
34
50
 
35
51
  <forbidden>
36
52
 
37
- | 분류 | 금지 사항 |
38
- |------|----------|
39
- | **구조** | XML 태그 제거, 단순 삭제 |
40
- | **내용** | 핵심 정보 손실, 버전 정보 제거 |
41
- | **표현** | 모호한 지시 유지, 부정형 부정형 |
42
- | **스타일** | 일관성 없는 마커 |
53
+ | Category | Prohibited |
54
+ |----------|-----------|
55
+ | **Structure** | Remove XML tags, simple deletion |
56
+ | **Content** | Lose core info, remove version info |
57
+ | **Expression** | Maintain vagueness, negativenegative |
58
+ | **Style** | Inconsistent markers |
43
59
 
44
60
  </forbidden>
45
61
 
@@ -47,13 +63,13 @@ argument-hint: <문서 경로>
47
63
 
48
64
  <required>
49
65
 
50
- | 분류 | 필수 작업 |
51
- |------|----------|
52
- | **분석** | 전체 읽기토큰 확인중복 식별 |
53
- | **구조화** | XML 태그 적용 |
54
- | **압축** | 형식 변환, 설명 제거 |
55
- | **예시화** | 설명코드 예시 |
56
- | **검증** | Before/After 50% 감소 확인 |
66
+ | Category | Required Task |
67
+ |----------|---------------|
68
+ | **Analyze** | Full readtoken countidentify duplication |
69
+ | **Structure** | Apply XML tags |
70
+ | **Compress** | Convert to table format, remove description |
71
+ | **Exemplify** | Descriptioncode examples |
72
+ | **Verify** | Confirm Before/After 50% reduction |
57
73
 
58
74
  </required>
59
75
 
@@ -1,32 +1,48 @@
1
1
  ---
2
2
  description: 계획 실행 또는 간단한 작업 수행. ultrathink + sequential thinking 2-5 + TodoWrite 필수.
3
3
  allowed-tools: Read, Glob, Grep, Bash, Task, Edit, Write, TodoWrite, mcp__sequential-thinking__sequentialthinking
4
- argument-hint: <실행할 작업 또는 계획 파일명>
4
+ argument-hint: <task to execute or plan filename>
5
5
  ---
6
6
 
7
+ <critical_instruction>
8
+
9
+ **CRITICAL: 사용자와의 모든 커뮤니케이션은 반드시 한국어로 작성하세요.**
10
+
11
+ - 내부 사고와 분석은 영어로 해도 됨
12
+ - 설명, 요약, 보고서, 피드백 등 사용자에게 전달하는 모든 내용은 반드시 한국어
13
+ - 사용자가 영어로 말하더라도 답변은 한국어로
14
+ - 진행 상황 업데이트와 상태 보고는 반드시 한국어
15
+
16
+ 이 규칙은 절대적이며 예외가 없습니다.
17
+
18
+ </critical_instruction>
19
+
20
+ ---
21
+
22
+
7
23
  # Execute Command
8
24
 
9
- > 분석 즉시 구현하는 커맨드. 옵션 제시 없이 바로 실행.
25
+ > Command to analyze and implement immediately. Execute directly without presenting options.
10
26
 
11
- **실행 대상**: $ARGUMENTS
27
+ **Execution Target**: $ARGUMENTS
12
28
 
13
29
  ---
14
30
 
15
31
  <argument_validation>
16
32
 
17
- ## ARGUMENT 필수 확인
33
+ ## ARGUMENT Verification Required
18
34
 
19
35
  ```
20
- $ARGUMENTS 없음 즉시 질문:
36
+ No $ARGUMENTS → Ask immediately:
21
37
 
22
- "무엇을 실행해야 하나요? 구체적으로 알려주세요.
38
+ "What needs to be executed? Please provide details.
23
39
 
24
- 예시:
25
- - .claude/plans/*.md 계획 파일
26
- - 구체적 작업 (기능 추가, 버그 수정, 리팩토링)
27
- - 간단한 코드 수정"
40
+ Examples:
41
+ - .claude/plans/*.md plan files
42
+ - Specific tasks (add feature, fix bug, refactor)
43
+ - Simple code changes"
28
44
 
29
- $ARGUMENTS 있음 다음 단계 진행
45
+ Has $ARGUMENTS → Proceed to next step
30
46
  ```
31
47
 
32
48
  </argument_validation>