@kood/claude-code 0.3.6 → 0.3.8

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 (120) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
  3. package/templates/.claude/agents/code-reviewer.md +124 -124
  4. package/templates/.claude/agents/dependency-manager.md +85 -85
  5. package/templates/.claude/agents/deployment-validator.md +56 -56
  6. package/templates/.claude/agents/git-operator.md +64 -64
  7. package/templates/.claude/agents/implementation-executor.md +95 -95
  8. package/templates/.claude/agents/ko-to-en-translator.md +74 -0
  9. package/templates/.claude/agents/lint-fixer.md +78 -78
  10. package/templates/.claude/agents/refactor-advisor.md +122 -122
  11. package/templates/.claude/commands/agent-creator.md +185 -185
  12. package/templates/.claude/commands/bug-fix.md +193 -193
  13. package/templates/.claude/commands/command-creator.md +54 -54
  14. package/templates/.claude/commands/docs-creator.md +57 -57
  15. package/templates/.claude/commands/docs-refactor.md +26 -26
  16. package/templates/.claude/commands/execute.md +12 -12
  17. package/templates/.claude/commands/git-all.md +32 -32
  18. package/templates/.claude/commands/git-session.md +42 -42
  19. package/templates/.claude/commands/git.md +34 -34
  20. package/templates/.claude/commands/lint-fix.md +138 -138
  21. package/templates/.claude/commands/lint-init.md +61 -61
  22. package/templates/.claude/commands/plan.md +260 -260
  23. package/templates/.claude/commands/prd.md +24 -24
  24. package/templates/.claude/commands/pre-deploy.md +109 -109
  25. package/templates/.claude/commands/refactor.md +147 -147
  26. package/templates/.claude/commands/version-update.md +17 -17
  27. package/templates/hono/CLAUDE.md +27 -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 +228 -0
  48. package/templates/nextjs/docs/design.md +558 -0
  49. package/templates/nextjs/docs/guides/conventions.md +343 -0
  50. package/templates/nextjs/docs/guides/getting-started.md +367 -0
  51. package/templates/nextjs/docs/guides/routes.md +342 -0
  52. package/templates/nextjs/docs/library/better-auth/index.md +541 -0
  53. package/templates/nextjs/docs/library/nextjs/app-router.md +269 -0
  54. package/templates/nextjs/docs/library/nextjs/caching.md +351 -0
  55. package/templates/nextjs/docs/library/nextjs/index.md +291 -0
  56. package/templates/nextjs/docs/library/nextjs/middleware.md +391 -0
  57. package/templates/nextjs/docs/library/nextjs/route-handlers.md +382 -0
  58. package/templates/nextjs/docs/library/nextjs/server-actions.md +366 -0
  59. package/templates/nextjs/docs/library/prisma/cloudflare-d1.md +76 -0
  60. package/templates/nextjs/docs/library/prisma/config.md +77 -0
  61. package/templates/nextjs/docs/library/prisma/crud.md +90 -0
  62. package/templates/nextjs/docs/library/prisma/index.md +73 -0
  63. package/templates/nextjs/docs/library/prisma/relations.md +69 -0
  64. package/templates/nextjs/docs/library/prisma/schema.md +98 -0
  65. package/templates/nextjs/docs/library/prisma/setup.md +49 -0
  66. package/templates/nextjs/docs/library/prisma/transactions.md +50 -0
  67. package/templates/nextjs/docs/library/tanstack-query/index.md +66 -0
  68. package/templates/nextjs/docs/library/tanstack-query/invalidation.md +54 -0
  69. package/templates/nextjs/docs/library/tanstack-query/optimistic-updates.md +77 -0
  70. package/templates/nextjs/docs/library/tanstack-query/use-mutation.md +63 -0
  71. package/templates/nextjs/docs/library/tanstack-query/use-query.md +70 -0
  72. package/templates/nextjs/docs/library/zod/complex-types.md +61 -0
  73. package/templates/nextjs/docs/library/zod/index.md +56 -0
  74. package/templates/nextjs/docs/library/zod/transforms.md +51 -0
  75. package/templates/nextjs/docs/library/zod/validation.md +70 -0
  76. package/templates/npx/CLAUDE.md +37 -37
  77. package/templates/npx/docs/library/commander/index.md +12 -12
  78. package/templates/npx/docs/library/fs-extra/index.md +9 -9
  79. package/templates/npx/docs/library/prompts/index.md +3 -3
  80. package/templates/npx/docs/references/patterns.md +12 -12
  81. package/templates/tanstack-start/CLAUDE.md +53 -49
  82. package/templates/tanstack-start/docs/architecture.md +128 -128
  83. package/templates/tanstack-start/docs/design.md +169 -169
  84. package/templates/tanstack-start/docs/guides/conventions.md +43 -43
  85. package/templates/tanstack-start/docs/guides/env-setup.md +35 -35
  86. package/templates/tanstack-start/docs/guides/getting-started.md +19 -19
  87. package/templates/tanstack-start/docs/guides/hooks.md +63 -35
  88. package/templates/tanstack-start/docs/guides/routes.md +61 -42
  89. package/templates/tanstack-start/docs/guides/services.md +45 -45
  90. package/templates/tanstack-start/docs/library/better-auth/index.md +68 -68
  91. package/templates/tanstack-start/docs/library/prisma/cloudflare-d1.md +19 -19
  92. package/templates/tanstack-start/docs/library/prisma/config.md +16 -16
  93. package/templates/tanstack-start/docs/library/prisma/crud.md +17 -17
  94. package/templates/tanstack-start/docs/library/prisma/index.md +17 -17
  95. package/templates/tanstack-start/docs/library/prisma/relations.md +16 -16
  96. package/templates/tanstack-start/docs/library/prisma/schema.md +23 -23
  97. package/templates/tanstack-start/docs/library/prisma/setup.md +6 -6
  98. package/templates/tanstack-start/docs/library/prisma/transactions.md +10 -10
  99. package/templates/tanstack-start/docs/library/t3-env/index.md +21 -160
  100. package/templates/tanstack-start/docs/library/tanstack-query/index.md +6 -6
  101. package/templates/tanstack-start/docs/library/tanstack-query/invalidation.md +19 -19
  102. package/templates/tanstack-start/docs/library/tanstack-query/optimistic-updates.md +4 -4
  103. package/templates/tanstack-start/docs/library/tanstack-query/use-mutation.md +14 -14
  104. package/templates/tanstack-start/docs/library/tanstack-query/use-query.md +21 -21
  105. package/templates/tanstack-start/docs/library/tanstack-router/error-handling.md +9 -9
  106. package/templates/tanstack-start/docs/library/tanstack-router/hooks.md +11 -11
  107. package/templates/tanstack-start/docs/library/tanstack-router/index.md +18 -18
  108. package/templates/tanstack-start/docs/library/tanstack-router/navigation.md +17 -17
  109. package/templates/tanstack-start/docs/library/tanstack-router/route-context.md +5 -5
  110. package/templates/tanstack-start/docs/library/tanstack-router/search-params.md +10 -10
  111. package/templates/tanstack-start/docs/library/tanstack-start/auth-patterns.md +8 -8
  112. package/templates/tanstack-start/docs/library/tanstack-start/index.md +15 -15
  113. package/templates/tanstack-start/docs/library/tanstack-start/middleware.md +9 -9
  114. package/templates/tanstack-start/docs/library/tanstack-start/routing.md +6 -6
  115. package/templates/tanstack-start/docs/library/tanstack-start/server-functions.md +18 -18
  116. package/templates/tanstack-start/docs/library/tanstack-start/setup.md +4 -4
  117. package/templates/tanstack-start/docs/library/zod/complex-types.md +11 -11
  118. package/templates/tanstack-start/docs/library/zod/index.md +8 -8
  119. package/templates/tanstack-start/docs/library/zod/transforms.md +11 -11
  120. package/templates/tanstack-start/docs/library/zod/validation.md +9 -9
