`picocli` allows for subcommands so create a single `ami` command with subcommands from current `ami-*` commands, e.g. ``` ami -pdf -p foo ``` changes to ``` ami pdf -p foo ``` Also remember global variables such as `-p` so commands can be chained ``` ami makeproject -p foo pdf ```
picocliallows for subcommands so create a singleamicommand with subcommands from currentami-*commands, e.g.changes to
Also remember global variables such as
-pso commands can be chained