@yeongjaeyou/claude-code-config 0.4.0 → 0.5.1

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 (38) hide show
  1. package/.claude/commands/ask-codex.md +131 -345
  2. package/.claude/commands/ask-deepwiki.md +15 -15
  3. package/.claude/commands/ask-gemini.md +134 -352
  4. package/.claude/commands/code-review.md +41 -40
  5. package/.claude/commands/commit-and-push.md +35 -36
  6. package/.claude/commands/council.md +318 -0
  7. package/.claude/commands/edit-notebook.md +34 -33
  8. package/.claude/commands/gh/create-issue-label.md +19 -17
  9. package/.claude/commands/gh/decompose-issue.md +66 -65
  10. package/.claude/commands/gh/init-project.md +46 -52
  11. package/.claude/commands/gh/post-merge.md +74 -79
  12. package/.claude/commands/gh/resolve-issue.md +38 -46
  13. package/.claude/commands/plan.md +15 -14
  14. package/.claude/commands/tm/convert-prd.md +53 -53
  15. package/.claude/commands/tm/post-merge.md +92 -112
  16. package/.claude/commands/tm/resolve-issue.md +148 -154
  17. package/.claude/commands/tm/review-prd-with-codex.md +272 -279
  18. package/.claude/commands/tm/sync-to-github.md +189 -212
  19. package/.claude/guidelines/cv-guidelines.md +30 -0
  20. package/.claude/guidelines/id-reference.md +34 -0
  21. package/.claude/guidelines/work-guidelines.md +17 -0
  22. package/.claude/skills/notion-md-uploader/SKILL.md +252 -0
  23. package/.claude/skills/notion-md-uploader/references/notion_block_types.md +323 -0
  24. package/.claude/skills/notion-md-uploader/references/setup_guide.md +156 -0
  25. package/.claude/skills/notion-md-uploader/scripts/__pycache__/markdown_parser.cpython-311.pyc +0 -0
  26. package/.claude/skills/notion-md-uploader/scripts/__pycache__/notion_client.cpython-311.pyc +0 -0
  27. package/.claude/skills/notion-md-uploader/scripts/__pycache__/notion_converter.cpython-311.pyc +0 -0
  28. package/.claude/skills/notion-md-uploader/scripts/markdown_parser.py +607 -0
  29. package/.claude/skills/notion-md-uploader/scripts/notion_client.py +337 -0
  30. package/.claude/skills/notion-md-uploader/scripts/notion_converter.py +477 -0
  31. package/.claude/skills/notion-md-uploader/scripts/upload_md.py +298 -0
  32. package/.claude/skills/skill-creator/LICENSE.txt +202 -0
  33. package/.claude/skills/skill-creator/SKILL.md +209 -0
  34. package/.claude/skills/skill-creator/scripts/init_skill.py +303 -0
  35. package/.claude/skills/skill-creator/scripts/package_skill.py +110 -0
  36. package/.claude/skills/skill-creator/scripts/quick_validate.py +65 -0
  37. package/README.md +159 -129
  38. package/package.json +1 -1
@@ -1,307 +1,301 @@
1
- # TaskMaster 기반 GitHub Issue 해결하기
1
+ # Resolve GitHub Issue with TaskMaster
2
2
 
3
- GitHub Issue를 TaskMaster subtask 단위로 체계적으로 해결하고 PR을 생성합니다.
3
+ Systematically resolve GitHub Issues by TaskMaster subtask units and create PR.
4
4
 
5
- **중요**: 커맨드는 TaskMaster GitHub Issue를 연동합니다.
6
- - **GitHub Issue 번호**: `#1`, `#2` 형태 (GitHub에서 생성된 번호)
7
- - **TaskMaster Task ID**: `task 1`, `task 1.1` 형태 (tasks.json 기준)
5
+ **Important**: This command integrates TaskMaster with GitHub Issues.
6
+ - **GitHub Issue number**: `#1`, `#2` format (numbers created by GitHub)
7
+ - **TaskMaster Task ID**: `task 1`, `task 1.1` format (based on tasks.json)
8
8
 