@@ -1,68 +1,68 @@
1
1
  ---
2
- description: tsc/eslint 오류 검사 하나씩 꼼꼼히 수정. @lint-fixer 에이전트 필수 사용.
2
+ description: Check and fix tsc/eslint errors one by one. @lint-fixer agent required.
3
3
  allowed-tools: Task
4
- argument-hint: [파일/디렉토리 경로...]
4
+ argument-hint: [file/directory paths...]
5
5
  ---
6
6
 
7
7
  # Lint Fix Command
8
8
 
9
- > @lint-fixer 에이전트를 사용하여 tsc/eslint 오류를 자동으로 수정.
9
+ > Automatically fix tsc/eslint errors using the @lint-fixer agent.
10
10
 
11
11
  ---
12
12
 
13
13
  <critical_requirements>
14
14
 
15
- ## ⚠️ CRITICAL: 작업 시작 필수 확인
15
+ ## ⚠️ CRITICAL: Required checks before proceeding
16
16
 
17
- **이 커맨드는 반드시 @lint-fixer 에이전트를 사용해야 합니다.**
17
+ **This command must use the @lint-fixer agent.**
18
18
 
19
- ### MANDATORY: Task 도구로 @lint-fixer 호출
19
+ ### MANDATORY: Call @lint-fixer with Task tool
20
20
 
