Either by default or through an option, the help text commands should be sorted alphabetically.
I can submit a PR if adding this line around here is sufficient. I'm not aware of any other usecases where this may cause a problem unless people are using weird characters in their command names. Works on my end anyway.
commands.sort(function (a, b) {
return a[0] > b[0];
});