feat: add install.bat and uninstall.bat for Windows#627
Open
lzy5818957 wants to merge 1 commit intogarrytan:mainfrom
Open
feat: add install.bat and uninstall.bat for Windows#627lzy5818957 wants to merge 1 commit intogarrytan:mainfrom
lzy5818957 wants to merge 1 commit intogarrytan:mainfrom
Conversation
One-click Windows installation: - install.bat copies the repo to ~/.claude/skills/gstack/, auto-detects Git Bash (Program Files, x86, or PATH), and runs ./setup through it. Falls back with a helpful message if Git Bash isn't found. - uninstall.bat removes ~/.claude/skills/gstack/ cleanly. - README updated with Windows double-click install instructions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
install.bat: one-click Windows installer that copies gstack to~/.claude/skills/gstack/, auto-detects Git Bash (checks Program Files, x86, then PATH), and runs./setupthrough ituninstall.bat: clean removal of~/.claude/skills/gstack/Why
The existing
./setupscript is bash-only. Windows users running CMD or PowerShell get'bash' is not recognized. This adds a native .bat wrapper that finds Git Bash automatically and delegates to the existing setup script — no changes to setup itself.Test plan
install.batfrom CMD — installs and runs setup via Git Bashinstall.batfrom PowerShell — same resultinstall.baton machine without Git Bash — shows helpful warninguninstall.bat— cleanly removes installation🤖 Generated with Claude Code