musubi-sdd 2.0.4 → 2.0.5
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.ja.md
CHANGED
|
@@ -700,8 +700,8 @@ MUSUBI v2.0.0は高度なコード分析のために**CodeGraphMCPServer**と統
|
|
|
700
700
|
#### オプション1: Claude Code(ターミナル)
|
|
701
701
|
|
|
702
702
|
```bash
|
|
703
|
-
# CodeGraph MCP
|
|
704
|
-
|
|
703
|
+
# CodeGraph MCPをpipxでインストール
|
|
704
|
+
pipx install codegraph-mcp-server
|
|
705
705
|
|
|
706
706
|
# Claude Codeに追加
|
|
707
707
|
claude mcp add codegraph -- codegraph-mcp serve --repo .
|
|
@@ -715,15 +715,16 @@ claude mcp list
|
|
|
715
715
|
1. **前提条件をインストール**:
|
|
716
716
|
|
|
717
717
|
```bash
|
|
718
|
-
|
|
718
|
+
pipx install codegraph-mcp-server
|
|
719
719
|
```
|
|
720
720
|
|
|
721
|
-
2. **VS Codeを設定** (
|
|
721
|
+
2. **VS Codeを設定** (`.vscode/mcp.json`):
|
|
722
722
|
|
|
723
723
|
```json
|
|
724
724
|
{
|
|
725
|
-
"
|
|
725
|
+
"servers": {
|
|
726
726
|
"codegraph": {
|
|
727
|
+
"type": "stdio",
|
|
727
728
|
"command": "codegraph-mcp",
|
|
728
729
|
"args": ["serve", "--repo", "${workspaceFolder}"]
|
|
729
730
|
}
|
package/README.md
CHANGED
|
@@ -873,8 +873,8 @@ MUSUBI v2.0.0 integrates with **CodeGraphMCPServer** for advanced code analysis.
|
|
|
873
873
|
#### Option 1: Claude Code (Terminal)
|
|
874
874
|
|
|
875
875
|
```bash
|
|
876
|
-
# Install CodeGraph MCP
|
|
877
|
-
|
|
876
|
+
# Install CodeGraph MCP with pipx
|
|
877
|
+
pipx install codegraph-mcp-server
|
|
878
878
|
|
|
879
879
|
# Add to Claude Code
|
|
880
880
|
claude mcp add codegraph -- codegraph-mcp serve --repo .
|
|
@@ -888,15 +888,16 @@ claude mcp list
|
|
|
888
888
|
1. **Install Prerequisites**:
|
|
889
889
|
|
|
890
890
|
```bash
|
|
891
|
-
|
|
891
|
+
pipx install codegraph-mcp-server
|
|
892
892
|
```
|
|
893
893
|
|
|
894
|
-
2. **Configure VS Code** (
|
|
894
|
+
2. **Configure VS Code** (`.vscode/mcp.json`):
|
|
895
895
|
|
|
896
896
|
```json
|
|
897
897
|
{
|
|
898
|
-
"
|
|
898
|
+
"servers": {
|
|
899
899
|
"codegraph": {
|
|
900
|
+
"type": "stdio",
|
|
900
901
|
"command": "codegraph-mcp",
|
|
901
902
|
"args": ["serve", "--repo", "${workspaceFolder}"]
|
|
902
903
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "musubi-sdd",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Ultimate Specification Driven Development Tool with 25 Agents for 7 AI Coding Platforms + MCP Integration (Claude Code, GitHub Copilot, Cursor, Gemini CLI, Windsurf, Codex, Qwen Code)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -170,29 +170,32 @@ Orchestratorは **CodeGraphMCPServer** を活用して、コードベースの
|
|
|
170
170
|
まず現在の状態を確認:
|
|
171
171
|
|
|
172
172
|
```bash
|
|
173
|
-
which
|
|
173
|
+
which pipx 2>/dev/null || echo "pipx not installed"
|
|
174
174
|
which codegraph-mcp 2>/dev/null || echo "codegraph-mcp not installed"
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
+
> **Note**: pipxがインストールされていない場合は、先に `pip install pipx && pipx ensurepath` を実行してください。
|
|
178
|
+
|
|
177
179
|
#### Step 2: インストール実行
|
|
178
180
|
|
|
179
181
|
codegraph-mcpがインストールされていない場合、**ユーザーに確認後、以下を実行**:
|
|
180
182
|
|
|
181
183
|
```bash
|
|
182
|
-
#
|
|
183
|
-
|
|
184
|
-
cd ~/codegraph-venv && source bin/activate && pip install codegraph-mcp
|
|
184
|
+
# pipxでインストール(推奨)
|
|
185
|
+
pipx install codegraph-mcp-server
|
|
185
186
|
|
|
186
187
|
# 動作確認
|
|
187
|
-
|
|
188
|
+
codegraph-mcp --version
|
|
188
189
|
```
|
|
189
190
|
|
|
191
|
+
> **Note**: pipxがインストールされていない場合は、先に `pip install pipx && pipx ensurepath` を実行してください。
|
|
192
|
+
|
|
190
193
|
#### Step 3: プロジェクトインデックス作成
|
|
191
194
|
|
|
192
195
|
インストール完了後、**現在のプロジェクトをインデックス**:
|
|
193
196
|
|
|
194
197
|
```bash
|
|
195
|
-
|
|
198
|
+
codegraph-mcp index "${workspaceFolder}" --full
|
|
196
199
|
```
|
|
197
200
|
|
|
198
201
|
#### Step 4: 設定ファイル作成(オプション選択)
|
|
@@ -202,16 +205,17 @@ cd ~/codegraph-venv && source bin/activate && pip install codegraph-mcp
|
|
|
202
205
|
**a) Claude Code の場合**:
|
|
203
206
|
|
|
204
207
|
```bash
|
|
205
|
-
claude mcp add codegraph --
|
|
208
|
+
claude mcp add codegraph -- codegraph-mcp serve --repo ${workspaceFolder}
|
|
206
209
|
```
|
|
207
210
|
|
|
208
|
-
**b) VS Code の場合** - `.vscode/
|
|
211
|
+
**b) VS Code の場合** - `.vscode/mcp.json` を作成/更新:
|
|
209
212
|
|
|
210
213
|
```json
|
|
211
214
|
{
|
|
212
|
-
"
|
|
215
|
+
"servers": {
|
|
213
216
|
"codegraph": {
|
|
214
|
-
"
|
|
217
|
+
"type": "stdio",
|
|
218
|
+
"command": "codegraph-mcp",
|
|
215
219
|
"args": ["serve", "--repo", "${workspaceFolder}"]
|
|
216
220
|
}
|
|
217
221
|
}
|
|
@@ -224,7 +228,7 @@ claude mcp add codegraph -- ~/codegraph-venv/bin/codegraph-mcp serve --repo ${wo
|
|
|
224
228
|
{
|
|
225
229
|
"mcpServers": {
|
|
226
230
|
"CodeGraph": {
|
|
227
|
-
"command": "
|
|
231
|
+
"command": "codegraph-mcp",
|
|
228
232
|
"args": ["serve", "--repo", "/absolute/path/to/project"]
|
|
229
233
|
}
|
|
230
234
|
}
|
|
@@ -235,9 +239,9 @@ claude mcp add codegraph -- ~/codegraph-venv/bin/codegraph-mcp serve --repo ${wo
|
|
|
235
239
|
|
|
236
240
|
**重要**: 「CodeGraph MCP を設定して」と依頼された場合、以下を順番に実行:
|
|
237
241
|
|
|
238
|
-
1. ✅
|
|
242
|
+
1. ✅ pipx確認(`which pipx`)
|
|
239
243
|
2. ✅ 既存インストール確認(`which codegraph-mcp`)
|
|
240
|
-
3. ✅ 未インストールなら
|
|
244
|
+
3. ✅ 未インストールなら pipx install 実行
|
|
241
245
|
4. ✅ 現在のプロジェクトをインデックス(`codegraph-mcp index --full`)
|
|
242
246
|
5. ✅ 統計表示(`codegraph-mcp stats`)
|
|
243
247
|
6. ✅ 使用環境を確認し、設定ファイル作成
|