Map<String, Set<String>> commands = new TreeMap<String, Set<String>>();
String commandSuffix = FORMAT_DOCBX.equals(format) ? "xml" : "conf";
for (Class<?> clazz : classes) {
try {
Action action = (Action) clazz.newInstance();
Command cmd = clazz.getAnnotation(Command.class);
// skip the *-help command
if (cmd.scope().equals("*")) continue;