Refactor CLI to nested command groups#90
Merged
Conversation
Replace flat verb-noun commands (get-repo, list-repo, ...) with resource-oriented groups: repo, dependabot, and environment. Dispatch via args.func(args) and update docs/tests accordingly. Co-authored-by: akae <lbrealdev@users.noreply.github.com>
Co-authored-by: akae <lbrealdev@users.noreply.github.com>
lbrealdev
marked this pull request as ready for review
July 20, 2026 23:31
Contributor
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
Use a short FORMAT metavar and a wider HelpFormatter so repo list/get flag descriptions stay on one line. Co-authored-by: akae <lbrealdev@users.noreply.github.com>
Move argparse builders and command handlers into parser.py so main.py stays a thin entrypoint. Replace repo create --visibility with mutually exclusive --public/--private/--internal flags. Co-authored-by: akae <lbrealdev@users.noreply.github.com>
The intro paragraph already covers what the CLI does. Co-authored-by: akae <lbrealdev@users.noreply.github.com>
This was referenced Jul 21, 2026
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
Replace flat verb-noun commands with nested resource-oriented groups, and thin the CLI entrypoint:
Changes
parser.py; keepmain.pyas a thincli()entrypointrepo create --visibilitywith mutually exclusive--public/--private/--internal(default public)Breaking change
get-repo,list-repo,create-repo,delete-repo, anddependabot --enable/--disable) are removedrepo create --visibilityis replaced by--public/--private/--internalVerification
pytest -v— 39 passeduvx ruff check/uvx ruff format --check— clean--helpchecks for nested commands andrepo createvisibility flags