feat(cli): add -v short flag for version command#2314
Open
vincent067 wants to merge 2 commits intoupstash:masterfrom
Open
feat(cli): add -v short flag for version command#2314vincent067 wants to merge 2 commits intoupstash:masterfrom
vincent067 wants to merge 2 commits intoupstash:masterfrom
Conversation
Add documentation for Claude Code integration including: - Quick setup instructions - Usage examples with popular libraries - Auto-trigger rules for NestJS, Prisma, SvelteKit, etc. - Best practices for library documentation queries Closes upstash#2272
Add '-v' as a short alias for '--version' flag in the CLI. This follows common CLI conventions and improves user experience for quickly checking the installed version. Before: $ ctx7 --version ✓ (worked) $ ctx7 -v ✗ (unknown option) After: $ ctx7 --version ✓ (works) $ ctx7 -v ✓ (works) The help text now shows '-v, --version' option.
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.
Hi Context7 team! 👋
This is a small UX improvement that adds
-vas a short alias for the--versionflag.What's Changed
Before
After
Why
Most CLI tools support both forms:
It's a small quality-of-life improvement for developers who are used to typing
-vquickly. 😊The change is minimal and only affects the help text display and option parsing - no breaking changes.
Let me know if you'd like any adjustments! Thanks for building Context7 - it's an awesome tool for AI coding workflows. 🙏