9
- `@CLAUDE.md`의 프로젝트 지침을 준수할 것.
9
+ Follow project guidelines in `@CLAUDE.md`.
10
10
 
11
11
  ---
12
12
 
13
- ## 아규먼트
13
+ ## Arguments
14
14
 
15
- `$ARGUMENTS`로 다음 하나를 받습니다:
16
- - GitHub Issue 번호 (예: `1`, `#1`)
17
- - TaskMaster Task ID (예: `task 1`, `task:1`)
15
+ `$ARGUMENTS` accepts one of the following:
16
+ - GitHub Issue number (e.g., `1`, `#1`)
17
+ - TaskMaster Task ID (e.g., `task 1`, `task:1`)
18
18
 
19
19
  ---
20
20
 
21
- ## 작업 순서
21
+ ## Workflow
22
22
 
23
- ### 1. 아규먼트 파싱 ID 매핑
23
+ ### 1. Parse Arguments and Map IDs
24
24
 
25
25
  ```
26
- 입력값 분석:
27
- - "#1" 또는 "1" GitHub Issue 번호로 해석
28
- - "task 1" 또는 "task:1" TaskMaster Task ID로 해석
26
+ Input analysis:
27
+ - "#1" or "1" -> Interpret as GitHub Issue number
28
+ - "task 1" or "task:1" -> Interpret as TaskMaster Task ID
29
29
  ```
30
30
 
31
- **GitHub Issue 번호인 경우:**
31
+ **If GitHub Issue number:**
32
32
 
33
33
  ```bash
34
- # 1단계: Issue 정보 가져오기
34
+ # Step 1: Get Issue information
35
35
  gh issue view $ISSUE_NUMBER --json number,title,body,state
36
36
 
37
- # 2단계: 본문에서 TaskMaster Task ID 추출
37
+ # Step 2: Extract TaskMaster Task ID from body
38
38
  BODY=$(gh issue view $ISSUE_NUMBER --json body --jq '.body')
39
- echo "$BODY" | grep -oP "Task Master 참조: task \K[0-9]+"
39
+ echo "$BODY" | grep -oP "Task Master reference: task \K[0-9]+"
40
40
 
41
- # 예상 출력: 1 (숫자만)
41
+ # Expected output: 1 (number only)
42
42
  ```
43
43
 
44
- **추출 실패 (Task Master 참조가 없는 경우):**
44
+ **If extraction fails (no Task Master reference):**
45
45
  ```
46
- Issue sync-to-github로 생성된 게 아닐 수 있음
47
- 사용자에게 TaskMaster Task ID 직접 입력 요청
48
- AskUserQuestion: " Issue에 해당하는 TaskMaster Task ID 무엇인가요?"
46
+ -> Issue may not have been created by sync-to-github
47
+ -> Request direct TaskMaster Task ID input from user
48
+ -> AskUserQuestion: "What is the TaskMaster Task ID for this Issue?"
49
49
  ```
50
50
 
51
- **TaskMaster Task ID인 경우:**
51
+ **If TaskMaster Task ID:**
52
52
  ```bash
53
- # tasks.json에서 해당 태스크 확인
53
+ # Verify task in tasks.json
54
54
  task-master show $TASK_ID
55
55
 
56
- # 해당하는 GitHub Issue 찾기 (역방향 매핑)
57
- gh issue list --search "in:body \"Task Master 참조: task $TASK_ID\"" --json number,title
56
+ # Find corresponding GitHub Issue (reverse mapping)
57
+ gh issue list --search "in:body \"Task Master reference: task $TASK_ID\"" --json number,title
58
58
  ```
59
59
 
