From 4c0c1ca1d0506e206d04f9638d3726ed7c6dce5f Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Tue, 9 Dec 2025 15:20:25 -0800 Subject: [PATCH 1/4] feat: update 'create' cmd section to 'Agentic AI App' --- cmd/project/create_template.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/project/create_template.go b/cmd/project/create_template.go index 54553e73..400fedec 100644 --- a/cmd/project/create_template.go +++ b/cmd/project/create_template.go @@ -78,16 +78,16 @@ func getSelectionOptions(clients *shared.ClientFactory, categoryID string) []pro func getSelectionOptionsForCategory(clients *shared.ClientFactory) []promptObject { return []promptObject{ { - Title: fmt.Sprintf("Starter app %s", style.Secondary("Getting started Slack app")), + Title: fmt.Sprintf("Starter App %s", style.Secondary("Getting started Slack app")), Repository: "slack-cli#getting-started", }, { - Title: fmt.Sprintf("Automation app %s", style.Secondary("Custom steps and workflows")), - Repository: "slack-cli#automation-apps", + Title: fmt.Sprintf("Agentic AI App %s %s", style.Secondary("Slack agents and assistants"), style.Emoji("sparkles")), + Repository: "slack-cli#ai-apps", }, { - Title: fmt.Sprintf("AI app %s %s", style.Secondary("Slack agents and assistants"), style.Emoji("sparkles")), - Repository: "slack-cli#ai-apps", + Title: fmt.Sprintf("Automation App %s", style.Secondary("Custom steps and workflows")), + Repository: "slack-cli#automation-apps", }, { Title: "View more samples", From 258d3f874a25b46e35c2b8f485435f06cafea667 Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Tue, 9 Dec 2025 15:25:38 -0800 Subject: [PATCH 2/4] feat: lowercase the 'app' --- cmd/project/create_template.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/project/create_template.go b/cmd/project/create_template.go index 400fedec..1cf2b6e2 100644 --- a/cmd/project/create_template.go +++ b/cmd/project/create_template.go @@ -78,15 +78,15 @@ func getSelectionOptions(clients *shared.ClientFactory, categoryID string) []pro func getSelectionOptionsForCategory(clients *shared.ClientFactory) []promptObject { return []promptObject{ { - Title: fmt.Sprintf("Starter App %s", style.Secondary("Getting started Slack app")), + Title: fmt.Sprintf("Starter app %s", style.Secondary("Getting started Slack app")), Repository: "slack-cli#getting-started", }, { - Title: fmt.Sprintf("Agentic AI App %s %s", style.Secondary("Slack agents and assistants"), style.Emoji("sparkles")), + Title: fmt.Sprintf("Agentic AI app %s %s", style.Secondary("Slack agents and assistants"), style.Emoji("sparkles")), Repository: "slack-cli#ai-apps", }, { - Title: fmt.Sprintf("Automation App %s", style.Secondary("Custom steps and workflows")), + Title: fmt.Sprintf("Automation app %s", style.Secondary("Custom steps and workflows")), Repository: "slack-cli#automation-apps", }, { From e0089a101efafd2c809b4c296b3c97d74e566251 Mon Sep 17 00:00:00 2001 From: Ale Mercado Date: Wed, 28 Jan 2026 14:24:55 -0500 Subject: [PATCH 3/4] change ai-apps command name --- cmd/project/create_template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/project/create_template.go b/cmd/project/create_template.go index 1cf2b6e2..49b4ca75 100644 --- a/cmd/project/create_template.go +++ b/cmd/project/create_template.go @@ -82,7 +82,7 @@ func getSelectionOptionsForCategory(clients *shared.ClientFactory) []promptObjec Repository: "slack-cli#getting-started", }, { - Title: fmt.Sprintf("Agentic AI app %s %s", style.Secondary("Slack agents and assistants"), style.Emoji("sparkles")), + Title: fmt.Sprintf("AI Agent apps %s", style.Secondary("Slack agents and assistants")), Repository: "slack-cli#ai-apps", }, { From 2e4aa101ff1c37a5a83d64242d6008c36aed985d Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Wed, 28 Jan 2026 14:47:20 -0800 Subject: [PATCH 4/4] Apply suggestion from @zimeg Co-authored-by: Eden Zimbelman --- cmd/project/create_template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/project/create_template.go b/cmd/project/create_template.go index 49b4ca75..105cfdbe 100644 --- a/cmd/project/create_template.go +++ b/cmd/project/create_template.go @@ -82,7 +82,7 @@ func getSelectionOptionsForCategory(clients *shared.ClientFactory) []promptObjec Repository: "slack-cli#getting-started", }, { - Title: fmt.Sprintf("AI Agent apps %s", style.Secondary("Slack agents and assistants")), + Title: fmt.Sprintf("AI Agent app %s", style.Secondary("Slack agents and assistants")), Repository: "slack-cli#ai-apps", }, {