docs(readme)+ci: WI-4 selective-install docs + flag e2e/validate smoke steps (#468) - #500
Merged
Merged
Conversation
…e steps (#468) - README.md: Add "Selective Install" section documenting all four flags (--list/--help/--only/--skip) with concrete examples for both setup.sh (Linux/macOS/WSL) and setup.ps1 (Windows). Includes the verified caveat that --only does NOT auto-include prerequisites (e.g. --only=nvm installs only nvm, not prereqs/uv). Documents --only/--skip mutual exclusion and --list precedence. - .github/workflows/e2e-install.yml: Add --list and --only smoke steps to e2e-linux, e2e-macos, and e2e-windows jobs via root entrypoints (setup.sh --only=zsh on *nix; setup.ps1 -Only 'vim' on Windows). Steps run after the full default install (idempotent, fast). - .github/workflows/validate.yml: Add flag-test steps to validate-linux (--list + --only=zsh), validate-macos (--list smoke), validate-powershell (-List), and validate-ps51 (-List under shell: powershell). WI-4 is the final slice of #468 (flags-first customizable install). Prompt/manifest deferred to issue #495 (Phase 2, blocked-by #468). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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.
What
WI-4 (final slice of #468 ? flags-first customizable install):
README.md
--list,--help,--only,--skip) with concrete examples for both the Linux/macOS/WSL (setup.sh) and Windows (setup.ps1) root entrypoints.--onlydoes NOT auto-include prerequisites (--only=nvminstalls only nvm; prereqs/uv are not pulled in automatically).--only/--skipmutual exclusion and--listprecedence..github/workflows/e2e-install.yml
--listand--onlysmoke steps to e2e-linux, e2e-macos, and e2e-windows jobs.setup.sh --only=zshon *nix;setup.ps1 -Only 'vim'on Windows), running after the full default install (idempotent, fast)..github/workflows/validate.yml
--list+--only=zsh), validate-macos (--listsmoke), validate-powershell (-List), and validate-ps51 (-Listundershell: powershell).Why
WI-4 is the final slice of issue #468. The flags engine (WI-1/2/3) is already on develop; this
slice documents it for users and adds CI proof that the flags work end-to-end on all three
platforms. After this merges, #468 flags-first scope is complete (prompt/manifest deferred
to issue #495, Phase 2).
CI is the gate
No local install simulation needed for WI-4 -- the CI workflows themselves are the acceptance
gate. Default install regression (full e2e on all runners) is unchanged; flag smoke steps are
additive and run after the full setup (idempotent).
Checklist
--onlyprereq caveat verified against flag engine source (build_final_toolset in scripts/linux/setup.sh; $FinalTools logic in scripts/windows/setup.ps1)