deepctl 0.2.0__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deepctl
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Official Deepgram CLI for speech recognition and audio intelligence
5
5
  Author-email: Deepgram <devrel@deepgram.com>
6
6
  Maintainer-email: Deepgram <devrel@deepgram.com>
@@ -43,6 +43,14 @@ Requires-Dist: deepctl-cmd-update>=0.1.10
43
43
  Requires-Dist: deepctl-cmd-plugin>=0.1.10
44
44
  Requires-Dist: deepctl-cmd-skills>=0.0.1
45
45
  Requires-Dist: deepctl-cmd-init>=0.0.1
46
+ Requires-Dist: deepctl-cmd-models>=0.0.1
47
+ Requires-Dist: deepctl-cmd-speak>=0.0.1
48
+ Requires-Dist: deepctl-cmd-keys>=0.0.1
49
+ Requires-Dist: deepctl-cmd-read>=0.0.1
50
+ Requires-Dist: deepctl-cmd-listen>=0.0.1
51
+ Requires-Dist: deepctl-cmd-requests>=0.0.1
52
+ Requires-Dist: deepctl-cmd-billing>=0.0.1
53
+ Requires-Dist: deepctl-cmd-members>=0.0.1
46
54
  Requires-Dist: deepctl-shared-utils>=0.1.10
47
55
  Requires-Dist: pydantic>=2.0.0
48
56
  Requires-Dist: rich>=13.0.0
@@ -113,6 +121,7 @@ cli/
113
121
  ├── src/deepctl/ # Main CLI entry point
114
122
  ├── packages/
115
123
  │ ├── deepctl-cmd-api/ # API command for deepctl
124
+ │ ├── deepctl-cmd-billing/ # Billing command for deepctl
116
125
  │ ├── deepctl-cmd-debug/ # Debug command group for deepctl
117
126
  │ ├── deepctl-cmd-debug-audio/ # Audio debug subcommand for deepctl
118
127
  │ ├── deepctl-cmd-debug-browser/ # Browser debug subcommand for deepctl
@@ -120,11 +129,18 @@ cli/
120
129
  │ ├── deepctl-cmd-debug-probe/ # Debug probe subcommand for deepctl — live ffprobe analysis during streaming
121
130
  │ ├── deepctl-cmd-ffprobe/ # FFprobe configuration command for deepctl
122
131
  │ ├── deepctl-cmd-init/ # Init command for deepctl — scaffold Deepgram starter apps
132
+ │ ├── deepctl-cmd-keys/ # API keys management command for deepctl
133
+ │ ├── deepctl-cmd-listen/ # Listen (live speech-to-text) command for deepctl
123
134
  │ ├── deepctl-cmd-login/ # Login command for deepctl
124
135
  │ ├── deepctl-cmd-mcp/ # MCP proxy command for deepctl — connects to Deepgram's developer API
136
+ │ ├── deepctl-cmd-members/ # Members management command for deepctl
137
+ │ ├── deepctl-cmd-models/ # Models command for deepctl
125
138
  │ ├── deepctl-cmd-plugin/ # Plugin management command for deepctl
126
139
  │ ├── deepctl-cmd-projects/ # Projects command for deepctl
140
+ │ ├── deepctl-cmd-read/ # Read (text intelligence) command for deepctl
141
+ │ ├── deepctl-cmd-requests/ # Requests history command for deepctl
127
142
  │ ├── deepctl-cmd-skills/ # AI coding assistant skill management for deepctl
143
+ │ ├── deepctl-cmd-speak/ # Speak (text-to-speech) command for deepctl
128
144
  │ ├── deepctl-cmd-transcribe/ # Transcribe command for deepctl
129
145
  │ ├── deepctl-cmd-update/ # Update command for deepctl
130
146
  │ ├── deepctl-cmd-usage/ # Usage command for deepctl
