diff --git a/cmd/create.go b/cmd/create.go index 7b5b974..11f9c2b 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -43,10 +43,6 @@ var Categories = []Category{ DisplayNameEN: "AI / LLM", NormalizedName: "ai-machine-learning", }, - { - DisplayNameEN: "DeepSeek", - NormalizedName: "deepseek", - }, { DisplayNameEN: "Database", NormalizedName: "database", @@ -83,6 +79,10 @@ var Categories = []Category{ DisplayNameEN: "DevTools", NormalizedName: "dev-tools", }, + { + DisplayNameEN: "Uncategorized", + NormalizedName: "uncategorized", + }, } func getCategoryDisplayNames(categories []Category) []string { @@ -120,7 +120,7 @@ Otherwise, interactive mode prompts for: - From scratch (Standard/Frontend-only/Backend-only) or from existing Helm chart - For app/simple: use --type with --from= to skip prompts`, Args: cobra.ExactArgs(0), - RunE: o.run, + RunE: o.run, } cmd.Flags().StringVar(&o.from, "from", "", "application helm chart file path of application class") cmd.Flags().StringVar(&o.typ, "type", "standard", "extension type: standard (default), app, or simple. app/simple require --from") @@ -285,9 +285,9 @@ func (o *createOptions) run(c *cobra.Command, _ []string) error { }, Category: Categories[categoryIdx].NormalizedName, Keywords: []string{name, Categories[categoryIdx].NormalizedName}, - Author: author, - Email: email, - URL: url, + Author: author, + Email: email, + URL: url, }, Permissions: spec.PermDefault, }