Let me try to explain. I have this CLI: ```bash my-cli something-else ``` ```bash my-cli -h ``` I want to be able to use what I want as the first argument. Something like this: ```js // Instead of: .command('build <entry>') // just: .command('<entry>') ``` is that clear? A more real example: ```js prog .command('<entry>') .describe('List your entries') .option('a, --add') .action((entry, opts) => { console.log('You said:') console.log(entry) }) ``` I need to be able to run `my-cli hello` and not only using `my-cli a hello`