@@ -82,21 +82,14 @@ release:
82
82
83
83
### Installation
84
84
85
- #### Universal Install Script (Recommended)
85
+ #### Unix/Linux/macOS
86
86
```bash
87
87
curl -sSL https://vapi.ai/install.sh | bash
88
88
```
89
89
90
- #### Package Managers
91
- ```bash
92
- # npm
93
- npm install -g @vapi-ai/cli
94
-
95
- # Homebrew (macOS/Linux)
96
- brew tap VapiAI/homebrew-tap && brew install vapi-cli
97
-
98
- # Scoop (Windows)
99
- scoop bucket add vapi https://github.com/VapiAI/scoop-bucket && scoop install vapi-cli
90
+ #### Windows
91
+ ```powershell
92
+ iex ((New-Object System.Net.WebClient).DownloadString('https://vapi.ai/install.ps1'))
100
93
```
101
94
102
95
#### Docker
@@ -117,34 +110,7 @@ release:
117
110
118
111
_Built with ❤️ by the Vapi team_
119
112
120
- # Homebrew tap configuration
121
- brews :
122
- - repository :
123
- owner : VapiAI
124
- name : homebrew-tap
125
- branch : main
126
- name : vapi-cli
127
- homepage : " https://vapi.ai"
128
- description : " Voice AI for developers - Vapi CLI"
129
- license : " MIT"
130
- test : |
131
- system "#{bin}/vapi", "--version"
132
- install : |
133
- bin.install "vapi"
134
- skip_upload : false
135
-
136
- # Scoop bucket configuration (for Windows users)
137
- scoops :
138
- - repository :
139
- owner : VapiAI
140
- name : scoop-bucket
141
- branch : main
142
- directory : bucket
143
- name : vapi-cli
144
- homepage : " https://vapi.ai"
145
- description : " Voice AI for developers - Vapi CLI"
146
- license : MIT
147
- skip_upload : false
113
+ # Package managers removed - using install scripts instead
148
114
149
115
# Docker images (containerized usage)
150
116
dockers :
@@ -169,10 +135,9 @@ announce:
169
135
message_template : |
170
136
🚀 **Vapi CLI {{.Tag}} Released!**
171
137
172
- 📦 **Distribution:**
173
- • Universal: `curl -sSL https://vapi.ai/install.sh | bash`
174
- • npm: `npm install -g @vapi-ai/cli`
175
- • Homebrew: `brew tap VapiAI/homebrew-tap && brew install vapi-cli`
138
+ 📦 **Installation:**
139
+ • Unix/Linux/macOS: `curl -sSL https://vapi.ai/install.sh | bash`
140
+ • Windows: `iex ((New-Object System.Net.WebClient).DownloadString('https://vapi.ai/install.ps1'))`
176
141
• Docker: `docker run -it ghcr.io/vapiai/cli:{{.Tag}} --help`
177
142
178
143
🔗 **Links:**
0 commit comments