bluelamp-vscode 2.0.5 → 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.
- package/bin/bluelamp-vscode-base +5 -1
- package/package.json +1 -1
package/bin/bluelamp-vscode-base
CHANGED
|
@@ -152,7 +152,11 @@ inject_knowledge ツールで keyword: "${keyword}" を実行してから開始
|
|
|
152
152
|
'--mcp-config', configPath
|
|
153
153
|
];
|
|
154
154
|
|
|
155
|
-
|
|
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
161
|
env: {
|
|
158
162
|
...process.env,
|