refactor: move molecule cleanup to atmosphere-ci cmd
diff --git a/cmd/atmosphere-ci/molecule.go b/cmd/atmosphere-ci/molecule.go
new file mode 100644
index 0000000..0ad87e6
--- /dev/null
+++ b/cmd/atmosphere-ci/molecule.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+	"github.com/spf13/cobra"
+)
+
+var moleculeCmd = &cobra.Command{
+	Use:   "molecule",
+	Short: "Molecule sub-commands",
+}
+
+func init() {
+	rootCmd.AddCommand(moleculeCmd)
+}