60
- **GitHub Issue 찾지 못한 경우 (중요):**
60
+ **If GitHub Issue not found (Important):**
61
61
  ```
62
- sync-to-github 실행되지 않은 상태일 있음
63
- 절대로 임의로 GitHub Issue 새로 생성하지 말 것
64
- AskUserQuestion으로 사용자에게 확인:
65
- 1. "sync-to-github 먼저 실행할까요?" (Issue 동기화 진행)
66
- 2. "Issue 없이 브랜치만 생성하고 진행할까요?" (task-N 브랜치 사용)
67
- 3. "작업을 중단할까요?"
68
- 사용자 선택에 따라 진행
62
+ -> sync-to-github may not have been executed
63
+ -> NEVER create a new GitHub Issue arbitrarily
64
+ -> Confirm with user via AskUserQuestion:
65
+ 1. "Run sync-to-github first?" (proceed after Issue sync)
66
+ 2. "Create branch only without Issue?" (use task-N branch)
67
+ 3. "Abort?"
68
+ -> Proceed based on user selection
69
69
  ```
70
70
 
71
- ### 2. 태스크 정보 확인
71
+ ### 2. Verify Task Information
72
72
 
73
73
  ```bash
74
- # TaskMaster에서 태스크 상세 정보 확인
74
+ # Check task details in TaskMaster
75
75
  task-master show $TASK_ID
76
76
 
77
- # 출력 예시:
78
- # Task 1: Next.js 15 프로젝트 초기 설정
77
+ # Example output:
78
+ # Task 1: Next.js 15 project initial setup
79
79
  # Status: pending
80
80
  # Dependencies: none
81
81
  # Subtasks: (none)
82
82
  ```
83
83
 
84
- **확인 사항:**
85
- - [ ] 태스크 상태가 `pending` 또는 `in-progress`인지
86
- - [ ] 의존성 태스크가 모두 완료되었는지 (`task-master show`로 dependencies 확인)
84
+ **Verification checklist:**
85
+ - [ ] Task status is `pending` or `in-progress`
86
+ - [ ] All dependency tasks are complete (check dependencies via `task-master show`)
87
87
 
88
- ### 3. Subtask 확장 (필요시)
88
+ ### 3. Expand Subtasks (If Needed)
89
89
 
90
90
  ```bash
91
- # subtask가 없는 경우에만 실행
91
+ # Execute only if no subtasks exist
92
92
  task-master expand --id=$TASK_ID --research
93
93
  ```
94
94
 
95
- **확장 확인:**
95
+ **After expansion verification:**
96
96
  ```bash
97
97
  task-master show $TASK_ID
98
98
  # Subtasks:
99
- # - 1.1: 프로젝트 생성 (pending)
100
- # - 1.2: Shadcn/ui 초기화 (pending)
101
- # - 1.3: 의존성 설치 (pending)
99
+ # - 1.1: Create project (pending)
100
+ # - 1.2: Initialize Shadcn/ui (pending)
101
+ # - 1.3: Install dependencies (pending)
102
102
  # ...
103
103
  ```
104
104
 
105
- ### 4. 브랜치 생성
105
+ ### 4. Create Branch
106
106
 
107
107
  ```bash
108
- # main 또는 master에서 브랜치 생성
108
+ # Create new branch from main or master
109
109
  git checkout main && git pull origin main
110
110
  git checkout -b issue-$ISSUE_NUMBER
111
111
  ```
112
112
 
