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 }