Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/guides/installing-the-slack-cli-for-mac-and-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**

Expand All @@ -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
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/installing-the-slack-cli-for-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**

<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>

**3\. Add the** `slack` **CLI to your path.**

Expand All @@ -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
```

</TabItem>
Expand Down
15 changes: 13 additions & 2 deletions docs/reference/commands/slack_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,22 @@ 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 <name>] [flags]
```

## 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
```

Expand All @@ -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
Expand Down
15 changes: 13 additions & 2 deletions docs/reference/commands/slack_project_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,22 @@ 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 <name>] [flags]
```

## 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
```

Expand All @@ -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
Expand Down
Loading