From e1ec42f7ac25376ae132a053fcfadbc4a188a1e4 Mon Sep 17 00:00:00 2001 From: Ale Mercado Date: Fri, 27 Mar 2026 16:42:40 -0400 Subject: [PATCH 1/5] feat(install): create agent CTA install script --- scripts/install-dev.sh | 1 + scripts/install-windows-dev.ps1 | 3 ++- scripts/install-windows.ps1 | 3 ++- scripts/install.sh | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/install-dev.sh b/scripts/install-dev.sh index 452d8c1a..a2f4ade9 100755 --- a/scripts/install-dev.sh +++ b/scripts/install-dev.sh @@ -233,6 +233,7 @@ next_step_message() { esac fi echo -e "🔐 Next, authorize your CLI in your workspace with \`$(bold "$SLACK_CLI_NAME login")\`" + echo -e "❯ Create AI Agents in Slack with \`$(bold "$SLACK_CLI_NAME create agent")\`" sleep 0.2 } diff --git a/scripts/install-windows-dev.ps1 b/scripts/install-windows-dev.ps1 index 12c9d0d7..18288b0e 100644 --- a/scripts/install-windows-dev.ps1 +++ b/scripts/install-windows-dev.ps1 @@ -247,7 +247,8 @@ function next_step_message { try { $confirmed_alias | Out-Null Write-Host "`nYou're all set! Relaunch your terminal to ensure changes take effect." - Write-Host " Then, authorize your CLI in your workspace with ``$confirmed_alias login``.`n" + Write-Host " Then, authorize your CLI in your workspace with ``$confirmed_alias login``." + Write-Host " > Create AI Agents in Slack with ``$confirmed_alias create agent``.`n" } catch { Write-Error "Slack CLI was not installed." diff --git a/scripts/install-windows.ps1 b/scripts/install-windows.ps1 index 3ed88e7e..8355876d 100644 --- a/scripts/install-windows.ps1 +++ b/scripts/install-windows.ps1 @@ -238,7 +238,8 @@ function next_step_message { try { $confirmed_alias | Out-Null Write-Host "`nYou're all set! Relaunch your terminal to ensure changes take effect." - Write-Host " Then, authorize your CLI in your workspace with ``$confirmed_alias login``.`n" + Write-Host " Then, authorize your CLI in your workspace with ``$confirmed_alias login``." + Write-Host " > Create AI Agents in Slack with ``$confirmed_alias create agent``.`n" } catch { Write-Error "Slack CLI was not installed." diff --git a/scripts/install.sh b/scripts/install.sh index e9fab3a3..771d9ffc 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -231,6 +231,7 @@ next_step_message() { esac fi echo -e "🔐 Next, authorize your CLI in your workspace with \`$(bold "$SLACK_CLI_NAME login")\`" + echo -e "❯ Create AI Agents in Slack with \`$(bold "$SLACK_CLI_NAME create agent")\`" sleep 0.2 } From 8a08d58b5928c5febb4c726effb07b06f7b6886d Mon Sep 17 00:00:00 2001 From: Ale Mercado <104795114+srtaalej@users.noreply.github.com> Date: Mon, 30 Mar 2026 13:47:05 -0400 Subject: [PATCH 2/5] Apply suggestions from code review Co-authored-by: Eden Zimbelman --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 771d9ffc..04e28f2c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -231,7 +231,7 @@ next_step_message() { esac fi echo -e "🔐 Next, authorize your CLI in your workspace with \`$(bold "$SLACK_CLI_NAME login")\`" - echo -e "❯ Create AI Agents in Slack with \`$(bold "$SLACK_CLI_NAME create agent")\`" + echo -e "🤖 Create AI Agents in Slack with \`$(bold "$SLACK_CLI_NAME create agent")\`" sleep 0.2 } From c200ab148d1b9d62d3bf6d8cef633fbe0fe61825 Mon Sep 17 00:00:00 2001 From: Ale Mercado <104795114+srtaalej@users.noreply.github.com> Date: Thu, 2 Apr 2026 13:58:23 -0400 Subject: [PATCH 3/5] Update scripts/install-dev.sh Co-authored-by: Michael Brooks --- scripts/install-dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-dev.sh b/scripts/install-dev.sh index a2f4ade9..82291053 100755 --- a/scripts/install-dev.sh +++ b/scripts/install-dev.sh @@ -233,7 +233,7 @@ next_step_message() { esac fi echo -e "🔐 Next, authorize your CLI in your workspace with \`$(bold "$SLACK_CLI_NAME login")\`" - echo -e "❯ Create AI Agents in Slack with \`$(bold "$SLACK_CLI_NAME create agent")\`" + echo -e "🤖 Create AI Agents in Slack with \`$(bold "$SLACK_CLI_NAME create agent")\`" sleep 0.2 } From 0c62a1f005ea4a15e4a51e350eaf0828dcb75dba Mon Sep 17 00:00:00 2001 From: Ale Mercado <104795114+srtaalej@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:24:33 -0400 Subject: [PATCH 4/5] Update scripts/install-windows-dev.ps1 Co-authored-by: Eden Zimbelman --- scripts/install-windows-dev.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-windows-dev.ps1 b/scripts/install-windows-dev.ps1 index 07995153..e24cfd22 100644 --- a/scripts/install-windows-dev.ps1 +++ b/scripts/install-windows-dev.ps1 @@ -249,7 +249,7 @@ function next_step_message { $confirmed_alias | Out-Null Write-Host "`nYou're all set! Relaunch your terminal to ensure changes take effect." Write-Host " Then, authorize your CLI in your workspace with ``$confirmed_alias login``." - Write-Host " > Create AI Agents in Slack with ``$confirmed_alias create agent``.`n" + Write-Host " Create AI Agents in Slack with ``$confirmed_alias create agent``.`n" } catch { Write-Error "Slack CLI was not installed." From b3aae94e1afaaf506e19800aa3c4a8fad7c5974b Mon Sep 17 00:00:00 2001 From: Ale Mercado <104795114+srtaalej@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:24:46 -0400 Subject: [PATCH 5/5] Update scripts/install-windows.ps1 Co-authored-by: Eden Zimbelman --- scripts/install-windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-windows.ps1 b/scripts/install-windows.ps1 index c1fdab11..63f6d70a 100644 --- a/scripts/install-windows.ps1 +++ b/scripts/install-windows.ps1 @@ -240,7 +240,7 @@ function next_step_message { $confirmed_alias | Out-Null Write-Host "`nYou're all set! Relaunch your terminal to ensure changes take effect." Write-Host " Then, authorize your CLI in your workspace with ``$confirmed_alias login``." - Write-Host " > Create AI Agents in Slack with ``$confirmed_alias create agent``.`n" + Write-Host " Create AI Agents in Slack with ``$confirmed_alias create agent``.`n" } catch { Write-Error "Slack CLI was not installed."