From 4c0c1ca1d0506e206d04f9638d3726ed7c6dce5f Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Tue, 9 Dec 2025 15:20:25 -0800 Subject: [PATCH 1/2] 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/2] 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", }, {