21
21
  ```typescript
22
22
  Task({
23
23
  subagent_type: 'lint-fixer',
24
- description: 'tsc/eslint 오류 수정',
24
+ description: 'Fix tsc/eslint errors',
25
25
  prompt: `
26
- $ARGUMENTS 처리:
27
- ${$ARGUMENTS ? `특정 경로: ${$ARGUMENTS}` : '전체 프로젝트 검사'}
28
-
29
- 수행할 작업:
30
- 1. tsc + eslint 병렬 검사
31
- 2. 오류 분류 (간단/복잡)
32
- 3. TodoWrite로 오류 목록 생성
33
- 4. 간단한 오류: 즉시 수정
34
- 5. 복잡한 오류: Sequential Thinking으로 분석 후 수정
35
- 6. 전체 재검사로 완료 확인
26
+ Handle $ARGUMENTS:
27
+ ${$ARGUMENTS ? `Specific paths: ${$ARGUMENTS}` : 'Check entire project'}
28
+
29
+ Tasks to perform:
30
+ 1. Run tsc + eslint in parallel
31
+ 2. Classify errors (simple/complex)
32
+ 3. Create error list with TodoWrite
33
+ 4. Simple errors: fix immediately
34
+ 5. Complex errors: analyze with Sequential Thinking then fix
35
+ 6. Verify with full recheck
36
36
  `
37
37
  })
38
38
  ```
39
39
 
40
- **❌ 절대 금지:**
41
- - Bash 도구로 tsc/eslint 직접 실행 수동 수정
42
- - @lint-fixer 없이 오류 수정
43
- - 커맨드 내에서 직접 오류 분석/수정
40
+ **❌ Absolutely forbidden:**
41
+ - Execute tsc/eslint directly with Bash tool and manually fix
42
+ - Fix errors without @lint-fixer
43
+ - Analyze/fix errors directly in command
44
44
 
45
- **✅ 필수:**
46
- - Task 도구로 @lint-fixer 에이전트 호출
47
- - 모든 lint 작업을 에이전트에 위임
48
- - 에이전트가 자동으로 간단/복잡 판단 처리
45
+ **✅ Required:**
46
+ - Call @lint-fixer agent with Task tool
47
+ - Delegate all lint work to agent
48
+ - Agent automatically judges simple/complex and handles accordingly
49
49
 
50
- **@lint-fixer 에이전트 장점:**
51
- - 간단한 오류는 즉시 수정 (Sequential Thinking 불필요)
52
- - 복잡한 오류만 Sequential Thinking 사용 (효율적)
53
- - TodoWrite로 진행 상황 자동 추적
54
- - 우선순위 자동 정렬 (타입 오류린트 오류)
50
+ **@lint-fixer agent benefits:**
51
+ - Simple errors fixed immediately (no Sequential Thinking needed)
52
+ - Complex errors analyzed with Sequential Thinking only (efficient)
53
+ - Auto-track progress with TodoWrite
54
+ - Auto-prioritize (type errorslint errors)
55
55
 
56
56
  ---
57
57
 
58
- **진행 자가 점검:**
58
+ **Self-check before proceeding:**
59
59
  ```text
60
- □ Task 도구 사용 준비?
61
- □ @lint-fixer 에이전트로 작업 위임?
62
- Bash로 tsc/eslint 직접 실행 안 함?
60
+ □ Task tool ready to use?
61
+ Delegating work to @lint-fixer agent?
62
+ Not executing tsc/eslint directly with Bash?
63
63
  ```
64
64
 
65
- **⚠️ 체크리스트를 통과하지 않으면 작업을 시작하지 마세요.**
65
+ **⚠️ Do not start if checklist is not complete.**
66
66
 
67
67
  </critical_requirements>
68
68
 
