@yeongjaeyou/claude-code-config 0.5.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.
- package/README.md +159 -129
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,146 +1,170 @@
|
|
|
1
1
|
# Claude Code Config
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A collection of custom slash commands, agents, and skills for Claude Code CLI.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Structure
|
|
6
6
|
|
|
7
7
|
```
|
|
8
8
|
.claude/
|
|
9
|
-
├── commands/ #
|
|
10
|
-
│ ├── ask-codex.md #
|
|
11
|
-
│ ├── ask-deepwiki.md #
|
|
12
|
-
│ ├── ask-gemini.md #
|
|
13
|
-
│ ├── code-review.md #
|
|
14
|
-
│ ├── commit-and-push.md # Git
|
|
15
|
-
│ ├──
|
|
16
|
-
│ ├──
|
|
9
|
+
├── commands/ # Slash commands
|
|
10
|
+
│ ├── ask-codex.md # Request code review via Codex MCP
|
|
11
|
+
│ ├── ask-deepwiki.md # Deep query GitHub repos via DeepWiki
|
|
12
|
+
│ ├── ask-gemini.md # Request code review via Gemini CLI
|
|
13
|
+
│ ├── code-review.md # Process external code reviews (CodeRabbit, etc.)
|
|
14
|
+
│ ├── commit-and-push.md # Automate Git commit and push
|
|
15
|
+
│ ├── council.md # Consult multiple AI models (LLM Council)
|
|
16
|
+
│ ├── edit-notebook.md # Safely edit Jupyter Notebooks
|
|
17
|
+
│ ├── plan.md # Create implementation plan (before coding)
|
|
17
18
|
│ ├── gh/
|
|
18
|
-
│ │ ├── create-issue-label.md # GitHub
|
|
19
|
-
│ │ ├── decompose-issue.md #
|
|
20
|
-
│ │ ├── init-project.md # GitHub Project
|
|
21
|
-
│ │ ├── post-merge.md #
|
|
22
|
-
│ │ └── resolve-issue.md # GitHub
|
|
19
|
+
│ │ ├── create-issue-label.md # Create GitHub issue labels
|
|
20
|
+
│ │ ├── decompose-issue.md # Decompose large work into issues
|
|
21
|
+
│ │ ├── init-project.md # Initialize GitHub Project board
|
|
22
|
+
│ │ ├── post-merge.md # Post-merge cleanup
|
|
23
|
+
│ │ └── resolve-issue.md # GitHub issue resolution workflow
|
|
23
24
|
│ └── tm/
|
|
24
|
-
│ ├── convert-prd.md # PRD
|
|
25
|
-
│ ├── post-merge.md # TaskMaster
|
|
26
|
-
│ ├── resolve-issue.md # TaskMaster
|
|
27
|
-
│ ├── review-prd-with-codex.md # PRD
|
|
28
|
-
│ └── sync-to-github.md # TaskMaster -> GitHub
|
|
29
|
-
├──
|
|
30
|
-
│ ├──
|
|
31
|
-
│
|
|
32
|
-
|
|
33
|
-
│
|
|
34
|
-
|
|
35
|
-
|
|
25
|
+
│ ├── convert-prd.md # Convert PRD draft to TaskMaster format
|
|
26
|
+
│ ├── post-merge.md # TaskMaster-integrated post-merge cleanup
|
|
27
|
+
│ ├── resolve-issue.md # TaskMaster-based issue resolution
|
|
28
|
+
│ ├── review-prd-with-codex.md # Review PRD with Codex
|
|
29
|
+
│ └── sync-to-github.md # Sync TaskMaster -> GitHub
|
|
30
|
+
├── guidelines/ # Shared guidelines
|
|
31
|
+
│ ├── work-guidelines.md # Common work guidelines
|
|
32
|
+
│ └── id-reference.md # GitHub/TaskMaster ID reference
|
|
33
|
+
├── agents/ # Custom agents
|
|
34
|
+
│ ├── web-researcher.md # Multi-platform web research
|
|
35
|
+
│ ├── python-pro.md # Python expert
|
|
36
|
+
│ ├── generate-llmstxt.md # Generate llms.txt
|
|
37
|
+
│ └── langconnect-rag-expert.md # RAG-based document search
|
|
38
|
+
└── skills/ # Skills (reusable tool collections)
|
|
39
|
+
├── code-explorer/ # GitHub/HuggingFace code exploration
|
|
40
|
+
│ ├── SKILL.md
|
|
41
|
+
│ ├── scripts/
|
|
42
|
+
│ └── references/
|
|
43
|
+
├── notion-md-uploader/ # Upload Markdown to Notion
|
|
44
|
+
│ ├── SKILL.md
|
|
45
|
+
│ ├── scripts/
|
|
46
|
+
│ └── references/
|
|
47
|
+
└── skill-creator/ # Guide for creating skills
|
|
36
48
|
├── SKILL.md
|
|
37
|
-
|
|
38
|
-
│ ├── search_github.py
|
|
39
|
-
│ └── search_huggingface.py
|
|
40
|
-
└── references/
|
|
41
|
-
├── github_api.md
|
|
42
|
-
└── huggingface_api.md
|
|
49
|
+
└── scripts/
|
|
43
50
|
```
|
|
44
51
|
|
|
45
|
-
##
|
|
52
|
+
## Slash Commands
|
|
46
53
|
|
|
47
|
-
###
|
|
54
|
+
### General Commands
|
|
48
55
|
|
|
49
|
-
|
|
|
50
|
-
|
|
51
|
-
| `/plan` |
|
|
52
|
-
| `/commit-and-push` |
|
|
53
|
-
| `/code-review` |
|
|
54
|
-
| `/edit-notebook` | Jupyter Notebook
|
|
55
|
-
| `/ask-deepwiki` |
|
|
56
|
-
| `/ask-codex` |
|
|
57
|
-
| `/ask-gemini` |
|
|
56
|
+
| Command | Description |
|
|
57
|
+
|---------|-------------|
|
|
58
|
+
| `/plan` | Analyze requirements and create implementation plan (no coding) |
|
|
59
|
+
| `/commit-and-push` | Analyze changes and commit with Conventional Commits format |
|
|
60
|
+
| `/code-review` | Process external code review results and apply auto-fixes |
|
|
61
|
+
| `/edit-notebook` | Safely edit Jupyter Notebook files with NotebookEdit tool |
|
|
62
|
+
| `/ask-deepwiki` | Deep query GitHub repositories via DeepWiki MCP |
|
|
63
|
+
| `/ask-codex` | Request code review via Codex MCP (with Claude cross-check) |
|
|
64
|
+
| `/ask-gemini` | Request code review via Gemini CLI (with Claude cross-check) |
|
|
65
|
+
| `/council` | Consult multiple AI models and synthesize collective wisdom |
|
|
58
66
|
|
|
59
|
-
### GitHub
|
|
67
|
+
### GitHub Workflow Commands (`/gh/`)
|
|
60
68
|
|
|
61
|
-
|
|
|
62
|
-
|
|
63
|
-
| `/gh/create-issue-label` |
|
|
64
|
-
| `/gh/decompose-issue` |
|
|
65
|
-
| `/gh/init-project` |
|
|
66
|
-
| `/gh/post-merge` |
|
|
67
|
-
| `/gh/resolve-issue` |
|
|
69
|
+
| Command | Description |
|
|
70
|
+
|---------|-------------|
|
|
71
|
+
| `/gh/create-issue-label` | Analyze project and create appropriate GitHub issue labels |
|
|
72
|
+
| `/gh/decompose-issue` | Decompose large work into manageable independent issues |
|
|
73
|
+
| `/gh/init-project` | Initialize and configure GitHub Project board |
|
|
74
|
+
| `/gh/post-merge` | Clean up branch and update CLAUDE.md after PR merge |
|
|
75
|
+
| `/gh/resolve-issue` | Systematically analyze and resolve GitHub issues |
|
|
68
76
|
|
|
69
|
-
### TaskMaster
|
|
77
|
+
### TaskMaster Integration Commands (`/tm/`)
|
|
70
78
|
|
|
71
|
-
|
|
|
72
|
-
|
|
73
|
-
| `/tm/convert-prd` | PRD
|
|
74
|
-
| `/tm/sync-to-github` | TaskMaster tasks.json
|
|
75
|
-
| `/tm/resolve-issue` | GitHub
|
|
76
|
-
| `/tm/review-prd-with-codex` | PRD
|
|
77
|
-
| `/tm/post-merge` |
|
|
79
|
+
| Command | Description |
|
|
80
|
+
|---------|-------------|
|
|
81
|
+
| `/tm/convert-prd` | Convert PRD draft to TaskMaster PRD format |
|
|
82
|
+
| `/tm/sync-to-github` | Sync TaskMaster tasks.json to GitHub Issues/Milestones |
|
|
83
|
+
| `/tm/resolve-issue` | Resolve GitHub Issues by TaskMaster subtask units |
|
|
84
|
+
| `/tm/review-prd-with-codex` | Review PRD with Codex MCP and Claude cross-check |
|
|
85
|
+
| `/tm/post-merge` | TaskMaster status update and branch cleanup after PR merge |
|
|
78
86
|
|
|
79
|
-
##
|
|
87
|
+
## Agents
|
|
80
88
|
|
|
81
|
-
|
|
|
82
|
-
|
|
83
|
-
| `web-researcher` |
|
|
84
|
-
| `python-pro` | Python
|
|
85
|
-
| `generate-llmstxt` |
|
|
86
|
-
| `langconnect-rag-expert` |
|
|
89
|
+
| Agent | Description |
|
|
90
|
+
|-------|-------------|
|
|
91
|
+
| `web-researcher` | Multi-platform tech research (Reddit, GitHub, SO, HF, arXiv, etc.) |
|
|
92
|
+
| `python-pro` | Python advanced features expert (decorators, generators, async/await) |
|
|
93
|
+
| `generate-llmstxt` | Generate llms.txt documentation from websites or local directories |
|
|
94
|
+
| `langconnect-rag-expert` | Retrieve and synthesize information from document collections |
|
|
87
95
|
|
|
88
|
-
##
|
|
96
|
+
## Skills
|
|
89
97
|
|
|
90
98
|
### code-explorer
|
|
91
99
|
|
|
92
|
-
|
|
100
|
+
Search and analyze code/models/datasets on GitHub and Hugging Face.
|
|
93
101
|
|
|
94
102
|
```bash
|
|
95
|
-
# GitHub
|
|
103
|
+
# Search GitHub repositories
|
|
96
104
|
python scripts/search_github.py "object detection" --limit 10
|
|
97
105
|
|
|
98
|
-
# Hugging Face
|
|
106
|
+
# Search Hugging Face models/datasets/Spaces
|
|
99
107
|
python scripts/search_huggingface.py "qwen vl" --type models
|
|
100
108
|
```
|
|
101
109
|
|
|
102
|
-
|
|
110
|
+
### notion-md-uploader
|
|
103
111
|
|
|
104
|
-
|
|
112
|
+
Upload Markdown files to Notion pages with full formatting support.
|
|
113
|
+
|
|
114
|
+
- Headings, lists, code blocks, images, tables, callouts, todos
|
|
115
|
+
- Automatic image uploads
|
|
116
|
+
- Preserved formatting
|
|
117
|
+
|
|
118
|
+
### skill-creator
|
|
119
|
+
|
|
120
|
+
Guide for creating effective Claude Code skills.
|
|
121
|
+
|
|
122
|
+
- Skill structure templates
|
|
123
|
+
- Best practices
|
|
124
|
+
- Validation scripts
|
|
125
|
+
|
|
126
|
+
## Installation
|
|
127
|
+
|
|
128
|
+
### Install with npx (Recommended)
|
|
105
129
|
|
|
106
130
|
```bash
|
|
107
|
-
#
|
|
131
|
+
# Install to current project
|
|
108
132
|
npx @yeongjaeyou/claude-code-config
|
|
109
133
|
|
|
110
|
-
#
|
|
134
|
+
# Global install (available in all projects)
|
|
111
135
|
npx @yeongjaeyou/claude-code-config --global
|
|
112
136
|
```
|
|
113
137
|
|
|
114
|
-
###
|
|
138
|
+
### Manual Installation
|
|
115
139
|
|
|
116
140
|
```bash
|
|
117
|
-
#
|
|
141
|
+
# Method 1: Direct copy
|
|
118
142
|
git clone https://github.com/YoungjaeDev/claude-code-config.git
|
|
119
143
|
cp -r claude-code-config/.claude /path/to/your/project/
|
|
120
144
|
|
|
121
|
-
#
|
|
145
|
+
# Method 2: Symbolic link
|
|
122
146
|
ln -s /path/to/claude-code-config/.claude /path/to/your/project/.claude
|
|
123
147
|
```
|
|
124
148
|
|
|
125
|
-
### CLI
|
|
149
|
+
### CLI Options
|
|
126
150
|
|
|
127
151
|
```bash
|
|
128
|
-
npx @yeongjaeyou/claude-code-config [
|
|
152
|
+
npx @yeongjaeyou/claude-code-config [options]
|
|
129
153
|
|
|
130
|
-
|
|
131
|
-
-g, --global
|
|
132
|
-
-h, --help
|
|
133
|
-
-v, --version
|
|
154
|
+
Options:
|
|
155
|
+
-g, --global Global install (~/.claude/)
|
|
156
|
+
-h, --help Show help
|
|
157
|
+
-v, --version Show version
|
|
134
158
|
```
|
|
135
159
|
|
|
136
|
-
## MCP
|
|
160
|
+
## MCP Server Configuration
|
|
137
161
|
|
|
138
|
-
|
|
162
|
+
The package includes `.mcp.json` that can be copied to your project root.
|
|
139
163
|
|
|
140
|
-
###
|
|
164
|
+
### Prerequisites
|
|
141
165
|
|
|
142
|
-
- **Node.js**: npx
|
|
143
|
-
- **Python uv**: [uv
|
|
166
|
+
- **Node.js**: For npx command
|
|
167
|
+
- **Python uv**: [Install uv](https://docs.astral.sh/uv/getting-started/installation/)
|
|
144
168
|
```bash
|
|
145
169
|
# macOS/Linux
|
|
146
170
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
@@ -149,68 +173,74 @@ npx @yeongjaeyou/claude-code-config [옵션]
|
|
|
149
173
|
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
150
174
|
```
|
|
151
175
|
|
|
152
|
-
###
|
|
176
|
+
### Included MCP Servers
|
|
153
177
|
|
|
154
|
-
|
|
|
155
|
-
|
|
156
|
-
| mcpdocs | Claude Code, Cursor
|
|
157
|
-
| deepwiki | GitHub
|
|
158
|
-
| serena | LSP
|
|
178
|
+
| Server | Description | API Key |
|
|
179
|
+
|--------|-------------|---------|
|
|
180
|
+
| mcpdocs | Claude Code, Cursor docs search (mcp-cache wrapper) | Not required |
|
|
181
|
+
| deepwiki | GitHub repository documentation query | Not required |
|
|
182
|
+
| serena | LSP-based code analysis tool | Not required |
|
|
159
183
|
|
|
160
|
-
###
|
|
184
|
+
### Usage
|
|
161
185
|
|
|
162
186
|
```bash
|
|
163
|
-
# .mcp.json
|
|
187
|
+
# Copy .mcp.json
|
|
164
188
|
cp node_modules/@yeongjaeyou/claude-code-config/.mcp.json .
|
|
165
189
|
|
|
166
|
-
#
|
|
190
|
+
# Or merge contents if you have existing .mcp.json
|
|
167
191
|
```
|
|
168
192
|
|
|
169
|
-
>
|
|
170
|
-
|
|
171
|
-
## 사용법
|
|
193
|
+
> **Note**: If you have your own `.mcp.json`, manually merge the `mcpServers` object.
|
|
172
194
|
|
|
173
|
-
|
|
195
|
+
## Usage Examples
|
|
174
196
|
|
|
175
197
|
```bash
|
|
176
|
-
#
|
|
177
|
-
/plan
|
|
198
|
+
# Create implementation plan
|
|
199
|
+
/plan implement new authentication system
|
|
178
200
|
|
|
179
|
-
#
|
|
201
|
+
# Commit and push
|
|
180
202
|
/commit-and-push src/auth.ts src/utils.ts
|
|
181
203
|
|
|
182
|
-
# GitHub
|
|
204
|
+
# Resolve GitHub issue
|
|
183
205
|
/gh/resolve-issue 42
|
|
206
|
+
|
|
207
|
+
# Consult AI council
|
|
208
|
+
/council "Should we use REST or GraphQL for this API?"
|
|
184
209
|
```
|
|
185
210
|
|
|
186
|
-
##
|
|
211
|
+
## Key Features
|
|
212
|
+
|
|
213
|
+
### `/plan` - Implementation Planning
|
|
214
|
+
- Understand requirements intent (ask questions if unclear)
|
|
215
|
+
- Investigate and understand relevant codebase
|
|
216
|
+
- Create step-by-step execution plan
|
|
217
|
+
- **No immediate coding - plan only**
|
|
187
218
|
|
|
188
|
-
### `/
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
192
|
-
- **바로 코드를 작성하지 않고 계획만 수립**
|
|
219
|
+
### `/commit-and-push` - Git Automation
|
|
220
|
+
- Follow Conventional Commits format (feat, fix, refactor, docs, etc.)
|
|
221
|
+
- Analyze changes and generate appropriate commit message
|
|
222
|
+
- Selectively commit specified files only
|
|
193
223
|
|
|
194
|
-
### `/
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
224
|
+
### `/edit-notebook` - Jupyter Notebook Editing
|
|
225
|
+
- Use only `NotebookEdit` tool (protect JSON structure)
|
|
226
|
+
- Track cell_id for correct insertion order
|
|
227
|
+
- Include source format issue resolution guide
|
|
198
228
|
|
|
199
|
-
### `/
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
229
|
+
### `/council` - LLM Council
|
|
230
|
+
- Query multiple AI models (Opus, Sonnet, Codex, Gemini) in parallel
|
|
231
|
+
- Anonymize responses for unbiased evaluation
|
|
232
|
+
- Synthesize collective wisdom into consensus
|
|
203
233
|
|
|
204
|
-
### `web-researcher`
|
|
205
|
-
- GitHub(`gh` CLI), Hugging Face
|
|
206
|
-
- Context7/DeepWiki
|
|
207
|
-
-
|
|
234
|
+
### `web-researcher` Agent
|
|
235
|
+
- Multi-platform search: GitHub (`gh` CLI), Hugging Face, Reddit, SO, arXiv
|
|
236
|
+
- Official documentation via Context7/DeepWiki
|
|
237
|
+
- Auto-generate research reports
|
|
208
238
|
|
|
209
|
-
### `code-explorer`
|
|
210
|
-
- `gh` CLI
|
|
211
|
-
- `huggingface_hub` API
|
|
212
|
-
-
|
|
239
|
+
### `code-explorer` Skill
|
|
240
|
+
- GitHub repository/code search via `gh` CLI
|
|
241
|
+
- Hugging Face model/dataset/Spaces search via `huggingface_hub` API
|
|
242
|
+
- Download and analyze source code in temp directory (`/tmp/`)
|
|
213
243
|
|
|
214
|
-
##
|
|
244
|
+
## License
|
|
215
245
|
|
|
216
246
|
MIT License
|