module Rubydex::CLI

Command-line entry point for the rdx executable. It handles the top-level flags, resolves the subcommand and delegates to it, which keeps exe/rdx a thin shim.

Subcommands live one per file in lib/rubydex/cli/command/ and declare the name they answer to (see {CLI::Command}). Both dispatch and the ‘rdx help` command list are driven by that declaration, so adding a subcommand means adding a file — there is no dispatch table or usage text to keep in step.