diff --git a/docs/guides/installing-the-slack-cli-for-mac-and-linux.md b/docs/guides/installing-the-slack-cli-for-mac-and-linux.md index 20712510..939c0ddc 100644 --- a/docs/guides/installing-the-slack-cli-for-mac-and-linux.md +++ b/docs/guides/installing-the-slack-cli-for-mac-and-linux.md @@ -99,11 +99,11 @@ Manual installation allows you to customize certain paths used when installing t **2\. Download the** `slack` **CLI installer for your environment.** -🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_macOS_arm64.tar.gz) +🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_macOS_arm64.tar.gz) -🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_macOS_amd64.tar.gz) +🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_macOS_amd64.tar.gz) -🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_linux_64-bit.tar.gz) +🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_linux_64-bit.tar.gz) **3\. Add the** `slack` **CLI to your path.** @@ -121,7 +121,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change ```sh $ slack version -Using slack v3.12.0 +Using slack v3.13.0 ``` diff --git a/docs/guides/installing-the-slack-cli-for-windows.md b/docs/guides/installing-the-slack-cli-for-windows.md index 04aedc67..1a58f2fe 100644 --- a/docs/guides/installing-the-slack-cli-for-windows.md +++ b/docs/guides/installing-the-slack-cli-for-windows.md @@ -88,7 +88,7 @@ Manual installation allows you to customize certain paths used when installing t **2\. Download the** `slack` **CLI installer for your environment.** -   Windows (.zip) +   Windows (.zip) **3\. Add the** `slack` **CLI to your path.** @@ -104,7 +104,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change ```pwsh $ slack version -Using slack v3.12.0 +Using slack v3.13.0 ``` diff --git a/docs/reference/commands/slack_create.md b/docs/reference/commands/slack_create.md index f11205a0..8309a70a 100644 --- a/docs/reference/commands/slack_create.md +++ b/docs/reference/commands/slack_create.md @@ -4,10 +4,13 @@ Create a new Slack project ## Description -Create a new Slack project on your local machine from an optional template +Create a new Slack project on your local machine from an optional template. + +The 'agent' argument is a shortcut to create an AI Agent app. If you want to +name your app 'agent' (not create an AI Agent), use the --name flag instead. ``` -slack create [name] [flags] +slack create [name | agent ] [flags] ``` ## Flags @@ -15,6 +18,8 @@ slack create [name] [flags] ``` -b, --branch string name of git branch to checkout -h, --help help for create + --list list available app templates + -n, --name string name for your app (overrides the name argument) -t, --template string template URL for your app ``` @@ -38,8 +43,14 @@ slack create [name] [flags] # Create a new project from a template $ slack create my-project +# Create a new AI Agent app +$ slack create agent my-agent-app + # Start a new project from a specific template $ slack create my-project -t slack-samples/deno-hello-world + +# Create a project named 'my-project' +$ slack create --name my-project ``` ## See also diff --git a/docs/reference/commands/slack_project_create.md b/docs/reference/commands/slack_project_create.md index 82cc0301..3296133d 100644 --- a/docs/reference/commands/slack_project_create.md +++ b/docs/reference/commands/slack_project_create.md @@ -4,10 +4,13 @@ Create a new Slack project ## Description -Create a new Slack project on your local machine from an optional template +Create a new Slack project on your local machine from an optional template. + +The 'agent' argument is a shortcut to create an AI Agent app. If you want to +name your app 'agent' (not create an AI Agent), use the --name flag instead. ``` -slack project create [name] [flags] +slack project create [name | agent ] [flags] ``` ## Flags @@ -15,6 +18,8 @@ slack project create [name] [flags] ``` -b, --branch string name of git branch to checkout -h, --help help for create + --list list available app templates + -n, --name string name for your app (overrides the name argument) -t, --template string template URL for your app ``` @@ -38,8 +43,14 @@ slack project create [name] [flags] # Create a new project from a template $ slack create my-project +# Create a new AI Agent app +$ slack create agent my-agent-app + # Start a new project from a specific template $ slack create my-project -t slack-samples/deno-hello-world + +# Create a project named 'my-project' +$ slack create --name my-project ``` ## See also