Skip to content

Commit 113aa42

Browse files
authored
chore: release slack-cli v3.13.0 (#341)
1 parent 2e9d76f commit 113aa42

4 files changed

Lines changed: 32 additions & 10 deletions

File tree

docs/guides/installing-the-slack-cli-for-mac-and-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ Manual installation allows you to customize certain paths used when installing t
9999

100100
**2\. Download the** `slack` **CLI installer for your environment.**
101101

102-
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_macOS_arm64.tar.gz)
102+
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_macOS_arm64.tar.gz)
103103

104-
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_macOS_amd64.tar.gz)
104+
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_macOS_amd64.tar.gz)
105105

106-
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.12.0_linux_64-bit.tar.gz)
106+
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_linux_64-bit.tar.gz)
107107

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

@@ -121,7 +121,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
121121

122122
```sh
123123
$ slack version
124-
Using slack v3.12.0
124+
Using slack v3.13.0
125125
```
126126

127127
</TabItem>

docs/guides/installing-the-slack-cli-for-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Manual installation allows you to customize certain paths used when installing t
8888

8989
**2\. Download the** `slack` **CLI installer for your environment.**
9090

91-
<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>
91+
<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>
9292

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

@@ -104,7 +104,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
104104

105105
```pwsh
106106
$ slack version
107-
Using slack v3.12.0
107+
Using slack v3.13.0
108108
```
109109

110110
</TabItem>

docs/reference/commands/slack_create.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,22 @@ Create a new Slack project
44

55
## Description
66

7-
Create a new Slack project on your local machine from an optional template
7+
Create a new Slack project on your local machine from an optional template.
8+
9+
The 'agent' argument is a shortcut to create an AI Agent app. If you want to
10+
name your app 'agent' (not create an AI Agent), use the --name flag instead.
811

912
```
10-
slack create [name] [flags]
13+
slack create [name | agent <name>] [flags]
1114
```
1215

1316
## Flags
1417

1518
```
1619
-b, --branch string name of git branch to checkout
1720
-h, --help help for create
21+
--list list available app templates
22+
-n, --name string name for your app (overrides the name argument)
1823
-t, --template string template URL for your app
1924
```
2025

@@ -38,8 +43,14 @@ slack create [name] [flags]
3843
# Create a new project from a template
3944
$ slack create my-project
4045
46+
# Create a new AI Agent app
47+
$ slack create agent my-agent-app
48+
4149
# Start a new project from a specific template
4250
$ slack create my-project -t slack-samples/deno-hello-world
51+
52+
# Create a project named 'my-project'
53+
$ slack create --name my-project
4354
```
4455

4556
## See also

docs/reference/commands/slack_project_create.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,22 @@ Create a new Slack project
44

55
## Description
66

7-
Create a new Slack project on your local machine from an optional template
7+
Create a new Slack project on your local machine from an optional template.
8+
9+
The 'agent' argument is a shortcut to create an AI Agent app. If you want to
10+
name your app 'agent' (not create an AI Agent), use the --name flag instead.
811

912
```
10-
slack project create [name] [flags]
13+
slack project create [name | agent <name>] [flags]
1114
```
1215

1316
## Flags
1417

1518
```
1619
-b, --branch string name of git branch to checkout
1720
-h, --help help for create
21+
--list list available app templates
22+
-n, --name string name for your app (overrides the name argument)
1823
-t, --template string template URL for your app
1924
```
2025

@@ -38,8 +43,14 @@ slack project create [name] [flags]
3843
# Create a new project from a template
3944
$ slack create my-project
4045
46+
# Create a new AI Agent app
47+
$ slack create agent my-agent-app
48+
4149
# Start a new project from a specific template
4250
$ slack create my-project -t slack-samples/deno-hello-world
51+
52+
# Create a project named 'my-project'
53+
$ slack create --name my-project
4354
```
4455

4556
## See also

0 commit comments

Comments
 (0)