@yeongjaeyou/claude-code-config 0.3.0 → 0.4.0
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.
- package/.mcp.json +35 -0
- package/README.md +45 -0
- package/package.json +2 -1
package/.mcp.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"mcpdocs": {
|
|
4
|
+
"type": "stdio",
|
|
5
|
+
"command": "npx",
|
|
6
|
+
"args": [
|
|
7
|
+
"@hapus/mcp-cache",
|
|
8
|
+
"uvx",
|
|
9
|
+
"--from",
|
|
10
|
+
"mcpdoc",
|
|
11
|
+
"mcpdoc",
|
|
12
|
+
"--urls",
|
|
13
|
+
"ClaudeCode:https://code.claude.com/docs/llms.txt",
|
|
14
|
+
"Cursor:https://docs.cursor.com/llms.txt",
|
|
15
|
+
"--allowed-domains",
|
|
16
|
+
"*"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"deepwiki": {
|
|
20
|
+
"type": "http",
|
|
21
|
+
"url": "https://mcp.deepwiki.com/mcp"
|
|
22
|
+
},
|
|
23
|
+
"serena": {
|
|
24
|
+
"type": "stdio",
|
|
25
|
+
"command": "uvx",
|
|
26
|
+
"args": [
|
|
27
|
+
"--from",
|
|
28
|
+
"git+https://github.com/oraios/serena",
|
|
29
|
+
"serena-mcp-server",
|
|
30
|
+
"--enable-web-dashboard",
|
|
31
|
+
"false"
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/README.md
CHANGED
|
@@ -7,7 +7,9 @@ Claude Code CLI를 위한 커스텀 슬래시 커맨드, 에이전트, 스킬
|
|
|
7
7
|
```
|
|
8
8
|
.claude/
|
|
9
9
|
├── commands/ # 슬래시 커맨드
|
|
10
|
+
│ ├── ask-codex.md # Codex MCP로 코드 검토 요청
|
|
10
11
|
│ ├── ask-deepwiki.md # DeepWiki로 GitHub 리포 심층 질의
|
|
12
|
+
│ ├── ask-gemini.md # Gemini CLI로 코드 검토 요청
|
|
11
13
|
│ ├── code-review.md # CodeRabbit 등 외부 리뷰 처리
|
|
12
14
|
│ ├── commit-and-push.md # Git 커밋 및 푸시 자동화
|
|
13
15
|
│ ├── edit-notebook.md # Jupyter Notebook 안전 편집
|
|
@@ -15,11 +17,14 @@ Claude Code CLI를 위한 커스텀 슬래시 커맨드, 에이전트, 스킬
|
|
|
15
17
|
│ ├── gh/
|
|
16
18
|
│ │ ├── create-issue-label.md # GitHub 이슈 라벨 생성
|
|
17
19
|
│ │ ├── decompose-issue.md # 큰 작업을 이슈로 분해
|
|
20
|
+
│ │ ├── init-project.md # GitHub Project 보드 초기화
|
|
18
21
|
│ │ ├── post-merge.md # PR 머지 후 정리 작업
|
|
19
22
|
│ │ └── resolve-issue.md # GitHub 이슈 해결 워크플로우
|
|
20
23
|
│ └── tm/
|
|
24
|
+
│ ├── convert-prd.md # PRD 초안을 TaskMaster 형식으로 변환
|
|
21
25
|
│ ├── post-merge.md # TaskMaster 연동 PR 머지 후 정리
|
|
22
26
|
│ ├── resolve-issue.md # TaskMaster 기반 이슈 해결
|
|
27
|
+
│ ├── review-prd-with-codex.md # PRD를 Codex로 검토
|
|
23
28
|
│ └── sync-to-github.md # TaskMaster -> GitHub 동기화
|
|
24
29
|
├── agents/ # 커스텀 에이전트
|
|
25
30
|
│ ├── web-researcher.md # 다중 플랫폼 웹 리서치
|
|
@@ -48,6 +53,8 @@ Claude Code CLI를 위한 커스텀 슬래시 커맨드, 에이전트, 스킬
|
|
|
48
53
|
| `/code-review` | CodeRabbit 등 외부 코드 리뷰 결과를 분석하고 자동 수정 적용 |
|
|
49
54
|
| `/edit-notebook` | Jupyter Notebook 파일을 NotebookEdit 도구로 안전하게 편집 |
|
|
50
55
|
| `/ask-deepwiki` | DeepWiki MCP를 활용하여 GitHub 리포지토리에 심층 질의 |
|
|
56
|
+
| `/ask-codex` | Codex MCP로 현재 작업 코드 검토 요청 (Claude cross-check 포함) |
|
|
57
|
+
| `/ask-gemini` | Gemini CLI로 현재 작업 코드 검토 요청 (Claude cross-check 포함) |
|
|
51
58
|
|
|
52
59
|
### GitHub 워크플로우 커맨드 (`/gh/`)
|
|
53
60
|
|
|
@@ -55,6 +62,7 @@ Claude Code CLI를 위한 커스텀 슬래시 커맨드, 에이전트, 스킬
|
|
|
55
62
|
|--------|------|
|
|
56
63
|
| `/gh/create-issue-label` | 프로젝트 구조 분석 후 적절한 GitHub 이슈 라벨 생성 |
|
|
57
64
|
| `/gh/decompose-issue` | 큰 작업을 관리 가능한 독립적인 이슈들로 분해 |
|
|
65
|
+
| `/gh/init-project` | GitHub Project 보드 초기화 및 설정 |
|
|
58
66
|
| `/gh/post-merge` | PR 머지 후 브랜치 정리 및 CLAUDE.md 업데이트 |
|
|
59
67
|
| `/gh/resolve-issue` | GitHub 이슈 번호를 받아 체계적으로 분석하고 해결 |
|
|
60
68
|
|
|
@@ -62,8 +70,10 @@ Claude Code CLI를 위한 커스텀 슬래시 커맨드, 에이전트, 스킬
|
|
|
62
70
|
|
|
63
71
|
| 커맨드 | 설명 |
|
|
64
72
|
|--------|------|
|
|
73
|
+
| `/tm/convert-prd` | PRD 초안을 TaskMaster PRD 형식으로 변환 |
|
|
65
74
|
| `/tm/sync-to-github` | TaskMaster tasks.json을 GitHub Issue/Milestone으로 동기화 |
|
|
66
75
|
| `/tm/resolve-issue` | GitHub Issue를 TaskMaster subtask 단위로 체계적 해결 |
|
|
76
|
+
| `/tm/review-prd-with-codex` | PRD를 Codex MCP로 검토하고 Claude가 cross-check |
|
|
67
77
|
| `/tm/post-merge` | PR 머지 후 TaskMaster 상태 업데이트 및 브랜치 정리 |
|
|
68
78
|
|
|
69
79
|
## 에이전트
|
|
@@ -123,6 +133,41 @@ npx @yeongjaeyou/claude-code-config [옵션]
|
|
|
123
133
|
-v, --version 버전 출력
|
|
124
134
|
```
|
|
125
135
|
|
|
136
|
+
## MCP 서버 설정
|
|
137
|
+
|
|
138
|
+
패키지에 포함된 `.mcp.json`을 프로젝트 루트에 복사하여 사용할 수 있습니다.
|
|
139
|
+
|
|
140
|
+
### 전제조건
|
|
141
|
+
|
|
142
|
+
- **Node.js**: npx 명령어 사용
|
|
143
|
+
- **Python uv**: [uv 설치](https://docs.astral.sh/uv/getting-started/installation/)
|
|
144
|
+
```bash
|
|
145
|
+
# macOS/Linux
|
|
146
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
147
|
+
|
|
148
|
+
# Windows
|
|
149
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### 포함된 MCP 서버
|
|
153
|
+
|
|
154
|
+
| 서버 | 설명 | API 키 |
|
|
155
|
+
|------|------|--------|
|
|
156
|
+
| mcpdocs | Claude Code, Cursor 문서 검색 (mcp-cache 래퍼) | 불필요 |
|
|
157
|
+
| deepwiki | GitHub 리포지토리 문서화 질의 | 불필요 |
|
|
158
|
+
| serena | LSP 기반 코드 분석 도구 | 불필요 |
|
|
159
|
+
|
|
160
|
+
### 사용 방법
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# .mcp.json 복사
|
|
164
|
+
cp node_modules/@yeongjaeyou/claude-code-config/.mcp.json .
|
|
165
|
+
|
|
166
|
+
# 또는 기존 .mcp.json이 있는 경우 내용 병합
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
> **참고**: 자체 `.mcp.json`이 있는 경우 `mcpServers` 객체를 수동으로 병합하세요.
|
|
170
|
+
|
|
126
171
|
## 사용법
|
|
127
172
|
|
|
128
173
|
### 실행 예시
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yeongjaeyou/claude-code-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Claude Code CLI custom commands, agents, and skills",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-code-config": "./bin/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
".claude",
|
|
10
|
+
".mcp.json",
|
|
10
11
|
"bin"
|
|
11
12
|
],
|
|
12
13
|
"keywords": [
|