--- /dev/null
+package commands
+
+import (
+       "github.com/spf13/cobra"
+)
+
+var genCmd = &cobra.Command{
+       Use:   "gen",
+       Short: "A collection of several useful generators.",
+}
 
 var autocompleteType string
 
 var genautocompleteCmd = &cobra.Command{
-       Use:   "genautocomplete",
+       Use:   "autocomplete",
        Short: "Generate shell autocompletion script for Hugo",
        Long: `Generates a shell autocompletion script for Hugo.
 
 
 
 var gendocdir string
 var gendocCmd = &cobra.Command{
-       Use:   "gendoc",
+       Use:   "doc",
        Short: "Generate Markdown documentation for the Hugo CLI.",
        Long: `Generate Markdown documentation for the Hugo CLI.
 
 
 )
 
 var genmanCmd = &cobra.Command{
-       Use:   "genman",
+       Use:   "man",
        Short: "Generate man pages for the Hugo CLI",
        Long: `This command automatically generates up-to-date man pages of Hugo's
 command-line interface.  By default, it creates the man page files
 
        HugoCmd.AddCommand(newCmd)
        HugoCmd.AddCommand(listCmd)
        HugoCmd.AddCommand(undraftCmd)
-       HugoCmd.AddCommand(genautocompleteCmd)
-       HugoCmd.AddCommand(gendocCmd)
-       HugoCmd.AddCommand(genmanCmd)
        HugoCmd.AddCommand(importCmd)
+
+       HugoCmd.AddCommand(genCmd)
+       genCmd.AddCommand(genautocompleteCmd)
+       genCmd.AddCommand(gendocCmd)
+       genCmd.AddCommand(genmanCmd)
+
 }
 
 //Initializes flags