Conversation
Replace the --mode flag with check/print/describe subcommands, sharing the --project-classes/--libraries flags through a SourcesOptions group and using Clikt's required() for mandatory options. Generated with Claude Code
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #254 +/- ##
============================================
- Coverage 90.95% 90.94% -0.02%
+ Complexity 365 340 -25
============================================
Files 44 44
Lines 1139 1137 -2
Branches 155 157 +2
============================================
- Hits 1036 1034 -2
Misses 52 52
Partials 51 51 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
1 task
ogolberg
added a commit
that referenced
this pull request
May 5, 2026
## Summary - Expand the README's CLI section to cover the `check`, `describe`, and `print` subcommands introduced in #250 and #254 - Show example invocations for each subcommand, including the gzipped `TypeDescriptors` proto format shared between `describe` and `--platform-descriptors` ## Test plan - [x] Rendered README locally to verify formatting 🤖 Generated with [Claude Code](https://claude.com/claude-code)
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
--modeflag withcheck/print/describesubcommands following the Clikt subcommands guide--project-classes/--librariesacrosscheckanddescribevia aSourcesOptions : OptionGroup, per the advanced.md pattern for sharing optionsoption().required()for mandatory flags (--output,--platform-descriptors) instead of hand-rollederror()checksTest plan
./gradlew :cli:test :cli:spotlessCheckpassescheck/print/describeas subcommands, including thedescribe→printround-tripCliktErrorfrom.required()where applicable🤖 Generated with Claude Code