feat(agents): streamline version update UX with interactive prompts#225
Merged
8nevil8 merged 2 commits intocodemie-ai:mainfrom Mar 24, 2026
Merged
Conversation
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
This PR streamlines the user experience when Claude Code (or other agents) version mismatches are detected. Instead of cryptic exits or binary yes/no confirmations, users are now presented with clear, actionable list prompts that guide them through the version update process.
Changes
process.exit(1)with a 2-option interactive prompt — install the supported version now and continue, or exit with manual update instructions. Also surfaces the recommended version alongside the minimum.confirmprompt ("Continue anyway?") with a 3-option list — install supported version, continue with current, or exit showing relevant install commands.confirmprompt ("Continue with current version?") with a 3-option list — install new version, continue with current, or exit with the update command.else ifchain to prevent stale compatibility state from triggering multiple prompts after an install action.Impact
Before: Users hit silent exits or ambiguous yes/no confirmations when version issues were detected.
After: Users see a clear list of options and are guided with exact commands to run if they choose to exit manually.
Checklist