feat: add Windows PowerShell installation and conversion scripts#172
Open
ALVIN-YANG wants to merge 1 commit intomsitarzewski:mainfrom
Open
feat: add Windows PowerShell installation and conversion scripts#172ALVIN-YANG wants to merge 1 commit intomsitarzewski:mainfrom
ALVIN-YANG wants to merge 1 commit intomsitarzewski:mainfrom
Conversation
Resolves msitarzewski#153 by adding native PowerShell support for Windows users.
Owner
|
Hey @ALVIN-YANG — thanks for this. Clean implementation. Heads up: PR #171 from @RoyCoding8 covers the same ground (PowerShell convert + install scripts) with some extras (CMD wrappers, lint support). We can't merge both. Rather than picking one, would you be open to collaborating with @RoyCoding8 on a single combined PR? Your compact implementation style + their CMD wrappers and lint support could make a strong joint effort. See the comment on #171 for more context. |
This was referenced Mar 14, 2026
Owner
|
Heads up: we're consolidating the Windows support conversation into a single Discussion: #197 — please weigh in there so we can align on one approach. |
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
Added
scripts/install.ps1andscripts/convert.ps1to natively support Windows users, replicating the behavior of the existing bash scripts. Also updatedREADME.mdto reference the new PowerShell scripts.Resolves #153.
Problem statement
The project provides
install.shandconvert.shwhich only run natively on Mac/Linux (or require Git Bash/WSL on Windows). Many Windows users expect native PowerShell script equivalents (.ps1) to avoid installing additional environment tooling.Proposed solution
scripts/install.ps1to mimicinstall.shwith interactive tool selection and auto-detection, correctly routing integration directories to$env:USERPROFILE.scripts/convert.ps1to mimicconvert.sh, capable of reading markdown frontmatter and extracting body blocks to build all the integration variants exactly as the bash script does.README.mdusage section to clarify the commands for Windows users.Acceptance criteria
Windows users can run
.\scripts\install.ps1and.\scripts\convert.ps1seamlessly.