fix: add -NoProfile flag to PowerShell subprocess invocation#1464
Open
Br1an67 wants to merge 1 commit intoMoonshotAI:mainfrom
Open
fix: add -NoProfile flag to PowerShell subprocess invocation#1464Br1an67 wants to merge 1 commit intoMoonshotAI:mainfrom
Br1an67 wants to merge 1 commit intoMoonshotAI:mainfrom
Conversation
On Windows, PowerShell loads the user profile by default, which may contain UI-related commands (e.g., setting CursorPosition) that fail in a non-interactive subprocess environment. This causes all shell commands to timeout with 'The handle is invalid' errors. Add -NoProfile flag to skip profile loading in the shell tool's PowerShell subprocess calls. Fixes MoonshotAI#1341
8b81d24 to
12f8c38
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
On Windows, Kimi CLI runs PowerShell without
-NoProfile, causing the user's profile to load. If the profile contains UI commands (e.g., settingCursorPosition), they fail in the non-interactive subprocess, making the Shell tool completely unusable.Fix
Add
-NoProfileflag before-commandin_shell_args()(tools/shell/__init__.py).Fixes #1341