As far as I've understood the hubot help
command is supposed to list all commands based on the comment in the start of each script. For some reason it doesn't list the help for my file, can anyone spot the error?
# Description:
# Hubot interface to octopus deploy
#
# Commands:
# hubot octo promote <project> from <env1> to <env2> - Hubot deploys the latest release of <project> on <env1> to <env2>
# hubot octo deploy <project> version <version> to <env> - Hubot deploys the specified version of <project> to <env>
# hubot octo status - Hubot prints a dashboard of environments and currently deployed versions.
#
# Author:
# kneumei
_ = require('underscore')._
q = require('q')
util = require('util')
....
The full script is here: https://github.com/mastoj/hubot-octopus/blob/master/src/octopus.coffee