## Feature Request - [X] Yes, I reviewed the [contribution guidelines](https://make.wordpress.org/cli/handbook/contributing/). **Describe your use case and the problem you are facing** When a user is tired they can invent commands in their head that don't exist, for example `wp category`. **Describe the solution you'd like** It would be great if an appropriate "Did you mean" message is shown when trying to run one of the following non-existent commands: * `wp <taxonomy> <command>` => `Did you mean wp term <command> <taxonomy>?` * `wp <post_type> <command>` => `Did you mean wp post <command> --post_type=<post_type>?` If it's too complex to reliably construct the full suggestion, simply suggesting `wp term` or `wp post` as appropriate would still be very useful.