feat(cli): --version / -v flag#53
Merged
pablostanley merged 1 commit intomainfrom Apr 19, 2026
Merged
Conversation
Trivial DX miss from v0.13 polish — `designteam --version` exited 1 with "Unknown command" instead of printing 0.5.1. Standard CLI convention, two-line dispatch fix. - cli/index.mjs: early dispatch for --version / -v reads the root package.json version and prints + exits 0. - --help gets a "Global flags" section that documents both flags and --help/-h alongside. - evals/scenarios/version.mjs: asserts both flags match package.json so future dispatch reorderings can't silently break this. 11 evals now. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
designteam --version/-vnow print the CLI'spackage.jsonversion and exit 0. Previously they hit the "Unknown command" path and exited 1.main().--helppicks up a Global flags section documenting--version/-v+--help/-h.versioneval asserts both flags matchpackage.jsonso a future dispatch reorder can't silently break this.Test plan
pnpm eval— 11 passed (newversionscenario)pnpm test— 463 passeddesignteam --versionanddesignteam -vboth print 0.5.1 and exit 0🤖 Generated with Claude Code