You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct Windows CLI detection for npm-installed tools
The CLI managers for Claude Code, Gemini CLI, Codex CLI, and Qwen CLI
were incorrectly searching for `.exe` files on Windows. These tools are
installed via npm which creates `.cmd` wrapper scripts, not `.exe` files.
The fix removes the explicit `.exe` extension check because `shutil.which()`
automatically handles Windows PATHEXT environment variable, which includes
`.CMD`, `.BAT`, `.EXE`, and other executable extensions.
Before: `shutil.which("claude.exe")` -> None (not found)
After: `shutil.which("claude")` -> finds claude.cmd via PATHEXT
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments