package cmd import "github.com/spf13/cobra" var commitMsgCmd = &cobra.Command{ Use: "commit-msg", Short: "Generate conventional commit message from staged changes", Run: func(cmd *cobra.Command, args []string) { // TODO: implement }, }