Skip to content

Commit 7bd09ea

Browse files
authored
fix(create-slack-app): drop --experiment=sandboxes flag (#87)
* fix(create-slack-app): drop --experiment=sandboxes flag The `sandboxes` experiment was removed from `slackapi/slack-cli` — the flag is no longer registered (`internal/experiment/experiment.go`) and none of the `cmd/sandbox/*` commands gate on it. Passing `--experiment=sandboxes` is dead weight, and copy/pasting it into a modern CLI just adds noise. Uses plain `slack sandbox list` and `slack sandbox create` in the skill. * chore: add changeset for sandbox experiment flag removal
1 parent cc8d442 commit 7bd09ea

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"slack": patch
3+
---
4+
5+
Drop the `--experiment=sandboxes` flag from `slack sandbox` invocations in the `create-slack-app` skill. The experiment has been removed from `slack-cli`, so the flag now surfaces an unknown-experiment warning that can confuse users and agents.

skills/create-slack-app/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ Wait for confirmation that authentication succeeded before proceeding.
4141

4242
## Step 3: Set Up a Developer Sandbox
4343

44-
Run `SLACK_CMD sandbox list --experiment=sandboxes` to check if the developer already has a sandbox.
44+
Run `SLACK_CMD sandbox list` to check if the developer already has a sandbox.
4545

4646
- **If a sandbox exists**: Show it and confirm they want to use it.
4747
- **If no sandbox exists**: Tell the developer to create one:
4848

4949
```text
50-
! SLACK_CMD sandbox create --experiment=sandboxes
50+
! SLACK_CMD sandbox create
5151
```
5252

5353
Alternatively, they can create one at <https://api.slack.com/developer-program/sandboxes> or join the Developer Program at <https://api.slack.com/developer-program/join>.

0 commit comments

Comments
 (0)