refactor(tui): remove legacy install selectors - #160
Merged
Conversation
fullstackjam
force-pushed
the
codex/remove-legacy-selectors
branch
2 times, most recently
from
August 1, 2026 17:51
4c53082 to
e446d51
Compare
fullstackjam
force-pushed
the
codex/remove-legacy-selectors
branch
from
August 1, 2026 17:55
e446d51 to
1f80360
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.
What does this PR do?
Removes the legacy package/macOS selector stack and makes the install wizard the single interactive planner.
Why?
The old linear selectors duplicated the wizard and were only reachable through leftover TTY mode branches. Keeping both implementations added roughly 1,470 lines of production UI plus a separate test surface with no distinct product role.
Testing
go vet ./...passes./openboot install --dry-runor similar)Additional verification:
go test ./internal/...passes, including archtest and wizard routing tests.Cross-repo checklist
openboot.dev? No; this only changes local CLI routing and UI internals.Notes for reviewer
TTY dry-runs now use the same wizard as live installs while carrying
DryRuninto the linear apply.install --updateis explicitly isolated as a Homebrew-update-and-exit mode. Sync-source dry-runs keep their existing linear diff preview.The shared key/style/layout primitives still used by the snapshot editor and remote-config customizer moved to
internal/ui/tui/shared.go; only the install-specific selectors were deleted.