113
- **브랜치 명명 규칙:**
114
- - `issue-1` (GitHub Issue #1 작업용)
115
- - `issue-1-subtask-1.2` (특정 subtask 작업 시, 선택사항)
113
+ **Branch naming convention:**
114
+ - `issue-1` (for GitHub Issue #1 work)
115
+ - `issue-1-subtask-1.2` (for specific subtask only, optional)
116
116
 
117
- ### 5. Subtask 순차 처리
117
+ ### 5. Process Subtasks Sequentially
118
118
 
119
- **처리 순서 결정:**
119
+ **Determine processing order:**
120
120
  ```bash
121
- # subtask 목록과 의존성 확인
121
+ # Check subtask list and dependencies
122
122
  task-master show $TASK_ID
123
123
  ```
124
124
 
125
- **각 subtask별 처리 루프:**
125
+ **Processing loop for each subtask:**
126
126
 
127
127
  ```
128
- [Subtask 1.1 시작]
128
+ [Start Subtask 1.1]
129
129
  1. task-master set-status --id=1.1 --status=in-progress
130
- 2. subtask 내용에 따라 코드 구현
131
- 3. 구현 완료 검증 (빌드, 린트, 테스트)
130
+ 2. Implement code according to subtask content
131
+ 3. Verify after implementation (build, lint, test)
132
132
  4. task-master set-status --id=1.1 --status=done
133
- 5. task-master update-subtask --id=1.1 --prompt="구현 완료: [간단한 설명]"
133
+ 5. task-master update-subtask --id=1.1 --prompt="Implementation complete: [brief description]"
134
134
 
135
- [Subtask 1.2 시작]
136
- ... 반복 ...
135
+ [Start Subtask 1.2]
136
+ ... repeat ...
137
137
  ```
138
138
 
139
- **중요 원칙:**
140
- - 번에 하나의 subtask `in-progress`
141
- - 의존성이 있는 subtask는 선행 subtask 완료 처리
142
- - subtask 완료 즉시 상태 업데이트
139
+ **Key principles:**
140
+ - Only one subtask `in-progress` at a time
141
+ - Process subtasks with dependencies after preceding subtasks complete
142
+ - Update status immediately upon each subtask completion
143
143
 
144
- ### 6. 메인 태스크 완료 처리
144
+ ### 6. Complete Main Task
145
145
 
146
- 모든 subtask가 `done` 상태가 되면:
146
+ When all subtasks are `done`:
147
147
 
148
148
  ```bash
149
- # 메인 태스크 완료
149
+ # Complete main task
150
150
  task-master set-status --id=$TASK_ID --status=done
151
151
 
152
- # 최종 확인
152
+ # Final verification
153
153
  task-master show $TASK_ID
154
154
  ```
155
155
 
156
- ### 7. 커밋 푸시
156
+ ### 7. Commit and Push
157
157
 
158
158
  ```bash
159
- # 변경사항 확인
159
+ # Review changes
160
160
  git status
161
161
  git diff
162
162
 
163
- # 커밋 (태스크 정보 포함)
163
+ # Commit (include task info)
164
164
  git add .
165
- git commit -m "feat: [Task $TASK_ID] 태스크 제목
165
+ git commit -m "feat: [Task $TASK_ID] Task title
166
166
 
167
- - subtask 1.1: 완료 내용
168
- - subtask 1.2: 완료 내용
167
+ - subtask 1.1: completion details
168
+ - subtask 1.2: completion details
169
169
  ...
170
170
 
171
- Task Master 참조: task $TASK_ID
171
+ Task Master reference: task $TASK_ID
172
172
  Closes #$ISSUE_NUMBER"
173
173
 
174
- # 푸시
174
+ # Push
175
175
  git push -u origin issue-$ISSUE_NUMBER
176
176
  ```
177
177
 
178
- ### 8. PR 생성
178
+ ### 8. Create PR
179
179
 
180
180
  ```bash
181
181
  gh pr create \
182
- --title "[Task $TASK_ID] 태스크 제목" \
182
+ --title "[Task $TASK_ID] Task title" \
183
183
  --body "$(cat <<'EOF'
184
- ## 개요
185
- GitHub Issue #$ISSUE_NUMBER 해결
184
+ ## Overview
185
+ Resolves GitHub Issue #$ISSUE_NUMBER
186
186
 
187
- ## TaskMaster 태스크 정보
187
+ ## TaskMaster Task Info
188
188
  - **Task ID**: $TASK_ID
189
- - **Task 제목**: [태스크 제목]
189
+ - **Task Title**: [task title]
190
190
 
191
- ## 완료된 Subtask
192
- - [x] subtask 1.1: [설명]
193
- - [x] subtask 1.2: [설명]
194
- - [x] subtask 1.3: [설명]
191
+ ## Completed Subtasks
192
+ - [x] subtask 1.1: [description]
193
+ - [x] subtask 1.2: [description]
194
+ - [x] subtask 1.3: [description]
195
195
 
196
- ## 변경 사항
197
- - [주요 변경 내용 요약]
196
+ ## Changes
197
+ - [summary of major changes]
198
198
 
199
- ## 테스트
200
- - [ ] 빌드 성공
201
- - [ ] 린트 통과
202
- - [ ] 기능 테스트 완료
199
+ ## Testing
200
+ - [ ] Build successful
201
+ - [ ] Lint passed
202
+ - [ ] Feature testing complete
203
203
 
204
- ## 관련 이슈
204
+ ## Related Issues
205
205
  Closes #$ISSUE_NUMBER
206
206
 
207
207
  ---
208
- Task Master 참조: task $TASK_ID
208
+ Task Master reference: task $TASK_ID
209
209
  EOF
210
210
  )"
211
211
  ```
212
212
 
213
- ### 9. GitHub Issue 업데이트
213
+ ### 9. Update GitHub Issue
214
214
 
215
215
  ```bash
216
- # Issue에 진행 상황 코멘트 추가
217
- gh issue comment $ISSUE_NUMBER --body "PR #[PR번호] 생성 완료. 코드리뷰 요청드립니다.
216
+ # Add progress comment to Issue
217
+ gh issue comment $ISSUE_NUMBER --body "PR #[PR_NUMBER] created. Requesting code review.
218
218
 
219
- **완료된 작업:**
219
+ **Completed work:**
220
220
  $(task-master show $TASK_ID | grep -A 100 'Subtasks:')"
221
221
  ```
222
222
 
223
223
  ---
224
224
 
225
- ## ID 매핑 참조표
225
+ ## ID Mapping Reference
226
226
 
227
- | 구분 | 형식 | 예시 | 설명 |
228
- |------|------|------|------|
229
- | GitHub Issue | `#N` | `#1`, `#12` | GitHub에서 자동 부여 |
230
- | TaskMaster 메인 태스크 | `task N` | `task 1`, `task 12` | tasks.json id 필드 |
231
- | TaskMaster Subtask | `task N.M` | `task 1.1`, `task 1.2` | 메인태스크.서브태스크 |
227
+ | Type | Format | Example | Description |
228
+ |------|--------|---------|-------------|
229
+ | GitHub Issue | `#N` | `#1`, `#12` | Auto-assigned by GitHub |
230
+ | TaskMaster Main Task | `task N` | `task 1`, `task 12` | id field in tasks.json |
231
+ | TaskMaster Subtask | `task N.M` | `task 1.1`, `task 1.2` | maintask.subtask |
232
232
 
233
- **매핑 규칙:**
234
- - `sync-to-github` 실행 Issue 본문에 `Task Master 참조: task N` 포함됨
235
- - 이를 통해 GitHub Issue TaskMaster Task 연결
233
+ **Mapping rule:**
234
+ - When `sync-to-github` runs, Issue body includes `Task Master reference: task N`
235
+ - This links GitHub Issue <-> TaskMaster Task
236
236
 
237
237
  ---
238
238
 
239
- ## 작업 지침
239
+ ## Work Guidelines
240
240
 
241
- - 불명확한 요구사항이나 구현 방향이 여러 가지일 경우 AskUserQuestion 도구로 사용자에게 확인
242
- - 한글로 답할 것, 주석 및 마크다운도 한글로 작성할 것
243
- - 코드나 문서 작성 시 이모지 사용 금지
244
- - PR 설명은 한글로 작성
245
- - 컴포넌트가 데모 페이지에 추가되는 경우, Playwright MCP를 사용해 해당 컴포넌트를 E2E 테스트로 검증
246
- - 일회성 테스트 스크립트나 임시 헬퍼 파일은 작업 완료 후 반드시 삭제
247
- - 커밋, PR, 이슈에 'Generated with Claude', 'Co-Authored-By: Claude' 등 Claude attribution 금지
241
+ > See [Work Guidelines](../guidelines/work-guidelines.md)
248
242
 
249
243
  ---
250
244
 
251
- ## 검증 완료 기준
245
+ ## Verification and Completion Criteria
252
246
 
253
- **중요**: 체크박스를 완료로 표시하기 전에 반드시 실제 동작을 확인해야 합니다.
247
+ **Important**: You must verify actual behavior before marking checkboxes as complete.
254
248
 
255
- ### 검증 원칙
256
- 1. **실제 실행 필수**: 코드/설정이 실제로 동작하는지 직접 실행하여 확인
257
- 2. **증거 제시**: 완료를 증명할 있는 실제 출력이나 결과를 보여줄 것
258
- 3. **추측 금지**: 확인하지 않은 것은 "미확인" 또는 "추정됨"으로 명시
259
- 4. **부분 완료 구분**: 코드는 작성했지만 테스트하지 않은 경우 명확히 구분
249
+ ### Verification Principles
250
+ 1. **Actual execution required**: Directly run to confirm code/config actually works
251
+ 2. **Provide evidence**: Show actual output or results that prove completion
252
+ 3. **No guessing**: Clearly state "unverified" or "assumed" for unconfirmed items
253
+ 4. **Distinguish partial completion**: Clearly differentiate code written but not tested
260
254
 
261
- ### 금지 사항
262
- - 실행하지 않고 "동작할 것으로 예상됩니다"라고 보고
263
- - 로그를 보지 않고 "로그에 나타날 것입니다"라고 단언
264
- - 추측을 사실처럼 보고
255
+ ### Prohibited
256
+ - Reporting "expected to work" without execution
257
+ - Asserting "will appear in logs" without checking logs
258
+ - Reporting assumptions as facts
265
259
 
266
260
  ---
267
261
 
268
- ## 주의사항
262
+ ## Cautions
269
263
 
270
- 1. **ID 혼동 주의**
271
- - GitHub Issue `#1`과 TaskMaster `task 1`은 다를 수 있음
272
- - 항상 Issue 본문의 "Task Master 참조" 확인
264
+ 1. **Avoid ID confusion**
265
+ - GitHub Issue `#1` and TaskMaster `task 1` may differ
266
+ - Always verify "Task Master reference" in Issue body
273
267
 
274
- 2. **subtask 순서 준수**
275
- - 의존성이 있는 subtask는 반드시 순서대로 처리
276
- - `task-master show`로 dependencies 확인
268
+ 2. **Follow subtask order**
269
+ - Process subtasks with dependencies in order
270
+ - Check dependencies via `task-master show`
277
271
 
278
- 3. **상태 업데이트 즉시 수행**
279
- - subtask 완료 즉시 `set-status --status=done`
280
- - 진행 상황이 tasks.json 실시간 반영되어야 함
272
+ 3. **Update status immediately**
273
+ - Run `set-status --status=done` immediately upon subtask completion
274
+ - Progress should be reflected in tasks.json in real-time
281
275
 
282
- 4. **커밋 메시지에 참조 포함**
283
- - `Task Master 참조: task N` 포함
284
- - `Closes #N` 또는 `Fixes #N` 포함
276
+ 4. **Include references in commit messages**
277
+ - Include `Task Master reference: task N`
278
+ - Include `Closes #N` or `Fixes #N`
285
279
 
286
280
  ---
287
281
 
288
- ## 에러 처리
282
+ ## Error Handling
289
283
 
290
- **의존성 미완료:**
284
+ **Dependency not complete:**
291
285
  ```
292
- Error: Task 1 의존성 task 0 완료되지 않았습니다.
293
- 선행 태스크 먼저 완료 필요
286
+ Error: Task 1's dependency task 0 is not complete.
287
+ -> Complete prerequisite task first
294
288
  ```
295
289
 
296
- **subtask expand 실패:**
290
+ **Subtask expand failed:**
297
291
  ```
298
- Error: expand 실패
299
- task-master expand --id=$TASK_ID --force 시도
292
+ Error: expand failed
293
+ -> Try task-master expand --id=$TASK_ID --force
300
294
  ```
301
295
 
302
- **빌드/테스트 실패:**
296
+ **Build/test failed:**
303
297
  ```
304
- 해당 subtask in-progress로 유지
305
- 문제 해결 다시 진행
306
- task-master update-subtask --id=N.M --prompt="이슈: [설명]"
298
+ -> Keep that subtask as in-progress
299
+ -> Resolve issue and continue
300
+ -> task-master update-subtask --id=N.M --prompt="Issue: [description]"
307
301
  ```