Reproduction
The aliases have no long-form handler flag to reference:
src/help.command.ts
import { Handler } from 'func'
class HelpCommand {
@Handler({ aliases: ['h', '?'] })
help() {}
}How to fix it
Add the flag or remove the alias:
src/help.command.ts
class HelpCommand {
@Handler({ flag: 'help', aliases: ['h', '?'] })
help() {}
}