bluelamp-vscode 2.0.6 → 2.0.7

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.
@@ -152,9 +152,12 @@ inject_knowledge ツールで keyword: "${keyword}" を実行してから開始
152
152
  '--mcp-config', configPath
153
153
  ];
154
154
 
155
- const child = spawn('claude', claudeArgs, {
155
+ // Windows対応: .cmdまたは.exeを自動検出
156
+ const isWindows = process.platform === 'win32';
157
+ const claudeCommand = isWindows ? 'claude.cmd' : 'claude';
158
+
159
+ const child = spawn(claudeCommand, claudeArgs, {
156
160
  stdio: 'inherit',
157
- shell: true, // Windows互換性のため追加
158
161
  env: {
159
162
  ...process.env,
160
163
  BLUELAMP_VSCODE_KEYWORD: keyword
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bluelamp-vscode",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "BlueLamp VSCode Extension MCP Integration - 16 Development Prompts",
5
5
  "main": "lib/mcp-server/index.cjs",
6
6
  "bin": {