- Bootstrap gum automatically on first run (Arch/Debian/RHEL/Fedora/SUSE)
- utils.sh: replace all bash color helpers with gum equivalents
- gum input for text prompts (with value pre-fill for defaults)
- gum choose for selection menus
- gum confirm for yes/no
- gum spin for long-running operations
- gum style/log for output (catppuccin mocha palette)
- gum style for banners and summary box
- core.sh: spinner on git clone/pull
- workflow.sh: spinner on git clone
- prereqs.sh: spinner on package installs
- wizard.sh: double-border welcome banner, rounded summary box,
success banner with next-steps panel
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Replace all `[[ condition ]] && die` with `if/fi` — the && pattern
exits silently when the condition is false under set -e
- Removed -e from set flags (kept -uo pipefail), all error paths are
now explicit
- Declare `input` as local in ask/ask_yn/ask_choice to prevent leakage
- Use `read -r input || true` to handle EOF safely
- Fix ask_choice arithmetic to avoid (()) triggering exit on false
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>