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 053db03d..2a93e57e 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_4.2.0_macOS_arm64.tar.gz)
+🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_macOS_arm64.tar.gz)
-🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_macOS_amd64.tar.gz)
+🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_macOS_amd64.tar.gz)
-🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz)
+🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.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 v4.2.0
+Using slack v4.3.0
```
diff --git a/docs/guides/installing-the-slack-cli-for-windows.md b/docs/guides/installing-the-slack-cli-for-windows.md
index 9ba2e3cd..ce92240a 100644
--- a/docs/guides/installing-the-slack-cli-for-windows.md
+++ b/docs/guides/installing-the-slack-cli-for-windows.md
@@ -102,7 +102,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.**
@@ -118,7 +118,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
```pwsh
$ slack version
-Using slack v4.2.0
+Using slack v4.3.0
```
diff --git a/docs/reference/commands/slack_create.md b/docs/reference/commands/slack_create.md
index f51d3e69..7b274c36 100644
--- a/docs/reference/commands/slack_create.md
+++ b/docs/reference/commands/slack_create.md
@@ -16,12 +16,13 @@ slack create [name | agent ] [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)
- --subdir string subdirectory in the template to use as project
- -t, --template string template URL for your app
+ -b, --branch string name of git branch to checkout
+ -E, --environment string environment to save existing app (local, deployed)
+ -h, --help help for create
+ --list list available app templates
+ -n, --name string name for your app (overrides the name argument)
+ --subdir string subdirectory in the template to use as project
+ -t, --template string template URL for your app
```
## Global flags
@@ -56,6 +57,9 @@ $ slack create --name my-project
# Create from a subdirectory of a template
$ slack create my-project -t org/monorepo --subdir apps/my-app
+
+# Create from template and link to an existing app
+$ slack create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local
```
## See also
diff --git a/docs/reference/commands/slack_external-auth_add-secret.md b/docs/reference/commands/slack_external-auth_add-secret.md
index fcfd784e..70e777ac 100644
--- a/docs/reference/commands/slack_external-auth_add-secret.md
+++ b/docs/reference/commands/slack_external-auth_add-secret.md
@@ -8,9 +8,6 @@ Add the client secret for an external provider of a workflow app.
This secret will be used when initiating the OAuth2 flow.
-This command is supported for apps deployed to Slack managed infrastructure but
-other apps can attempt to run the command with the --force flag.
-
```
slack external-auth add-secret [flags]
```
diff --git a/docs/reference/commands/slack_project_create.md b/docs/reference/commands/slack_project_create.md
index 258c66e6..7a37ad6b 100644
--- a/docs/reference/commands/slack_project_create.md
+++ b/docs/reference/commands/slack_project_create.md
@@ -16,12 +16,13 @@ slack project create [name | agent ] [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)
- --subdir string subdirectory in the template to use as project
- -t, --template string template URL for your app
+ -b, --branch string name of git branch to checkout
+ -E, --environment string environment to save existing app (local, deployed)
+ -h, --help help for create
+ --list list available app templates
+ -n, --name string name for your app (overrides the name argument)
+ --subdir string subdirectory in the template to use as project
+ -t, --template string template URL for your app
```
## Global flags
@@ -56,6 +57,9 @@ $ slack create --name my-project
# Create from a subdirectory of a template
$ slack create my-project -t org/monorepo --subdir apps/my-app
+
+# Create from template and link to an existing app
+$ slack create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local
```
## See also