feat: Add Command.withHidden to hide subcommands from help and completions#3
Open
avallete wants to merge 7 commits into
Open
feat: Add Command.withHidden to hide subcommands from help and completions#3avallete wants to merge 7 commits into
avallete wants to merge 7 commits into
Conversation
…directly with `asserts(schema, input)` and remove `Schema.Codec.ToAsserts` (Effect-TS#2221)
Co-authored-by: Tim Smart <hello@timsmart.co>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…ompletions Adds `Command.withHidden` so subcommands can be invoked by exact name while being omitted from the parent's `SUBCOMMANDS` help section, shell completion scripts, and "did you mean?" suggestions on unknown-subcommand typos. Mirrors the `Flag.withHidden` primitive for the subcommand surface. Useful for experimental or internal subcommands that should parse normally but not yet appear on the public CLI surface. When every subcommand in a group is hidden the group heading is dropped and the `<subcommand>` token is stripped from the usage line so the parent reads as a leaf command.
a5aafb1 to
ba511ea
Compare
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
Adds a new
Command.withHiddencombinator that allows subcommands to be hidden from help output, shell completions, and "did you mean?" suggestions while remaining fully invocable by exact name. This is useful for experimental or internal subcommands that should be accepted but not advertised on the public CLI surface.Key Changes
withHiddencombinator: AddedCommand.withHiddento mark subcommands as hiddenhidden: booleanproperty to theCommandinterface and implementation<subcommand>usage hint when all subcommands are hiddenImplementation Details
hiddentofalsehttps://claude.ai/code/session_01Eurf2SqBb8vNgcCiqLaokP