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 3932d716..07995153 100644 --- a/scripts/install-windows-dev.ps1 +++ b/scripts/install-windows-dev.ps1 @@ -248,7 +248,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 af17ce69..c1fdab11 100644 --- a/scripts/install-windows.ps1 +++ b/scripts/install-windows.ps1 @@ -239,7 +239,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..04e28f2c 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 }