@@ -70,11 +70,11 @@ Task({
70
70
 
71
71
  <forbidden>
72
72
 
73
- | 분류 | 금지 |
74
- |------|------|
75
- | **회피** | `any` 타입, `@ts-ignore`, `eslint-disable` 남발 |
76
- | **전략** | 여러 오류 동시 수정, 오류 메시지만 보고 급하게 수정 |
77
- | **분석** | Sequential Thinking 없이 수정 |
73
+ | Category | Forbidden |
74
+ |----------|-----------|
75
+ | **Avoidance** | Excessive `any` type, `@ts-ignore`, `eslint-disable` |
76
+ | **Strategy** | Fix multiple errors simultaneously, fix hastily based on error message alone |
77
+ | **Analysis** | Fix without Sequential Thinking |
78
78
 
79
79
  </forbidden>
80
80
 
@@ -82,34 +82,34 @@ Task({
82
82
 
83
83
  <agent_usage>
84
84
 
85
- ## @lint-fixer Agent 활용
85
+ ## @lint-fixer Agent Usage
86
86
 
87
- **언제 사용:**
88
- - 10 이상 오류
89
- - 복잡한 타입 오류 다수
90
- - 백그라운드에서 자동 수정 원할
87
+ **When to use:**
88
+ - 10+ errors
89
+ - Multiple complex type errors
90
+ - Want automatic fixing in background
91
91
 
92
- **호출 방법:**
92
+ **How to call:**
93
93
  ```bash
94
94
  @lint-fixer
95
- # 또는 자연어
96
- "lint 오류 자동으로 수정해줘"
95
+ # or natural language
96
+ "Fix lint errors automatically"
97
97
  ```
98
98
 
99
- **장점:**
100
- - 간단한 오류는 즉시 수정 (Sequential Thinking 불필요)
101
- - 복잡한 오류만 Sequential Thinking 사용 (효율적)
102
- - 독립적 context에서 실행 (메인 작업 병렬 가능)
99
+ **Benefits:**
100
+ - Simple errors fixed immediately (no Sequential Thinking needed)
101
+ - Complex errors analyzed with Sequential Thinking only (efficient)
102
+ - Run in independent context (can parallelize with main work)
103
103
 
104
- **직접 수정 vs Agent:**
104
+ **Direct fix vs Agent:**
105
105
 
106
- | 상황 | 권장 방법 |
107
- |------|----------|
108
- | 1-5 오류, 간단 | 직접 수정 (command) |
109
- | 10 이상 오류 | @lint-fixer |
110
- | 복잡한 타입 오류 다수 | @lint-fixer |
111
- | 빠른 수정 필요 | 직접 수정 |
112
- | 백그라운드 실행 | @lint-fixer |
106
+ | Situation | Recommended |
107
+ |-----------|-------------|
108
+ | 1-5 simple errors | Direct fix (command) |
109
+ | 10+ errors | @lint-fixer |
110
+ | Multiple complex type errors | @lint-fixer |
111
+ | Quick fix needed | Direct fix |
112
+ | Background execution | @lint-fixer |
113
113
 
114
114
  </agent_usage>
115
115
 
@@ -117,13 +117,13 @@ Task({
117
117
 
118
118
  <required>
119
119
 
120
- | 분류 | 필수 |
121
- |------|------|
122
- | **Thinking** | Sequential Thinking 3-5단계 (각 오류마다) |
123
- | **Tracking** | TodoWrite로 오류 목록 추적 |
124
- | **Strategy** | 하나씩 수정재검사다음 오류 |
125
- | **Validation** | 파일 수정 해당 파일 재검사 |
126
- | **Parallel** | 5 이상 독립 오류 Task 도구로 병렬 분석 |
120
+ | Category | Required |
121
+ |----------|----------|
122
+ | **Thinking** | Sequential Thinking 3-5 steps per error |
123
+ | **Tracking** | Track error list with TodoWrite |
124
+ | **Strategy** | Fix onerechecknext error |
125
+ | **Validation** | Recheck each file after fixing |
126
+ | **Parallel** | 5+ independent errorsparallel analysis with Task |
127
127
 
128
128
  </required>
129
129
 
@@ -131,22 +131,22 @@ Task({
131
131
 
132
132
  <workflow>
133
133
 
134
- 1. **검사**
134
+ 1. **Check**
135
135
  ```bash
136
136
  npx tsc --noEmit
137
137
  npx eslint .
138
138
  ```
139
139
 
140
- 2. **TodoWrite 생성**
141
- - 오류 목록 정리
140
+ 2. **Create TodoWrite**
141
+ - Organize error list
142
142
 
143
- 3. **순차 수정** ( 오류마다)
144
- - Sequential Thinking 3-5단계
145
- - 수정 적용
146
- - 해당 파일 재검사
147
- - TodoWrite 업데이트 (completed)
143
+ 3. **Sequential fix** (per error)
144
+ - Sequential Thinking 3-5 steps
145
+ - Apply fix
146
+ - Recheck file
147
+ - Update TodoWrite (completed)
148
148
 
149
- 4. **전체 재검사**
149
+ 4. **Full recheck**
150
150
 
151
151
  </workflow>
152
152
 
@@ -154,24 +154,24 @@ Task({
154
154
 
155
155
  <sequential_thinking>
156
156
 
157
- **각 오류마다 필수:**
157
+ **Required for each error:**
158
158
 
159
- | 단계 | 내용 |
160
- |------|------|
161
- | 1 | 오류 메시지 분석 이해 |
162
- | 2 | 관련 코드 컨텍스트 파악 |
163
- | 3 | 근본 원인 식별 |
164
- | 4 | 수정 방안 검토 (여러 옵션 고려) |
165
- | 5 | 최적 수정 방안 선택 적용 |
159
+ | Step | Content |
160
+ |------|---------|
161
+ | 1 | Analyze and understand error message |
162
+ | 2 | Identify relevant code context |
163
+ | 3 | Identify root cause |
164
+ | 4 | Review fix options (consider multiple) |
165
+ | 5 | Select and apply optimal fix |
166
166
 
167
- **파라미터:**
167
+ **Parameters:**
168
168
 
169
169
  ```typescript
170
170
  {
171
- thought: "현재 사고 내용",
171
+ thought: "Current thinking content",
172
172
  nextThoughtNeeded: true | false,
173
- thoughtNumber: 1, // 현재 단계
174
- totalThoughts: 5 // 예상 단계 (동적 조정 가능)
173
+ thoughtNumber: 1, // current step
174
+ totalThoughts: 5 // expected total steps (dynamic)
175
175
  }
176
176
  ```
177
177
 
@@ -181,28 +181,28 @@ Task({
181
181
 
182
182
  <parallel_strategy>
183
183
 
184
- **5 이상 오류 시:**
184
+ **With 5+ errors:**
185
185
 
186
186
  ```
187
- 1. 독립적 오류 그룹 식별
188
- 2. Task 도구로 병렬 분석 (단일 메시지에 다중 Task 호출)
189
- 3. 분석 결과 취합 순차 수정
187
+ 1. Identify independent error groups
188
+ 2. Parallel analysis with Task (multiple Task calls in single message)
189
+ 3. Combine results then sequential fix
190
190
  ```
191
191
 
192
- **규칙:**
192
+ **Rules:**
193
193
 
194
- | 규칙 | 설명 |
195
- |------|------|
196
- | 독립성 확인 | 같은 파일/연관 타입순차 처리 |
197
- | 분석만 병렬 | 수정 적용은 항상 순차 |
198
- | 결과 검증 | 충돌 Sequential Thinking으로 해결 |
194
+ | Rule | Description |
195
+ |------|-------------|
196
+ | Check independence | Same file/related typesequential |
197
+ | Parallel analysis only | Always sequential fix application |
198
+ | Validate results | Conflicts resolve with Sequential Thinking |
199
199
 
200
200
  **subagent_type:**
201
201
 
202
- | 유형 | 용도 |
203
- |------|------|
204
- | `Explore` | 오류 관련 코드 컨텍스트 탐색 |
205
- | `general-purpose` | 복잡한 타입 오류 심층 분석 |
202
+ | Type | Purpose |
203
+ |------|---------|
204
+ | `Explore` | Explore code context related to error |
205
+ | `general-purpose` | Deep analysis of complex type errors |
206
206
 
207
207
  </parallel_strategy>
208
208
 
@@ -210,29 +210,29 @@ Task({
210
210
 
211
211
  <commands>
212
212
 
213
- **검사:**
213
+ **Check:**
214
214
 
215
215
  ```bash
216
- # TypeScript (전체)
216
+ # TypeScript (all)
217
217
  npx tsc --noEmit
218
218
 
219
- # TypeScript (특정 파일)
219
+ # TypeScript (specific file)
220
220
  npx tsc --noEmit $ARGUMENTS
221
221
 
222
- # ESLint (전체)
222
+ # ESLint (all)
223
223
  npx eslint .
224
224
 
225
- # ESLint (특정 파일/디렉토리)
225
+ # ESLint (specific file/directory)
226
226
  npx eslint $ARGUMENTS
227
227
  ```
228
228
 
229
- **인수 처리:**
229
+ **Argument handling:**
230
230
 
231
- | 인수 | 동작 |
232
- |------|------|
233
- | 없음 | 전체 프로젝트 검사 |
234
- | 파일 경로 | 해당 파일만 |
235
- | 디렉토리 | 해당 디렉토리만 |
231
+ | Argument | Action |
232
+ |----------|--------|
233
+ | None | Check entire project |
234
+ | File path | Check that file only |
235
+ | Directory | Check that directory only |
236
236
 
237
237
  </commands>
238
238
 
@@ -240,46 +240,46 @@ npx eslint $ARGUMENTS
240
240
 
241
241
  <examples>
242
242
 
243
- **Example 1: Sequential Thinking 워크플로우**
243
+ **Example 1: Sequential Thinking workflow**
244
244
 
245
245
  ```
246
- 1. npx tsc --noEmit 실행
246
+ 1. Run npx tsc --noEmit
247
247
  → TS2322: Type 'string' is not assignable to type 'number'
248
248
 
249
- 2. Sequential Thinking 시작:
250
- thought 1: "TS2322 오류. string number에 할당 시도"
251
- thought 2: "해당 파일의 변수 타입과 확인 필요"
252
- thought 3: "함수 반환 타입이 number인데 string 반환 "
253
- thought 4: "수정 옵션: 1) 반환값 수정 2) 타입 수정"
254
- thought 5: "반환값을 올바른 number 수정하는 것이 적절"
249
+ 2. Start Sequential Thinking:
250
+ thought 1: "TS2322 error. Assigning string to number"
251
+ thought 2: "Need to check variable type and value in file"
252
+ thought 3: "Function return type is number but returning string"
253
+ thought 4: "Fix options: 1) Fix return value 2) Change type"
254
+ thought 5: "Fixing return value to correct number is appropriate"
255
255
 
256
- 3. Edit으로 수정 적용
256
+ 3. Apply fix with Edit
257
257
 
258
- 4. npx tsc --noEmit $FILE 재검사 해결 확인
258
+ 4. Recheck with npx tsc --noEmit $FILE → confirm resolution
259
259
 
260
- 5. TodoWrite 업데이트 (completed) → 다음 오류
260
+ 5. Update TodoWrite (completed) → next error
261
261
  ```
262
262
 
263
- **Example 2: 병렬 처리 (5 이상 오류)**
263
+ **Example 2: Parallel processing (5+ errors)**
264
264
 
265
265
  ```
266
- 독립적 파일 3개의 오류 발견:
266
+ Found 3 independent file errors:
267
267
 
268
- Task 1: "src/utils/api.ts TS2322 분석 - 타입 불일치 원인과 수정 방안"
269
- Task 2: "src/components/Form.tsx의 ESLint no-unused-vars 분석"
270
- Task 3: "src/hooks/useAuth.ts TS2532 분석 - undefined 체크 위치"
268
+ Task 1: "Analyze TS2322 in src/utils/api.ts - type mismatch cause and fix"
269
+ Task 2: "Analyze ESLint no-unused-vars in src/components/Form.tsx"
270
+ Task 3: "Analyze TS2532 in src/hooks/useAuth.ts - undefined check location"
271
271
 
272
- → 3 Task 병렬 실행 (단일 메시지)
273
- 결과 취합 Sequential Thinking으로 수정 순서 결정
274
- 순차 수정 적용
272
+ Run 3 Tasks in parallel (single message)
273
+ Combine results then use Sequential Thinking to determine fix order
274
+ Apply sequential fixes
275
275
  ```
276
276
 
277
- **Example 3: 우선순위**
277
+ **Example 3: Priority**
278
278
 
279
- | 우선순위 | 유형 | 예시 |
280
- |----------|------|------|
281
- | 1 | 타입 오류 (컴파일 차단) | TS2322, TS2345 |
282
- | 2 | 린트 오류 (error 레벨) | no-unused-vars |
283
- | 3 | 린트 경고 (warning 레벨) | prefer-const |
279
+ | Priority | Type | Example |
280
+ |----------|------|---------|
281
+ | 1 | Type errors (blocks compile) | TS2322, TS2345 |
282
+ | 2 | Lint errors (error level) | no-unused-vars |
283
+ | 3 | Lint warnings (warning level) | prefer-const |
284
284
 
285
285
  </examples>