@@ -170,19 +186,56 @@ Merging conventional commits to `main` triggers [release-please](https://github.
170
186
 
171
187
  ## Installation
172
188
 
173
- ### Try Without Installing
189
+ ### Quick Install
190
+
191
+ **macOS / Linux:**
174
192
 
175
193
  ```bash
176
- uv run deepctl --help
177
- pipx run deepctl --help
194
+ curl -fsSL https://deepgram.com/install.sh | sh
195
+ ```
196
+
197
+ **Windows (PowerShell):**
198
+
199
+ ```powershell
200
+ iwr https://deepgram.com/install.ps1 -useb | iex
178
201
  ```
179
202
 
180
- ### {WIP} Install
203
+ ### Install Options
204
+
205
+ ```bash
206
+ # Install a specific version
207
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- v0.2.1
208
+
209
+ # Force reinstall over existing installation
210
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- --force
211
+
212
+ # Both
213
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- --force v0.2.1
214
+ ```
215
+
216
+ **Windows (PowerShell):**
217
+
218
+ ```powershell
219
+ # Install a specific version
220
+ $env:DEEPCTL_VERSION='0.2.1'; iwr https://deepgram.com/install.ps1 -useb | iex
221
+
222
+ # Force reinstall
223
+ $env:DEEPCTL_FORCE='1'; iwr https://deepgram.com/install.ps1 -useb | iex
224
+ ```
225
+
226
+ ### Other Methods
181
227
 
182
228
  ```bash
183
- pip install deepctl
184
229
  uv tool install deepctl
185
- brew install deepctl
230
+ pip install deepctl
231
+ pipx install deepctl
232
+ ```
233
+
234
+ ### Try Without Installing
235
+
236
+ ```bash
237
+ uv run deepctl --help
238
+ pipx run deepctl --help
186
239
  ```
187
240
 
188
241
  ## Usage
@@ -193,6 +246,7 @@ brew install deepctl
193
246
  | Command | Description |
194
247
  |---------|-------------|
195
248
  | `deepctl api` | API command for deepctl |
249
+ | `deepctl billing` | Billing command for deepctl |
196
250
  | `deepctl debug audio` | Audio debug subcommand for deepctl |
197
251
  | `deepctl debug browser` | Browser debug subcommand for deepctl |
198
252
  | `deepctl debug network` | Network debug subcommand for deepctl |
@@ -200,13 +254,20 @@ brew install deepctl
200
254
  | `deepctl debug` | Debug command group for deepctl |
201
255
  | `deepctl ffprobe` | FFprobe configuration command for deepctl |
202
256
  | `deepctl init` | Init command for deepctl — scaffold Deepgram starter apps |
257
+ | `deepctl keys` | API keys management command for deepctl |
258
+ | `deepctl listen` | Listen (live speech-to-text) command for deepctl |
203
259
  | `deepctl login` | Login command for deepctl |
204
260
  | `deepctl logout` | Login command for deepctl |
205
261
  | `deepctl mcp` | MCP proxy command for deepctl — connects to Deepgram's developer API |
262
+ | `deepctl members` | Members management command for deepctl |
263
+ | `deepctl models` | Models command for deepctl |
206
264
  | `deepctl plugin` | Plugin management command for deepctl |
207
265
  | `deepctl profiles` | Login command for deepctl |
208
266
  | `deepctl projects` | Projects command for deepctl |
267
+ | `deepctl read` | Read (text intelligence) command for deepctl |
268
+ | `deepctl requests` | Requests history command for deepctl |
209
269
  | `deepctl skills` | AI coding assistant skill management for deepctl |
270
+ | `deepctl speak` | Speak (text-to-speech) command for deepctl |
210
271
  | `deepctl transcribe` | Transcribe command for deepctl |
211
272
  | `deepctl update` | Update command for deepctl |
212
273
  | `deepctl usage` | Usage command for deepctl |
@@ -282,6 +343,7 @@ See [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) for full setup instructions in
282
343
  | Package | Description |
283
344
  |---------|-------------|
284
345
  | [`deepctl-cmd-api`](packages/deepctl-cmd-api) | API command for deepctl |
346
+ | [`deepctl-cmd-billing`](packages/deepctl-cmd-billing) | Billing command for deepctl |
285
347
  | [`deepctl-cmd-debug`](packages/deepctl-cmd-debug) | Debug command group for deepctl |
286
348
  | [`deepctl-cmd-debug-audio`](packages/deepctl-cmd-debug-audio) | Audio debug subcommand for deepctl |
287
349
  | [`deepctl-cmd-debug-browser`](packages/deepctl-cmd-debug-browser) | Browser debug subcommand for deepctl |
@@ -289,11 +351,18 @@ See [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) for full setup instructions in
289
351
  | [`deepctl-cmd-debug-probe`](packages/deepctl-cmd-debug-probe) | Debug probe subcommand for deepctl — live ffprobe analysis during streaming |
290
352
  | [`deepctl-cmd-ffprobe`](packages/deepctl-cmd-ffprobe) | FFprobe configuration command for deepctl |
291
353
  | [`deepctl-cmd-init`](packages/deepctl-cmd-init) | Init command for deepctl — scaffold Deepgram starter apps |
354
+ | [`deepctl-cmd-keys`](packages/deepctl-cmd-keys) | API keys management command for deepctl |
355
+ | [`deepctl-cmd-listen`](packages/deepctl-cmd-listen) | Listen (live speech-to-text) command for deepctl |
292
356
  | [`deepctl-cmd-login`](packages/deepctl-cmd-login) | Login command for deepctl |
293
357
  | [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) | MCP proxy command for deepctl — connects to Deepgram's developer API |
358
+ | [`deepctl-cmd-members`](packages/deepctl-cmd-members) | Members management command for deepctl |
359
+ | [`deepctl-cmd-models`](packages/deepctl-cmd-models) | Models command for deepctl |
294
360
  | [`deepctl-cmd-plugin`](packages/deepctl-cmd-plugin) | Plugin management command for deepctl |
295
361
  | [`deepctl-cmd-projects`](packages/deepctl-cmd-projects) | Projects command for deepctl |
362
+ | [`deepctl-cmd-read`](packages/deepctl-cmd-read) | Read (text intelligence) command for deepctl |
363
+ | [`deepctl-cmd-requests`](packages/deepctl-cmd-requests) | Requests history command for deepctl |
296
364
  | [`deepctl-cmd-skills`](packages/deepctl-cmd-skills) | AI coding assistant skill management for deepctl |
365
+ | [`deepctl-cmd-speak`](packages/deepctl-cmd-speak) | Speak (text-to-speech) command for deepctl |
297
366
  | [`deepctl-cmd-transcribe`](packages/deepctl-cmd-transcribe) | Transcribe command for deepctl |
298
367
  | [`deepctl-cmd-update`](packages/deepctl-cmd-update) | Update command for deepctl |
299
368
  | [`deepctl-cmd-usage`](packages/deepctl-cmd-usage) | Usage command for deepctl |
@@ -44,6 +44,7 @@ cli/
44
44
  ├── src/deepctl/ # Main CLI entry point
45
45
  ├── packages/
46
46
  │ ├── deepctl-cmd-api/ # API command for deepctl
47
+ │ ├── deepctl-cmd-billing/ # Billing command for deepctl
47
48
  │ ├── deepctl-cmd-debug/ # Debug command group for deepctl
48
49
  │ ├── deepctl-cmd-debug-audio/ # Audio debug subcommand for deepctl
49
50
  │ ├── deepctl-cmd-debug-browser/ # Browser debug subcommand for deepctl
@@ -51,11 +52,18 @@ cli/
51
52
  │ ├── deepctl-cmd-debug-probe/ # Debug probe subcommand for deepctl — live ffprobe analysis during streaming
52
53
  │ ├── deepctl-cmd-ffprobe/ # FFprobe configuration command for deepctl
53
54
  │ ├── deepctl-cmd-init/ # Init command for deepctl — scaffold Deepgram starter apps
55
+ │ ├── deepctl-cmd-keys/ # API keys management command for deepctl
56
+ │ ├── deepctl-cmd-listen/ # Listen (live speech-to-text) command for deepctl
54
57
  │ ├── deepctl-cmd-login/ # Login command for deepctl
55
58
  │ ├── deepctl-cmd-mcp/ # MCP proxy command for deepctl — connects to Deepgram's developer API
59
+ │ ├── deepctl-cmd-members/ # Members management command for deepctl
60
+ │ ├── deepctl-cmd-models/ # Models command for deepctl
56
61
  │ ├── deepctl-cmd-plugin/ # Plugin management command for deepctl
57
62
  │ ├── deepctl-cmd-projects/ # Projects command for deepctl
63
+ │ ├── deepctl-cmd-read/ # Read (text intelligence) command for deepctl
64
+ │ ├── deepctl-cmd-requests/ # Requests history command for deepctl
58
65
  │ ├── deepctl-cmd-skills/ # AI coding assistant skill management for deepctl
66
+ │ ├── deepctl-cmd-speak/ # Speak (text-to-speech) command for deepctl
59
67
  │ ├── deepctl-cmd-transcribe/ # Transcribe command for deepctl
60
68
  │ ├── deepctl-cmd-update/ # Update command for deepctl
61
69
  │ ├── deepctl-cmd-usage/ # Usage command for deepctl
@@ -101,19 +109,56 @@ Merging conventional commits to `main` triggers [release-please](https://github.
101
109
 
102
110
  ## Installation
103
111
 
104
- ### Try Without Installing
112
+ ### Quick Install
113
+
114
+ **macOS / Linux:**
105
115
 
106
116
  ```bash
107
- uv run deepctl --help
108
- pipx run deepctl --help
117
+ curl -fsSL https://deepgram.com/install.sh | sh
118
+ ```
119
+
120
+ **Windows (PowerShell):**
121
+
122
+ ```powershell
123
+ iwr https://deepgram.com/install.ps1 -useb | iex
109
124
  ```
110
125
 
111
- ### {WIP} Install
126
+ ### Install Options
127
+
128
+ ```bash
129
+ # Install a specific version
130
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- v0.2.1
131
+
132
+ # Force reinstall over existing installation
133
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- --force
134
+
135
+ # Both
136
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- --force v0.2.1
137
+ ```
138
+
139
+ **Windows (PowerShell):**
140
+
141
+ ```powershell
142
+ # Install a specific version
143
+ $env:DEEPCTL_VERSION='0.2.1'; iwr https://deepgram.com/install.ps1 -useb | iex
144
+
145
+ # Force reinstall
146
+ $env:DEEPCTL_FORCE='1'; iwr https://deepgram.com/install.ps1 -useb | iex
147
+ ```
148
+
149
+ ### Other Methods
112
150
 
113
151
  ```bash
114
- pip install deepctl
115
152
  uv tool install deepctl
116
- brew install deepctl
153
+ pip install deepctl
154
+ pipx install deepctl
155
+ ```
156
+
157
+ ### Try Without Installing
158
+
159
+ ```bash
160
+ uv run deepctl --help
161
+ pipx run deepctl --help
117
162
  ```
118
163
 
119
164
  ## Usage
@@ -124,6 +169,7 @@ brew install deepctl
124
169
  | Command | Description |
125
170
  |---------|-------------|
126
171
  | `deepctl api` | API command for deepctl |
172
+ | `deepctl billing` | Billing command for deepctl |
127
173
  | `deepctl debug audio` | Audio debug subcommand for deepctl |
128
174
  | `deepctl debug browser` | Browser debug subcommand for deepctl |
129
175
  | `deepctl debug network` | Network debug subcommand for deepctl |
@@ -131,13 +177,20 @@ brew install deepctl
131
177
  | `deepctl debug` | Debug command group for deepctl |
132
178
  | `deepctl ffprobe` | FFprobe configuration command for deepctl |
133
179
  | `deepctl init` | Init command for deepctl — scaffold Deepgram starter apps |
180
+ | `deepctl keys` | API keys management command for deepctl |
181
+ | `deepctl listen` | Listen (live speech-to-text) command for deepctl |
134
182
  | `deepctl login` | Login command for deepctl |
135
183
  | `deepctl logout` | Login command for deepctl |
136
184
  | `deepctl mcp` | MCP proxy command for deepctl — connects to Deepgram's developer API |
185
+ | `deepctl members` | Members management command for deepctl |
186
+ | `deepctl models` | Models command for deepctl |
137
187
  | `deepctl plugin` | Plugin management command for deepctl |
138
188
  | `deepctl profiles` | Login command for deepctl |
139
189
  | `deepctl projects` | Projects command for deepctl |
190
+ | `deepctl read` | Read (text intelligence) command for deepctl |
191
+ | `deepctl requests` | Requests history command for deepctl |
140
192
  | `deepctl skills` | AI coding assistant skill management for deepctl |
193
+ | `deepctl speak` | Speak (text-to-speech) command for deepctl |
141
194
  | `deepctl transcribe` | Transcribe command for deepctl |
142
195
  | `deepctl update` | Update command for deepctl |
143
196
  | `deepctl usage` | Usage command for deepctl |
@@ -213,6 +266,7 @@ See [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) for full setup instructions in
213
266
  | Package | Description |
214
267
  |---------|-------------|
215
268
  | [`deepctl-cmd-api`](packages/deepctl-cmd-api) | API command for deepctl |
269
+ | [`deepctl-cmd-billing`](packages/deepctl-cmd-billing) | Billing command for deepctl |
216
270
  | [`deepctl-cmd-debug`](packages/deepctl-cmd-debug) | Debug command group for deepctl |
217
271
  | [`deepctl-cmd-debug-audio`](packages/deepctl-cmd-debug-audio) | Audio debug subcommand for deepctl |
218
272
  | [`deepctl-cmd-debug-browser`](packages/deepctl-cmd-debug-browser) | Browser debug subcommand for deepctl |
@@ -220,11 +274,18 @@ See [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) for full setup instructions in
220
274
  | [`deepctl-cmd-debug-probe`](packages/deepctl-cmd-debug-probe) | Debug probe subcommand for deepctl — live ffprobe analysis during streaming |
221
275
  | [`deepctl-cmd-ffprobe`](packages/deepctl-cmd-ffprobe) | FFprobe configuration command for deepctl |
222
276
  | [`deepctl-cmd-init`](packages/deepctl-cmd-init) | Init command for deepctl — scaffold Deepgram starter apps |
277
+ | [`deepctl-cmd-keys`](packages/deepctl-cmd-keys) | API keys management command for deepctl |
278
+ | [`deepctl-cmd-listen`](packages/deepctl-cmd-listen) | Listen (live speech-to-text) command for deepctl |
223
279
  | [`deepctl-cmd-login`](packages/deepctl-cmd-login) | Login command for deepctl |
224
280
  | [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) | MCP proxy command for deepctl — connects to Deepgram's developer API |
281
+ | [`deepctl-cmd-members`](packages/deepctl-cmd-members) | Members management command for deepctl |
282
+ | [`deepctl-cmd-models`](packages/deepctl-cmd-models) | Models command for deepctl |
225
283
  | [`deepctl-cmd-plugin`](packages/deepctl-cmd-plugin) | Plugin management command for deepctl |
226
284
  | [`deepctl-cmd-projects`](packages/deepctl-cmd-projects) | Projects command for deepctl |
285
+ | [`deepctl-cmd-read`](packages/deepctl-cmd-read) | Read (text intelligence) command for deepctl |
286
+ | [`deepctl-cmd-requests`](packages/deepctl-cmd-requests) | Requests history command for deepctl |
227
287
  | [`deepctl-cmd-skills`](packages/deepctl-cmd-skills) | AI coding assistant skill management for deepctl |
288
+ | [`deepctl-cmd-speak`](packages/deepctl-cmd-speak) | Speak (text-to-speech) command for deepctl |
228
289
  | [`deepctl-cmd-transcribe`](packages/deepctl-cmd-transcribe) | Transcribe command for deepctl |
229
290
  | [`deepctl-cmd-update`](packages/deepctl-cmd-update) | Update command for deepctl |
230
291
  | [`deepctl-cmd-usage`](packages/deepctl-cmd-usage) | Usage command for deepctl |
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "deepctl"
7
- version = "0.2.0" # x-release-please-version
7
+ version = "0.2.2" # x-release-please-version
8
8
  description = "Official Deepgram CLI for speech recognition and audio intelligence"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -52,6 +52,14 @@ dependencies = [
52
52
  "deepctl-cmd-plugin>=0.1.10",
53
53
  "deepctl-cmd-skills>=0.0.1",
54
54
  "deepctl-cmd-init>=0.0.1",
55
+ "deepctl-cmd-models>=0.0.1",
56
+ "deepctl-cmd-speak>=0.0.1",
57
+ "deepctl-cmd-keys>=0.0.1",
58
+ "deepctl-cmd-read>=0.0.1",
59
+ "deepctl-cmd-listen>=0.0.1",
60
+ "deepctl-cmd-requests>=0.0.1",
61
+ "deepctl-cmd-billing>=0.0.1",
62
+ "deepctl-cmd-members>=0.0.1",
55
63
  "deepctl-shared-utils>=0.1.10",
56
64
  "pydantic>=2.0.0",
57
65
  "rich>=13.0.0",
@@ -121,6 +129,11 @@ module = "deepctl_cmd_mcp.*"
121
129
  # MCP SDK type stubs are incomplete (decorators, transport parameters)
122
130
  disable_error_code = ["call-arg", "no-untyped-call", "no-untyped-def", "untyped-decorator", "misc"]
123
131
 
132
+ [[tool.mypy.overrides]]
133
+ module = ["sounddevice", "sounddevice.*", "numpy", "numpy.*"]
134
+ # Optional microphone dependencies — no type stubs available
135
+ ignore_missing_imports = true
136
+
124
137
  [tool.pytest.ini_options]
125
138
  testpaths = ["tests", "packages/*/tests"]
126
139
  python_files = ["test_*.py", "*_test.py"]
@@ -179,6 +192,14 @@ deepctl-cmd-update = { workspace = true }
179
192
  deepctl-cmd-plugin = { workspace = true }
180
193
  deepctl-cmd-skills = { workspace = true }
181
194
  deepctl-cmd-init = { workspace = true }
195
+ deepctl-cmd-models = { workspace = true }
196
+ deepctl-cmd-speak = { workspace = true }
197
+ deepctl-cmd-keys = { workspace = true }
198
+ deepctl-cmd-read = { workspace = true }
199
+ deepctl-cmd-listen = { workspace = true }
200
+ deepctl-cmd-requests = { workspace = true }
201
+ deepctl-cmd-billing = { workspace = true }
202
+ deepctl-cmd-members = { workspace = true }
182
203
  deepctl-shared-utils = { workspace = true }
183
204
  deepctl-plugin-example = { workspace = true }
184
205
 
@@ -1,7 +1,7 @@
1
1
  """deepctl - Official command-line interface for Deepgram's speech
2
2
  recognition API."""
3
3
 
4
- __version__ = "0.2.0" # x-release-please-version
4
+ __version__ = "0.2.2" # x-release-please-version
5
5
  __author__ = "Deepgram"
6
6
  __email__ = "devrel@deepgram.com"
7
7
  __license__ = "MIT"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deepctl
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Official Deepgram CLI for speech recognition and audio intelligence
5
5
  Author-email: Deepgram <devrel@deepgram.com>
6
6
  Maintainer-email: Deepgram <devrel@deepgram.com>
@@ -43,6 +43,14 @@ Requires-Dist: deepctl-cmd-update>=0.1.10
43
43
  Requires-Dist: deepctl-cmd-plugin>=0.1.10
44
44
  Requires-Dist: deepctl-cmd-skills>=0.0.1
45
45
  Requires-Dist: deepctl-cmd-init>=0.0.1
46
+ Requires-Dist: deepctl-cmd-models>=0.0.1
47
+ Requires-Dist: deepctl-cmd-speak>=0.0.1
48
+ Requires-Dist: deepctl-cmd-keys>=0.0.1
49
+ Requires-Dist: deepctl-cmd-read>=0.0.1
50
+ Requires-Dist: deepctl-cmd-listen>=0.0.1
51
+ Requires-Dist: deepctl-cmd-requests>=0.0.1
52
+ Requires-Dist: deepctl-cmd-billing>=0.0.1
53
+ Requires-Dist: deepctl-cmd-members>=0.0.1
46
54
  Requires-Dist: deepctl-shared-utils>=0.1.10
47
55
  Requires-Dist: pydantic>=2.0.0
48
56
  Requires-Dist: rich>=13.0.0
@@ -113,6 +121,7 @@ cli/
113
121
  ├── src/deepctl/ # Main CLI entry point
114
122
  ├── packages/
115
123
  │ ├── deepctl-cmd-api/ # API command for deepctl
124
+ │ ├── deepctl-cmd-billing/ # Billing command for deepctl
116
125
  │ ├── deepctl-cmd-debug/ # Debug command group for deepctl
117
126
  │ ├── deepctl-cmd-debug-audio/ # Audio debug subcommand for deepctl
118
127
  │ ├── deepctl-cmd-debug-browser/ # Browser debug subcommand for deepctl
@@ -120,11 +129,18 @@ cli/
120
129
  │ ├── deepctl-cmd-debug-probe/ # Debug probe subcommand for deepctl — live ffprobe analysis during streaming
121
130
  │ ├── deepctl-cmd-ffprobe/ # FFprobe configuration command for deepctl
122
131
  │ ├── deepctl-cmd-init/ # Init command for deepctl — scaffold Deepgram starter apps
132
+ │ ├── deepctl-cmd-keys/ # API keys management command for deepctl
133
+ │ ├── deepctl-cmd-listen/ # Listen (live speech-to-text) command for deepctl
123
134
  │ ├── deepctl-cmd-login/ # Login command for deepctl
124
135
  │ ├── deepctl-cmd-mcp/ # MCP proxy command for deepctl — connects to Deepgram's developer API
136
+ │ ├── deepctl-cmd-members/ # Members management command for deepctl
137
+ │ ├── deepctl-cmd-models/ # Models command for deepctl
125
138
  │ ├── deepctl-cmd-plugin/ # Plugin management command for deepctl
126
139
  │ ├── deepctl-cmd-projects/ # Projects command for deepctl
140
+ │ ├── deepctl-cmd-read/ # Read (text intelligence) command for deepctl
141
+ │ ├── deepctl-cmd-requests/ # Requests history command for deepctl
127
142
  │ ├── deepctl-cmd-skills/ # AI coding assistant skill management for deepctl
143
+ │ ├── deepctl-cmd-speak/ # Speak (text-to-speech) command for deepctl
128
144
  │ ├── deepctl-cmd-transcribe/ # Transcribe command for deepctl
129
145
  │ ├── deepctl-cmd-update/ # Update command for deepctl
130
146
  │ ├── deepctl-cmd-usage/ # Usage command for deepctl
@@ -170,19 +186,56 @@ Merging conventional commits to `main` triggers [release-please](https://github.
170
186
 
171
187
  ## Installation
172
188
 
173
- ### Try Without Installing
189
+ ### Quick Install
190
+
191
+ **macOS / Linux:**
174
192
 
175
193
  ```bash
176
- uv run deepctl --help
177
- pipx run deepctl --help
194
+ curl -fsSL https://deepgram.com/install.sh | sh
195
+ ```
196
+
197
+ **Windows (PowerShell):**
198
+
199
+ ```powershell
200
+ iwr https://deepgram.com/install.ps1 -useb | iex
178
201
  ```
179
202
 
180
- ### {WIP} Install
203
+ ### Install Options
204
+
205
+ ```bash
206
+ # Install a specific version
207
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- v0.2.1
208
+
209
+ # Force reinstall over existing installation
210
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- --force
211
+
212
+ # Both
213
+ curl -fsSL https://deepgram.com/install.sh | sh -s -- --force v0.2.1
214
+ ```
215
+
216
+ **Windows (PowerShell):**
217
+
218
+ ```powershell
219
+ # Install a specific version
220
+ $env:DEEPCTL_VERSION='0.2.1'; iwr https://deepgram.com/install.ps1 -useb | iex
221
+
222
+ # Force reinstall
223
+ $env:DEEPCTL_FORCE='1'; iwr https://deepgram.com/install.ps1 -useb | iex
224
+ ```
225
+
226
+ ### Other Methods
181
227
 
182
228
  ```bash
183
- pip install deepctl
184
229
  uv tool install deepctl
185
- brew install deepctl
230
+ pip install deepctl
231
+ pipx install deepctl
232
+ ```
233
+
234
+ ### Try Without Installing
235
+
236
+ ```bash
237
+ uv run deepctl --help
238
+ pipx run deepctl --help
186
239
  ```
187
240
 
188
241
  ## Usage
@@ -193,6 +246,7 @@ brew install deepctl
193
246
  | Command | Description |
194
247
  |---------|-------------|
195
248
  | `deepctl api` | API command for deepctl |
249
+ | `deepctl billing` | Billing command for deepctl |
196
250
  | `deepctl debug audio` | Audio debug subcommand for deepctl |
197
251
  | `deepctl debug browser` | Browser debug subcommand for deepctl |
198
252
  | `deepctl debug network` | Network debug subcommand for deepctl |
@@ -200,13 +254,20 @@ brew install deepctl
200
254
  | `deepctl debug` | Debug command group for deepctl |
201
255
  | `deepctl ffprobe` | FFprobe configuration command for deepctl |
202
256
  | `deepctl init` | Init command for deepctl — scaffold Deepgram starter apps |
257
+ | `deepctl keys` | API keys management command for deepctl |
258
+ | `deepctl listen` | Listen (live speech-to-text) command for deepctl |
203
259
  | `deepctl login` | Login command for deepctl |
204
260
  | `deepctl logout` | Login command for deepctl |
205
261
  | `deepctl mcp` | MCP proxy command for deepctl — connects to Deepgram's developer API |
262
+ | `deepctl members` | Members management command for deepctl |
263
+ | `deepctl models` | Models command for deepctl |
206
264
  | `deepctl plugin` | Plugin management command for deepctl |
207
265
  | `deepctl profiles` | Login command for deepctl |
208
266
  | `deepctl projects` | Projects command for deepctl |
267
+ | `deepctl read` | Read (text intelligence) command for deepctl |
268
+ | `deepctl requests` | Requests history command for deepctl |
209
269
  | `deepctl skills` | AI coding assistant skill management for deepctl |
270
+ | `deepctl speak` | Speak (text-to-speech) command for deepctl |
210
271
  | `deepctl transcribe` | Transcribe command for deepctl |
211
272
  | `deepctl update` | Update command for deepctl |
212
273
  | `deepctl usage` | Usage command for deepctl |
@@ -282,6 +343,7 @@ See [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) for full setup instructions in
282
343
  | Package | Description |
283
344
  |---------|-------------|
284
345
  | [`deepctl-cmd-api`](packages/deepctl-cmd-api) | API command for deepctl |
346
+ | [`deepctl-cmd-billing`](packages/deepctl-cmd-billing) | Billing command for deepctl |
285
347
  | [`deepctl-cmd-debug`](packages/deepctl-cmd-debug) | Debug command group for deepctl |
286
348
  | [`deepctl-cmd-debug-audio`](packages/deepctl-cmd-debug-audio) | Audio debug subcommand for deepctl |
287
349
  | [`deepctl-cmd-debug-browser`](packages/deepctl-cmd-debug-browser) | Browser debug subcommand for deepctl |
@@ -289,11 +351,18 @@ See [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) for full setup instructions in
289
351
  | [`deepctl-cmd-debug-probe`](packages/deepctl-cmd-debug-probe) | Debug probe subcommand for deepctl — live ffprobe analysis during streaming |
290
352
  | [`deepctl-cmd-ffprobe`](packages/deepctl-cmd-ffprobe) | FFprobe configuration command for deepctl |
291
353
  | [`deepctl-cmd-init`](packages/deepctl-cmd-init) | Init command for deepctl — scaffold Deepgram starter apps |
354
+ | [`deepctl-cmd-keys`](packages/deepctl-cmd-keys) | API keys management command for deepctl |
355
+ | [`deepctl-cmd-listen`](packages/deepctl-cmd-listen) | Listen (live speech-to-text) command for deepctl |
292
356
  | [`deepctl-cmd-login`](packages/deepctl-cmd-login) | Login command for deepctl |
293
357
  | [`deepctl-cmd-mcp`](packages/deepctl-cmd-mcp) | MCP proxy command for deepctl — connects to Deepgram's developer API |
358
+ | [`deepctl-cmd-members`](packages/deepctl-cmd-members) | Members management command for deepctl |
359
+ | [`deepctl-cmd-models`](packages/deepctl-cmd-models) | Models command for deepctl |
294
360
  | [`deepctl-cmd-plugin`](packages/deepctl-cmd-plugin) | Plugin management command for deepctl |
295
361
  | [`deepctl-cmd-projects`](packages/deepctl-cmd-projects) | Projects command for deepctl |
362
+ | [`deepctl-cmd-read`](packages/deepctl-cmd-read) | Read (text intelligence) command for deepctl |
363
+ | [`deepctl-cmd-requests`](packages/deepctl-cmd-requests) | Requests history command for deepctl |
296
364
  | [`deepctl-cmd-skills`](packages/deepctl-cmd-skills) | AI coding assistant skill management for deepctl |
365
+ | [`deepctl-cmd-speak`](packages/deepctl-cmd-speak) | Speak (text-to-speech) command for deepctl |
297
366
  | [`deepctl-cmd-transcribe`](packages/deepctl-cmd-transcribe) | Transcribe command for deepctl |
298
367
  | [`deepctl-cmd-update`](packages/deepctl-cmd-update) | Update command for deepctl |
299
368
  | [`deepctl-cmd-usage`](packages/deepctl-cmd-usage) | Usage command for deepctl |
@@ -17,6 +17,14 @@ deepctl-cmd-update>=0.1.10
17
17
  deepctl-cmd-plugin>=0.1.10
18
18
  deepctl-cmd-skills>=0.0.1
19
19
  deepctl-cmd-init>=0.0.1
20
+ deepctl-cmd-models>=0.0.1
21
+ deepctl-cmd-speak>=0.0.1
22
+ deepctl-cmd-keys>=0.0.1
23
+ deepctl-cmd-read>=0.0.1
24
+ deepctl-cmd-listen>=0.0.1
25
+ deepctl-cmd-requests>=0.0.1
26
+ deepctl-cmd-billing>=0.0.1
27
+ deepctl-cmd-members>=0.0.1
20
28
  deepctl-shared-utils>=0.1.10
21
29
  pydantic>=2.0.0
22
30
  rich>=13.0.0
File without changes
File without changes