@Option(name="-h", aliases={"--help"}, description="Display this help message", requireOverride = true)
private boolean displayHelp;
public String getId() {
CommandComponent cmd = getClass().getAnnotation(CommandComponent.class);
if (cmd == null) {
throw new IllegalStateException("Command id not found");
}
return cmd.id();
}