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
- pip install codegraph-mcp-server
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
- pip install codegraph-mcp-server
718
+ pipx install codegraph-mcp-server
719
719
  ```
720
720
 
721
- 2. **VS Codeを設定** (`settings.json`):
721
+ 2. **VS Codeを設定** (`.vscode/mcp.json`):
722
722
 
723
723
  ```json
724
724
  {
725
- "mcp.servers": {
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 globally
877
- pip install codegraph-mcp-server
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
- pip install codegraph-mcp-server
891
+ pipx install codegraph-mcp-server
892
892
  ```
893
893
 
894
- 2. **Configure VS Code** (`settings.json`):
894
+ 2. **Configure VS Code** (`.vscode/mcp.json`):
895
895
 
896
896
  ```json
897
897
  {
898
- "mcp.servers": {
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.4",
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 python3 && python3 --version
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
- python3 -m venv ~/codegraph-venv
184
- cd ~/codegraph-venv && source bin/activate && pip install codegraph-mcp
184
+ # pipxでインストール(推奨)
185
+ pipx install codegraph-mcp-server
185
186
 
186
187
  # 動作確認
187
- ~/codegraph-venv/bin/codegraph-mcp --version
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
- ~/codegraph-venv/bin/codegraph-mcp index "${workspaceFolder}" --full
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 -- ~/codegraph-venv/bin/codegraph-mcp serve --repo ${workspaceFolder}
208
+ claude mcp add codegraph -- codegraph-mcp serve --repo ${workspaceFolder}
206
209
  ```
207
210
 
208
- **b) VS Code の場合** - `.vscode/settings.json` を作成/更新:
211
+ **b) VS Code の場合** - `.vscode/mcp.json` を作成/更新:
209
212
 
210
213
  ```json
211
214
  {
212
- "mcp.servers": {
215
+ "servers": {
213
216
  "codegraph": {
214
- "command": "~/codegraph-venv/bin/codegraph-mcp",
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": "~/codegraph-venv/bin/codegraph-mcp",
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. ✅ Python環境確認(`which python3`)
242
+ 1. ✅ pipx確認(`which pipx`)
239
243
  2. ✅ 既存インストール確認(`which codegraph-mcp`)
240
- 3. ✅ 未インストールなら venv 作成・pip install 実行
244
+ 3. ✅ 未インストールなら pipx install 実行
241
245
  4. ✅ 現在のプロジェクトをインデックス(`codegraph-mcp index --full`)
242
246
  5. ✅ 統計表示(`codegraph-mcp stats`)
243
247
  6. ✅ 使用環境を確認し、設定ファイル作成