It's common for CLI apps to have global/common options that apply to most commands. These options are usually placed before the command text. For example, in Entity Framework: ``` dotnet ef [options] [command] Global options: --no-color Don't colorize output. --prefix-output Prefix output with level. ``` What is your recommendation for handling these cases using your v5 framework? Is there any support or plans to support this? Thanks for the great framework!