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 a5ad3de8..99a3622e 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.1.0_macOS_arm64.tar.gz)
+🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.0.1_macOS_arm64.tar.gz)
-🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.1.0_macOS_amd64.tar.gz)
+🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.0.1_macOS_amd64.tar.gz)
-🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.1.0_linux_64-bit.tar.gz)
+🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.0.1_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.1.0
+Using slack v4.0.1
```
diff --git a/docs/guides/installing-the-slack-cli-for-windows.md b/docs/guides/installing-the-slack-cli-for-windows.md
index 1014c161..f01f4beb 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.1.0
+Using slack v4.0.1
```
diff --git a/docs/reference/commands/slack.md b/docs/reference/commands/slack.md
index 536ec38d..4c09f091 100644
--- a/docs/reference/commands/slack.md
+++ b/docs/reference/commands/slack.md
@@ -15,7 +15,6 @@ slack [flags]
## Flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
@@ -42,7 +41,6 @@ $ slack docs # Open Slack developer docs
## See also
* [slack activity](slack_activity) - Display the app activity logs from the Slack Platform
-* [slack api](slack_api) - Call any Slack API method
* [slack app](slack_app) - Install, uninstall, and list teams with the app installed
* [slack auth](slack_auth) - Add and remove local team authorizations
* [slack collaborator](slack_collaborator) - Manage app collaborators
diff --git a/docs/reference/commands/slack_activity.md b/docs/reference/commands/slack_activity.md
index 94a36e61..397fec27 100644
--- a/docs/reference/commands/slack_activity.md
+++ b/docs/reference/commands/slack_activity.md
@@ -36,7 +36,6 @@ slack activity [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_api.md b/docs/reference/commands/slack_api.md
deleted file mode 100644
index bc134042..00000000
--- a/docs/reference/commands/slack_api.md
+++ /dev/null
@@ -1,125 +0,0 @@
-# `slack api`
-
-Call any Slack API method
-
-## Description
-
-Call any Slack API method directly.
-
-The method argument is the Slack API method name (e.g., "chat.postMessage").
-Parameters are passed as key=value pairs, a JSON body, or via flags.
-
-Body format is auto-detected from positional arguments:
- - Multiple key=value args: form-encoded (token in request body)
- - Single arg starting with { or [: JSON (Bearer token in header)
- - No args: token sent in Authorization header
-
-Use --json to explicitly send a JSON body, or --data for a form-encoded body string.
-
-Token resolution (in priority order):
- 1. --token flag Explicit token value
- 2. --app flag Install app and use bot token (in project)
- 3. SLACK_BOT_TOKEN env var Bot token (set during slack deploy)
- 4. SLACK_USER_TOKEN env var User token
- 5. App prompt (in project) Select installed app and use bot token
-
-See all methods at: https://docs.slack.dev/reference/methods
-
-```
-slack api [key=value ...] [flags]
-```
-
-## Flags
-
-```
- --data string form-encoded request body string (e.g. "key1=val1&key2=val2")
- -H, --header strings additional HTTP headers (format: "Key: Value")
- -h, --help help for api
- -i, --include include HTTP status code and response headers in output
- --json string JSON request body (uses Bearer token in Authorization header)
- -X, --method string HTTP method for the request (default "POST")
-```
-
-## Global flags
-
-```
- --accessible use accessible prompts for screen readers
- -a, --app string use a specific app ID or environment
- --config-dir string use a custom path for system config directory
- -e, --experiment strings use the experiment(s) in the command
- -f, --force ignore warnings and continue executing command
- --no-color remove styles and formatting from outputs
- -s, --skip-update skip checking for latest version of CLI
- -w, --team string select workspace or organization by team name or ID
- --token string set the access token associated with a team
- -v, --verbose print debug logging and additional info
-```
-
-## Examples
-
-```
-# Test your API connection
-$ slack api api.test
-
-# Check authentication
-$ slack api auth.test
-
-# Add a bookmark to a channel
-$ slack api bookmarks.add channel_id=C0123456 title=Docs link=https://example.com
-
-# Send a message to a channel using form-encoded string
-$ slack api chat.postMessage channel=C0123456 text="Hello"
-
-# Send a message to a channel using JSON
-$ slack api chat.postMessage --json '{"channel":"C0123456","text":"Hello"}'
-
-# Update a message
-$ slack api chat.update channel=C0123456 ts=1234567890.123456 text="Updated"
-
-# Create a channel
-$ slack api conversations.create name=new-channel
-
-# Fetch messages from a channel
-$ slack api conversations.history channel=C0123456
-
-# Get channel details
-$ slack api conversations.info channel=C0123456
-
-# List channels
-$ slack api conversations.list
-
-# List members in a channel
-$ slack api conversations.members channel=C0123456
-
-# Upload a file
-$ slack api files.upload channels=C0123456 filename=report.csv
-
-# Pin a message
-$ slack api pins.add channel=C0123456 timestamp=1234567890.123456
-
-# Add an emoji reaction
-$ slack api reactions.add channel=C0123456 timestamp=1234567890.123456 name=thumbsup
-
-# List reactions for a user
-$ slack api reactions.list user=U0123456
-
-# Get user details
-$ slack api users.info user=U0123456
-
-# List workspace members
-$ slack api users.list
-
-# Get a user's profile
-$ slack api users.profile.get user=U0123456
-
-# Open a modal view
-$ slack api views.open trigger_id=T0123456 view={...}
-
-# Update a modal view
-$ slack api views.update view_id=V0123456 view={...}
-```
-
-## See also
-
-* [slack](slack) - Slack command-line tool
-
diff --git a/docs/reference/commands/slack_app.md b/docs/reference/commands/slack_app.md
index 5a7a9f95..80bf3c11 100644
--- a/docs/reference/commands/slack_app.md
+++ b/docs/reference/commands/slack_app.md
@@ -19,7 +19,6 @@ slack app [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_delete.md b/docs/reference/commands/slack_app_delete.md
index 4309d471..31336532 100644
--- a/docs/reference/commands/slack_app_delete.md
+++ b/docs/reference/commands/slack_app_delete.md
@@ -19,7 +19,6 @@ slack app delete [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_install.md b/docs/reference/commands/slack_app_install.md
index 4df029d6..d8c7dbfc 100644
--- a/docs/reference/commands/slack_app_install.md
+++ b/docs/reference/commands/slack_app_install.md
@@ -22,7 +22,6 @@ slack app install [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_link.md b/docs/reference/commands/slack_app_link.md
index da77a4ce..0afc1b20 100644
--- a/docs/reference/commands/slack_app_link.md
+++ b/docs/reference/commands/slack_app_link.md
@@ -29,7 +29,6 @@ slack app link [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_list.md b/docs/reference/commands/slack_app_list.md
index b21a14ed..d38b8f81 100644
--- a/docs/reference/commands/slack_app_list.md
+++ b/docs/reference/commands/slack_app_list.md
@@ -21,7 +21,6 @@ slack app list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_settings.md b/docs/reference/commands/slack_app_settings.md
index dd1a5678..050e869f 100644
--- a/docs/reference/commands/slack_app_settings.md
+++ b/docs/reference/commands/slack_app_settings.md
@@ -24,7 +24,6 @@ slack app settings [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_uninstall.md b/docs/reference/commands/slack_app_uninstall.md
index 67628a1f..4977663d 100644
--- a/docs/reference/commands/slack_app_uninstall.md
+++ b/docs/reference/commands/slack_app_uninstall.md
@@ -19,7 +19,6 @@ slack app uninstall [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_app_unlink.md b/docs/reference/commands/slack_app_unlink.md
index 3cd34799..f8522b1f 100644
--- a/docs/reference/commands/slack_app_unlink.md
+++ b/docs/reference/commands/slack_app_unlink.md
@@ -22,7 +22,6 @@ slack app unlink [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_auth.md b/docs/reference/commands/slack_auth.md
index 5744ae08..6f91b6ed 100644
--- a/docs/reference/commands/slack_auth.md
+++ b/docs/reference/commands/slack_auth.md
@@ -19,7 +19,6 @@ slack auth [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_auth_list.md b/docs/reference/commands/slack_auth_list.md
index bd328ea6..01837506 100644
--- a/docs/reference/commands/slack_auth_list.md
+++ b/docs/reference/commands/slack_auth_list.md
@@ -19,7 +19,6 @@ slack auth list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_auth_login.md b/docs/reference/commands/slack_auth_login.md
index e501fb3c..b12fac2c 100644
--- a/docs/reference/commands/slack_auth_login.md
+++ b/docs/reference/commands/slack_auth_login.md
@@ -23,7 +23,6 @@ slack auth login [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_auth_logout.md b/docs/reference/commands/slack_auth_logout.md
index 9481d2ff..92fa7292 100644
--- a/docs/reference/commands/slack_auth_logout.md
+++ b/docs/reference/commands/slack_auth_logout.md
@@ -20,7 +20,6 @@ slack auth logout [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_auth_revoke.md b/docs/reference/commands/slack_auth_revoke.md
index 02a71666..efb228ae 100644
--- a/docs/reference/commands/slack_auth_revoke.md
+++ b/docs/reference/commands/slack_auth_revoke.md
@@ -19,7 +19,6 @@ slack auth revoke [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_auth_token.md b/docs/reference/commands/slack_auth_token.md
index 27664d77..32002814 100644
--- a/docs/reference/commands/slack_auth_token.md
+++ b/docs/reference/commands/slack_auth_token.md
@@ -22,7 +22,6 @@ slack auth token [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_collaborator.md b/docs/reference/commands/slack_collaborator.md
index 101de19b..47428061 100644
--- a/docs/reference/commands/slack_collaborator.md
+++ b/docs/reference/commands/slack_collaborator.md
@@ -19,7 +19,6 @@ slack collaborator [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_collaborator_add.md b/docs/reference/commands/slack_collaborator_add.md
index 0bf6daa1..9520353f 100644
--- a/docs/reference/commands/slack_collaborator_add.md
+++ b/docs/reference/commands/slack_collaborator_add.md
@@ -21,7 +21,6 @@ slack collaborator add [email|user_id] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_collaborator_list.md b/docs/reference/commands/slack_collaborator_list.md
index a9a525f8..283607be 100644
--- a/docs/reference/commands/slack_collaborator_list.md
+++ b/docs/reference/commands/slack_collaborator_list.md
@@ -19,7 +19,6 @@ slack collaborator list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_collaborator_remove.md b/docs/reference/commands/slack_collaborator_remove.md
index dfc1bf5d..676daa4e 100644
--- a/docs/reference/commands/slack_collaborator_remove.md
+++ b/docs/reference/commands/slack_collaborator_remove.md
@@ -19,7 +19,6 @@ slack collaborator remove [email|user_id] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_create.md b/docs/reference/commands/slack_create.md
index f51d3e69..2503099d 100644
--- a/docs/reference/commands/slack_create.md
+++ b/docs/reference/commands/slack_create.md
@@ -27,7 +27,6 @@ slack create [name | agent ] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore.md b/docs/reference/commands/slack_datastore.md
index b4a139d2..da6f1ae4 100644
--- a/docs/reference/commands/slack_datastore.md
+++ b/docs/reference/commands/slack_datastore.md
@@ -24,7 +24,6 @@ slack datastore [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_bulk-delete.md b/docs/reference/commands/slack_datastore_bulk-delete.md
index 5578369f..b7dc6d92 100644
--- a/docs/reference/commands/slack_datastore_bulk-delete.md
+++ b/docs/reference/commands/slack_datastore_bulk-delete.md
@@ -25,7 +25,6 @@ slack datastore bulk-delete [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_bulk-get.md b/docs/reference/commands/slack_datastore_bulk-get.md
index e37881ed..1aee8c55 100644
--- a/docs/reference/commands/slack_datastore_bulk-get.md
+++ b/docs/reference/commands/slack_datastore_bulk-get.md
@@ -26,7 +26,6 @@ slack datastore bulk-get [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_bulk-put.md b/docs/reference/commands/slack_datastore_bulk-put.md
index 14fa9340..da6bb7f4 100644
--- a/docs/reference/commands/slack_datastore_bulk-put.md
+++ b/docs/reference/commands/slack_datastore_bulk-put.md
@@ -26,7 +26,6 @@ slack datastore bulk-put [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_count.md b/docs/reference/commands/slack_datastore_count.md
index ad2bd3a1..4ed1e473 100644
--- a/docs/reference/commands/slack_datastore_count.md
+++ b/docs/reference/commands/slack_datastore_count.md
@@ -26,7 +26,6 @@ slack datastore count [expression] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_delete.md b/docs/reference/commands/slack_datastore_delete.md
index 18f0e34c..1eb684cf 100644
--- a/docs/reference/commands/slack_datastore_delete.md
+++ b/docs/reference/commands/slack_datastore_delete.md
@@ -25,7 +25,6 @@ slack datastore delete [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_get.md b/docs/reference/commands/slack_datastore_get.md
index 27d98dbc..b73c8de4 100644
--- a/docs/reference/commands/slack_datastore_get.md
+++ b/docs/reference/commands/slack_datastore_get.md
@@ -26,7 +26,6 @@ slack datastore get [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_put.md b/docs/reference/commands/slack_datastore_put.md
index 8f0f7849..97544089 100644
--- a/docs/reference/commands/slack_datastore_put.md
+++ b/docs/reference/commands/slack_datastore_put.md
@@ -25,7 +25,6 @@ slack datastore put [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_query.md b/docs/reference/commands/slack_datastore_query.md
index 816675f4..c8e57039 100644
--- a/docs/reference/commands/slack_datastore_query.md
+++ b/docs/reference/commands/slack_datastore_query.md
@@ -27,7 +27,6 @@ slack datastore query [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_datastore_update.md b/docs/reference/commands/slack_datastore_update.md
index 43d66f7d..77fb20fa 100644
--- a/docs/reference/commands/slack_datastore_update.md
+++ b/docs/reference/commands/slack_datastore_update.md
@@ -25,7 +25,6 @@ slack datastore update [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_delete.md b/docs/reference/commands/slack_delete.md
index ec5a2149..8dcc2587 100644
--- a/docs/reference/commands/slack_delete.md
+++ b/docs/reference/commands/slack_delete.md
@@ -19,7 +19,6 @@ slack delete [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_deploy.md b/docs/reference/commands/slack_deploy.md
index 10f06f10..83d7d541 100644
--- a/docs/reference/commands/slack_deploy.md
+++ b/docs/reference/commands/slack_deploy.md
@@ -22,7 +22,6 @@ slack deploy [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_docs.md b/docs/reference/commands/slack_docs.md
index 3907c1e0..af1ffb58 100644
--- a/docs/reference/commands/slack_docs.md
+++ b/docs/reference/commands/slack_docs.md
@@ -19,7 +19,6 @@ slack docs [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_docs_search.md b/docs/reference/commands/slack_docs_search.md
index 317c39bb..564c6227 100644
--- a/docs/reference/commands/slack_docs_search.md
+++ b/docs/reference/commands/slack_docs_search.md
@@ -22,7 +22,6 @@ slack docs search [query] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_doctor.md b/docs/reference/commands/slack_doctor.md
index fff3a360..643e284e 100644
--- a/docs/reference/commands/slack_doctor.md
+++ b/docs/reference/commands/slack_doctor.md
@@ -28,7 +28,6 @@ slack doctor [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_env.md b/docs/reference/commands/slack_env.md
index 5f6d0434..2fa98cd9 100644
--- a/docs/reference/commands/slack_env.md
+++ b/docs/reference/commands/slack_env.md
@@ -27,7 +27,6 @@ slack env [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
@@ -42,8 +41,6 @@ slack env [flags]
## Examples
```
-# Initialize environment variables from a template file
-$ slack env init
$ slack env set MAGIC_PASSWORD abracadbra # Set an environment variable
# List all environment variables
@@ -54,7 +51,6 @@ $ slack env unset MAGIC_PASSWORD # Unset an environment variable
## See also
* [slack](slack) - Slack command-line tool
-* [slack env init](slack_env_init) - Initialize environment variables from a template file
* [slack env list](slack_env_list) - List all environment variables of the project
* [slack env set](slack_env_set) - Set an environment variable for the project
* [slack env unset](slack_env_unset) - Unset an environment variable from the project
diff --git a/docs/reference/commands/slack_env_init.md b/docs/reference/commands/slack_env_init.md
deleted file mode 100644
index ba5e9eae..00000000
--- a/docs/reference/commands/slack_env_init.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# `slack env init`
-
-Initialize environment variables from a template file
-
-## Description
-
-Initialize the project ".env" file by copying from an ".env" template file.
-
-Copies content from either the ".env.sample" or ".env.example" file to the
-project ".env" file if those project environment variables don't already exist.
-
-Apps using ROSI features should set environment variables with `slack env set`.
-
-```
-slack env init [flags]
-```
-
-## Flags
-
-```
- -h, --help help for init
-```
-
-## Global flags
-
-```
- --accessible use accessible prompts for screen readers
- -a, --app string use a specific app ID or environment
- --config-dir string use a custom path for system config directory
- -e, --experiment strings use the experiment(s) in the command
- -f, --force ignore warnings and continue executing command
- --no-color remove styles and formatting from outputs
- -s, --skip-update skip checking for latest version of CLI
- -w, --team string select workspace or organization by team name or ID
- --token string set the access token associated with a team
- -v, --verbose print debug logging and additional info
-```
-
-## Examples
-
-```
-$ slack env init # Initialize environment variables from a template file
-```
-
-## See also
-
-* [slack env](slack_env) - Set, unset, or list environment variables
-
diff --git a/docs/reference/commands/slack_env_list.md b/docs/reference/commands/slack_env_list.md
index 395faf57..7138e00c 100644
--- a/docs/reference/commands/slack_env_list.md
+++ b/docs/reference/commands/slack_env_list.md
@@ -25,7 +25,6 @@ slack env list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_env_set.md b/docs/reference/commands/slack_env_set.md
index ffea4254..170676de 100644
--- a/docs/reference/commands/slack_env_set.md
+++ b/docs/reference/commands/slack_env_set.md
@@ -28,7 +28,6 @@ slack env set [name] [value] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_env_unset.md b/docs/reference/commands/slack_env_unset.md
index d65f0a63..d8edf57f 100644
--- a/docs/reference/commands/slack_env_unset.md
+++ b/docs/reference/commands/slack_env_unset.md
@@ -28,7 +28,6 @@ slack env unset [name] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_external-auth.md b/docs/reference/commands/slack_external-auth.md
index 69a9a56e..bc9f9c71 100644
--- a/docs/reference/commands/slack_external-auth.md
+++ b/docs/reference/commands/slack_external-auth.md
@@ -24,7 +24,6 @@ slack external-auth [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_external-auth_add-secret.md b/docs/reference/commands/slack_external-auth_add-secret.md
index fcfd784e..b178e2ec 100644
--- a/docs/reference/commands/slack_external-auth_add-secret.md
+++ b/docs/reference/commands/slack_external-auth_add-secret.md
@@ -26,7 +26,6 @@ slack external-auth add-secret [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_external-auth_add.md b/docs/reference/commands/slack_external-auth_add.md
index dece833f..058ecfb9 100644
--- a/docs/reference/commands/slack_external-auth_add.md
+++ b/docs/reference/commands/slack_external-auth_add.md
@@ -23,7 +23,6 @@ slack external-auth add [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_external-auth_remove.md b/docs/reference/commands/slack_external-auth_remove.md
index a8bd6cb8..1548544d 100644
--- a/docs/reference/commands/slack_external-auth_remove.md
+++ b/docs/reference/commands/slack_external-auth_remove.md
@@ -27,7 +27,6 @@ slack external-auth remove [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_external-auth_select-auth.md b/docs/reference/commands/slack_external-auth_select-auth.md
index 3ce069a7..682b8cad 100644
--- a/docs/reference/commands/slack_external-auth_select-auth.md
+++ b/docs/reference/commands/slack_external-auth_select-auth.md
@@ -26,7 +26,6 @@ slack external-auth select-auth [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_feedback.md b/docs/reference/commands/slack_feedback.md
index 55369202..9c541c1c 100644
--- a/docs/reference/commands/slack_feedback.md
+++ b/docs/reference/commands/slack_feedback.md
@@ -24,7 +24,6 @@ slack feedback [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_function.md b/docs/reference/commands/slack_function.md
index 4edf70bc..bfef53ce 100644
--- a/docs/reference/commands/slack_function.md
+++ b/docs/reference/commands/slack_function.md
@@ -25,7 +25,6 @@ slack function [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_function_access.md b/docs/reference/commands/slack_function_access.md
index 0b7b443e..823ef35e 100644
--- a/docs/reference/commands/slack_function_access.md
+++ b/docs/reference/commands/slack_function_access.md
@@ -36,7 +36,6 @@ slack function access [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_init.md b/docs/reference/commands/slack_init.md
index 538dc36e..cc1c2bda 100644
--- a/docs/reference/commands/slack_init.md
+++ b/docs/reference/commands/slack_init.md
@@ -39,7 +39,6 @@ slack init [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_install.md b/docs/reference/commands/slack_install.md
index 2d63b971..be50b5dd 100644
--- a/docs/reference/commands/slack_install.md
+++ b/docs/reference/commands/slack_install.md
@@ -22,7 +22,6 @@ slack install [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_list.md b/docs/reference/commands/slack_list.md
index 797c3f5f..a6a3b307 100644
--- a/docs/reference/commands/slack_list.md
+++ b/docs/reference/commands/slack_list.md
@@ -19,7 +19,6 @@ slack list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_login.md b/docs/reference/commands/slack_login.md
index 4d2180e9..4187b969 100644
--- a/docs/reference/commands/slack_login.md
+++ b/docs/reference/commands/slack_login.md
@@ -23,7 +23,6 @@ slack login [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_logout.md b/docs/reference/commands/slack_logout.md
index de2a9b4d..9132ec8d 100644
--- a/docs/reference/commands/slack_logout.md
+++ b/docs/reference/commands/slack_logout.md
@@ -20,7 +20,6 @@ slack logout [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_manifest.md b/docs/reference/commands/slack_manifest.md
index 34ba8c2d..2104964d 100644
--- a/docs/reference/commands/slack_manifest.md
+++ b/docs/reference/commands/slack_manifest.md
@@ -27,7 +27,6 @@ slack manifest [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_manifest_info.md b/docs/reference/commands/slack_manifest_info.md
index 93364114..a2421b88 100644
--- a/docs/reference/commands/slack_manifest_info.md
+++ b/docs/reference/commands/slack_manifest_info.md
@@ -25,7 +25,6 @@ slack manifest info [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_manifest_validate.md b/docs/reference/commands/slack_manifest_validate.md
index 49ad078b..921a5ab5 100644
--- a/docs/reference/commands/slack_manifest_validate.md
+++ b/docs/reference/commands/slack_manifest_validate.md
@@ -19,7 +19,6 @@ slack manifest validate [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_platform.md b/docs/reference/commands/slack_platform.md
index b40b788f..dd3b3888 100644
--- a/docs/reference/commands/slack_platform.md
+++ b/docs/reference/commands/slack_platform.md
@@ -19,7 +19,6 @@ slack platform [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_platform_activity.md b/docs/reference/commands/slack_platform_activity.md
index 75facc44..5b866ea9 100644
--- a/docs/reference/commands/slack_platform_activity.md
+++ b/docs/reference/commands/slack_platform_activity.md
@@ -36,7 +36,6 @@ slack platform activity [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_platform_deploy.md b/docs/reference/commands/slack_platform_deploy.md
index e26ed90e..3d11f9e3 100644
--- a/docs/reference/commands/slack_platform_deploy.md
+++ b/docs/reference/commands/slack_platform_deploy.md
@@ -22,7 +22,6 @@ slack platform deploy [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_platform_run.md b/docs/reference/commands/slack_platform_run.md
index 34677798..3ed75494 100644
--- a/docs/reference/commands/slack_platform_run.md
+++ b/docs/reference/commands/slack_platform_run.md
@@ -25,7 +25,6 @@ slack platform run [app-file-path] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_project.md b/docs/reference/commands/slack_project.md
index 9395a3d0..44f657b4 100644
--- a/docs/reference/commands/slack_project.md
+++ b/docs/reference/commands/slack_project.md
@@ -25,7 +25,6 @@ slack project [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_project_create.md b/docs/reference/commands/slack_project_create.md
index 258c66e6..da4f7a66 100644
--- a/docs/reference/commands/slack_project_create.md
+++ b/docs/reference/commands/slack_project_create.md
@@ -27,7 +27,6 @@ slack project create [name | agent ] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_project_init.md b/docs/reference/commands/slack_project_init.md
index 63eb4b3e..e4e11785 100644
--- a/docs/reference/commands/slack_project_init.md
+++ b/docs/reference/commands/slack_project_init.md
@@ -39,7 +39,6 @@ slack project init [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_project_samples.md b/docs/reference/commands/slack_project_samples.md
index d8bf64f4..ff540d26 100644
--- a/docs/reference/commands/slack_project_samples.md
+++ b/docs/reference/commands/slack_project_samples.md
@@ -22,7 +22,6 @@ slack project samples [name] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_run.md b/docs/reference/commands/slack_run.md
index ccb59969..e0493848 100644
--- a/docs/reference/commands/slack_run.md
+++ b/docs/reference/commands/slack_run.md
@@ -25,7 +25,6 @@ slack run [app-file-path] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_samples.md b/docs/reference/commands/slack_samples.md
index 9127467d..be40e5af 100644
--- a/docs/reference/commands/slack_samples.md
+++ b/docs/reference/commands/slack_samples.md
@@ -22,7 +22,6 @@ slack samples [name] [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_sandbox.md b/docs/reference/commands/slack_sandbox.md
index e0eb4941..8c1dd364 100644
--- a/docs/reference/commands/slack_sandbox.md
+++ b/docs/reference/commands/slack_sandbox.md
@@ -14,7 +14,7 @@ New to the Developer Program? Sign up at
[https://api.slack.com/developer-program/join](https://api.slack.com/developer-program/join)
```
-slack sandbox [flags]
+slack sandbox [flags] --experiment=sandboxes
```
## Flags
@@ -26,7 +26,6 @@ slack sandbox [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_sandbox_create.md b/docs/reference/commands/slack_sandbox_create.md
index 21ae046c..54921b52 100644
--- a/docs/reference/commands/slack_sandbox_create.md
+++ b/docs/reference/commands/slack_sandbox_create.md
@@ -29,7 +29,6 @@ slack sandbox create [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_sandbox_delete.md b/docs/reference/commands/slack_sandbox_delete.md
index e93f7c20..080f6e24 100644
--- a/docs/reference/commands/slack_sandbox_delete.md
+++ b/docs/reference/commands/slack_sandbox_delete.md
@@ -21,7 +21,6 @@ slack sandbox delete [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_sandbox_list.md b/docs/reference/commands/slack_sandbox_list.md
index 870297e4..e144a11d 100644
--- a/docs/reference/commands/slack_sandbox_list.md
+++ b/docs/reference/commands/slack_sandbox_list.md
@@ -23,7 +23,6 @@ slack sandbox list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger.md b/docs/reference/commands/slack_trigger.md
index e8706b22..05ba3463 100644
--- a/docs/reference/commands/slack_trigger.md
+++ b/docs/reference/commands/slack_trigger.md
@@ -19,7 +19,6 @@ slack trigger [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger_access.md b/docs/reference/commands/slack_trigger_access.md
index 80bb4cef..f44386b1 100644
--- a/docs/reference/commands/slack_trigger_access.md
+++ b/docs/reference/commands/slack_trigger_access.md
@@ -33,7 +33,6 @@ slack trigger access --trigger-id [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger_create.md b/docs/reference/commands/slack_trigger_create.md
index 79c6b413..59971143 100644
--- a/docs/reference/commands/slack_trigger_create.md
+++ b/docs/reference/commands/slack_trigger_create.md
@@ -37,7 +37,6 @@ slack trigger create [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger_delete.md b/docs/reference/commands/slack_trigger_delete.md
index 7908f989..e43cca83 100644
--- a/docs/reference/commands/slack_trigger_delete.md
+++ b/docs/reference/commands/slack_trigger_delete.md
@@ -20,7 +20,6 @@ slack trigger delete --trigger-id [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger_info.md b/docs/reference/commands/slack_trigger_info.md
index 94c56e67..12064e01 100644
--- a/docs/reference/commands/slack_trigger_info.md
+++ b/docs/reference/commands/slack_trigger_info.md
@@ -20,7 +20,6 @@ slack trigger info --trigger-id [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger_list.md b/docs/reference/commands/slack_trigger_list.md
index 7c68132c..4bec07f6 100644
--- a/docs/reference/commands/slack_trigger_list.md
+++ b/docs/reference/commands/slack_trigger_list.md
@@ -21,7 +21,6 @@ slack trigger list [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_trigger_update.md b/docs/reference/commands/slack_trigger_update.md
index 5dba6791..d4f0c0c1 100644
--- a/docs/reference/commands/slack_trigger_update.md
+++ b/docs/reference/commands/slack_trigger_update.md
@@ -36,7 +36,6 @@ slack trigger update --trigger-id [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_uninstall.md b/docs/reference/commands/slack_uninstall.md
index 2bfe407e..0fa31872 100644
--- a/docs/reference/commands/slack_uninstall.md
+++ b/docs/reference/commands/slack_uninstall.md
@@ -19,7 +19,6 @@ slack uninstall [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_upgrade.md b/docs/reference/commands/slack_upgrade.md
index 19b0bec7..60db40ad 100644
--- a/docs/reference/commands/slack_upgrade.md
+++ b/docs/reference/commands/slack_upgrade.md
@@ -23,7 +23,6 @@ slack upgrade [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/commands/slack_version.md b/docs/reference/commands/slack_version.md
index fb889698..e049be3e 100644
--- a/docs/reference/commands/slack_version.md
+++ b/docs/reference/commands/slack_version.md
@@ -39,7 +39,6 @@ slack version [flags]
## Global flags
```
- --accessible use accessible prompts for screen readers
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
diff --git a/docs/reference/errors.md b/docs/reference/errors.md
index 5a0a3b44..551f9fa1 100644
--- a/docs/reference/errors.md
+++ b/docs/reference/errors.md
@@ -510,24 +510,12 @@ Approval is pending review
---
-### domain_long {#domain_long}
-
-**Message**: Sandbox name or domain is too long
-
----
-
### domain_taken {#domain_taken}
**Message**: This domain has been claimed by another sandbox
---
-### dotenv_file_already_exists {#dotenv_file_already_exists}
-
-**Message**: A .env file already exists
-
----
-
### dotenv_file_parse_error {#dotenv_file_parse_error}
**Message**: Failed to parse the .env file
@@ -546,12 +534,6 @@ Approval is pending review
---
-### dotenv_placeholder_not_found {#dotenv_placeholder_not_found}
-
-**Message**: No .env template file was found for environment variables
-
----
-
### dotenv_var_marshal_error {#dotenv_var_marshal_error}
**Message**: Failed to marshal the .env variable