Skip to content

Commit dbcf370

Browse files
committed
docs: prioritize universal install script as primary installation method
- Make curl https://vapi.ai/install.sh the recommended installation method - Reorganize other methods as alternatives under Package Managers - Update release template to match new installation priority
1 parent a78d099 commit dbcf370

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

.goreleaser.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,30 +84,30 @@ release:
8484
8585
### Installation
8686
87-
#### npm (Cross-platform)
87+
#### Universal Install Script (Recommended)
8888
```bash
89-
npm install -g @vapi-ai/cli
89+
curl -sSL https://vapi.ai/install.sh | bash
9090
```
9191
92-
#### Homebrew (macOS/Linux)
92+
#### Package Managers
9393
```bash
94+
# npm
95+
npm install -g @vapi-ai/cli
96+
97+
# Homebrew (macOS/Linux)
9498
brew tap vapi/tap && brew install vapi-cli
95-
```
9699
97-
#### Scoop (Windows)
98-
```powershell
99-
scoop bucket add vapi https://github.com/VapiAI/scoop-bucket
100-
scoop install vapi-cli
100+
# Scoop (Windows)
101+
scoop bucket add vapi https://github.com/VapiAI/scoop-bucket && scoop install vapi-cli
101102
```
102103
103104
#### Docker
104105
```bash
105106
docker run -it ghcr.io/vapiai/cli:latest --help
106107
```
107108
108-
#### Direct Download
109+
#### Manual Download
109110
```bash
110-
# macOS/Linux
111111
curl -sSL https://github.com/VapiAI/cli/releases/download/v{{.Version}}/cli_$(uname -s)_$(uname -m).tar.gz | tar xz
112112
sudo mv vapi /usr/local/bin
113113
```

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,30 @@ The official command-line interface for [Vapi](https://vapi.ai) - Voice AI for d
2323

2424
## Installation
2525

26-
### npm (Cross-platform)
26+
### Universal Install Script (Recommended)
27+
28+
```bash
29+
curl -sSL https://vapi.ai/install.sh | bash
30+
```
31+
32+
This script automatically detects your platform and installs the latest version.
33+
34+
### Package Managers
35+
36+
#### npm (Cross-platform)
2737

2838
```bash
2939
npm install -g @vapi-ai/cli
3040
```
3141

32-
### Homebrew (macOS/Linux)
42+
#### Homebrew (macOS/Linux)
3343

3444
```bash
3545
brew tap vapi/tap
3646
brew install vapi-cli
3747
```
3848

39-
### Scoop (Windows)
49+
#### Scoop (Windows)
4050

4151
```powershell
4252
scoop bucket add vapi https://github.com/VapiAI/scoop-bucket
@@ -53,7 +63,7 @@ docker run -it ghcr.io/vapiai/cli:latest --help
5363
docker run -it -v ~/.vapi-cli.yaml:/home/vapi/.vapi-cli.yaml ghcr.io/vapiai/cli:latest assistant list
5464
```
5565

56-
### Direct Download
66+
### Manual Download
5767

5868
Download pre-built binaries from [GitHub Releases](https://github.com/VapiAI/cli/releases):
5969

0 commit comments

Comments
 (0)