@eightstate/escli 0.5.0
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.
- package/CONVENTIONS.md +59 -0
- package/LICENSE +21 -0
- package/README.md +106 -0
- package/RELEASE-NOTES-0.5.0.md +34 -0
- package/dist/base-command.js +166 -0
- package/dist/commands/audio/get.js +39 -0
- package/dist/commands/audio/index.js +18 -0
- package/dist/commands/audio/list.js +39 -0
- package/dist/commands/audio/status.js +34 -0
- package/dist/commands/audio/transcribe.js +99 -0
- package/dist/commands/auth/index.js +18 -0
- package/dist/commands/auth/login.js +38 -0
- package/dist/commands/auth/logout.js +27 -0
- package/dist/commands/auth/profiles.js +31 -0
- package/dist/commands/auth/status.js +27 -0
- package/dist/commands/auth/switch.js +24 -0
- package/dist/commands/docs/fetch.js +37 -0
- package/dist/commands/docs/get.js +47 -0
- package/dist/commands/docs/index.js +18 -0
- package/dist/commands/docs/search.js +55 -0
- package/dist/commands/fetch.js +55 -0
- package/dist/commands/image/edit.js +59 -0
- package/dist/commands/image/generate.js +67 -0
- package/dist/commands/image/index.js +18 -0
- package/dist/commands/models.js +27 -0
- package/dist/commands/research.js +92 -0
- package/dist/commands/search.js +54 -0
- package/dist/commands/social.js +69 -0
- package/dist/commands/usage.js +51 -0
- package/dist/commands/version.js +22 -0
- package/dist/entry.js +120 -0
- package/dist/io/io.js +322 -0
- package/dist/lib/build-flags.js +2 -0
- package/dist/lib/command-metadata.js +8 -0
- package/dist/lib/envelope.js +28 -0
- package/dist/lib/escli-error.js +20 -0
- package/dist/lib/global-flags.js +29 -0
- package/dist/lib/globals.js +2 -0
- package/dist/lib/manifest.js +67 -0
- package/dist/lib/oclif-manifest-check.js +11 -0
- package/dist/lib/registry.js +228 -0
- package/dist/services/audio.js +454 -0
- package/dist/services/auth.js +329 -0
- package/dist/services/credentials.js +137 -0
- package/dist/services/docs.js +303 -0
- package/dist/services/fetch.js +197 -0
- package/dist/services/image.js +297 -0
- package/dist/services/models.js +131 -0
- package/dist/services/research.js +504 -0
- package/dist/services/search.js +195 -0
- package/dist/services/social.js +224 -0
- package/dist/services/usage.js +165 -0
- package/oclif.manifest.json +3377 -0
- package/package.json +57 -0
|
@@ -0,0 +1,3377 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"fetch": {
|
|
4
|
+
"aliases": [
|
|
5
|
+
"f"
|
|
6
|
+
],
|
|
7
|
+
"args": {
|
|
8
|
+
"urls": {
|
|
9
|
+
"description": "URLs to extract.",
|
|
10
|
+
"multiple": true,
|
|
11
|
+
"name": "urls",
|
|
12
|
+
"required": true
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"description": "Extract clean content from URLs via Parallel Extract.",
|
|
16
|
+
"examples": [
|
|
17
|
+
"<%= config.bin %> fetch https://docs.parallel.ai/search/search-quickstart",
|
|
18
|
+
"<%= config.bin %> fetch https://example.com --objective \"pricing information\"",
|
|
19
|
+
"<%= config.bin %> fetch https://example.com --full",
|
|
20
|
+
"<%= config.bin %> --json fetch https://example.com https://other.com"
|
|
21
|
+
],
|
|
22
|
+
"flags": {
|
|
23
|
+
"json": {
|
|
24
|
+
"description": "Format output as json.",
|
|
25
|
+
"helpGroup": "GLOBAL",
|
|
26
|
+
"name": "json",
|
|
27
|
+
"allowNo": false,
|
|
28
|
+
"type": "boolean"
|
|
29
|
+
},
|
|
30
|
+
"quiet": {
|
|
31
|
+
"description": "Suppress diagnostic output.",
|
|
32
|
+
"name": "quiet",
|
|
33
|
+
"allowNo": false,
|
|
34
|
+
"type": "boolean"
|
|
35
|
+
},
|
|
36
|
+
"api-key": {
|
|
37
|
+
"description": "API key override.",
|
|
38
|
+
"helpGroup": "GLOBAL",
|
|
39
|
+
"name": "api-key",
|
|
40
|
+
"hasDynamicHelp": false,
|
|
41
|
+
"multiple": false,
|
|
42
|
+
"type": "option"
|
|
43
|
+
},
|
|
44
|
+
"base-url": {
|
|
45
|
+
"description": "Base URL override.",
|
|
46
|
+
"helpGroup": "GLOBAL",
|
|
47
|
+
"name": "base-url",
|
|
48
|
+
"hasDynamicHelp": false,
|
|
49
|
+
"multiple": false,
|
|
50
|
+
"type": "option"
|
|
51
|
+
},
|
|
52
|
+
"timeout": {
|
|
53
|
+
"description": "Request timeout in seconds.",
|
|
54
|
+
"helpGroup": "GLOBAL",
|
|
55
|
+
"name": "timeout",
|
|
56
|
+
"default": 300,
|
|
57
|
+
"hasDynamicHelp": false,
|
|
58
|
+
"multiple": false,
|
|
59
|
+
"type": "option"
|
|
60
|
+
},
|
|
61
|
+
"describe": {
|
|
62
|
+
"description": "Emit compact machine-readable command description.",
|
|
63
|
+
"helpGroup": "GLOBAL",
|
|
64
|
+
"name": "describe",
|
|
65
|
+
"allowNo": false,
|
|
66
|
+
"type": "boolean"
|
|
67
|
+
},
|
|
68
|
+
"schema": {
|
|
69
|
+
"description": "Emit full machine-readable command schema.",
|
|
70
|
+
"helpGroup": "GLOBAL",
|
|
71
|
+
"name": "schema",
|
|
72
|
+
"allowNo": false,
|
|
73
|
+
"type": "boolean"
|
|
74
|
+
},
|
|
75
|
+
"version": {
|
|
76
|
+
"char": "v",
|
|
77
|
+
"description": "Emit version envelope.",
|
|
78
|
+
"helpGroup": "GLOBAL",
|
|
79
|
+
"name": "version",
|
|
80
|
+
"allowNo": false,
|
|
81
|
+
"type": "boolean"
|
|
82
|
+
},
|
|
83
|
+
"objective": {
|
|
84
|
+
"description": "Focus on this topic.",
|
|
85
|
+
"name": "objective",
|
|
86
|
+
"hasDynamicHelp": false,
|
|
87
|
+
"multiple": false,
|
|
88
|
+
"type": "option"
|
|
89
|
+
},
|
|
90
|
+
"full": {
|
|
91
|
+
"description": "Return full content instead of excerpts.",
|
|
92
|
+
"name": "full",
|
|
93
|
+
"allowNo": false,
|
|
94
|
+
"type": "boolean"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"hasDynamicHelp": false,
|
|
98
|
+
"hiddenAliases": [],
|
|
99
|
+
"id": "fetch",
|
|
100
|
+
"pluginAlias": "@eightstate/escli",
|
|
101
|
+
"pluginName": "@eightstate/escli",
|
|
102
|
+
"pluginType": "core",
|
|
103
|
+
"strict": true,
|
|
104
|
+
"summary": "Extract clean content from URLs",
|
|
105
|
+
"enableJsonFlag": true,
|
|
106
|
+
"emitsJsonEnvelope": false,
|
|
107
|
+
"errors": [
|
|
108
|
+
"usage.required",
|
|
109
|
+
"api.unauthorized",
|
|
110
|
+
"api.forbidden",
|
|
111
|
+
"api.rate_limited",
|
|
112
|
+
"file.not_found",
|
|
113
|
+
"gate.invalid_response",
|
|
114
|
+
"json.invalid",
|
|
115
|
+
"network.error",
|
|
116
|
+
"network.timeout",
|
|
117
|
+
"service.unavailable",
|
|
118
|
+
"fetch.failed"
|
|
119
|
+
],
|
|
120
|
+
"isESM": true,
|
|
121
|
+
"relativePath": [
|
|
122
|
+
"dist",
|
|
123
|
+
"commands",
|
|
124
|
+
"fetch.js"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
"models": {
|
|
128
|
+
"aliases": [
|
|
129
|
+
"m"
|
|
130
|
+
],
|
|
131
|
+
"args": {},
|
|
132
|
+
"description": "List all models available on the API endpoint.",
|
|
133
|
+
"examples": [
|
|
134
|
+
"<%= config.bin %> models",
|
|
135
|
+
"<%= config.bin %> --json models"
|
|
136
|
+
],
|
|
137
|
+
"flags": {
|
|
138
|
+
"json": {
|
|
139
|
+
"description": "Format output as json.",
|
|
140
|
+
"helpGroup": "GLOBAL",
|
|
141
|
+
"name": "json",
|
|
142
|
+
"allowNo": false,
|
|
143
|
+
"type": "boolean"
|
|
144
|
+
},
|
|
145
|
+
"quiet": {
|
|
146
|
+
"description": "Suppress diagnostic output.",
|
|
147
|
+
"name": "quiet",
|
|
148
|
+
"allowNo": false,
|
|
149
|
+
"type": "boolean"
|
|
150
|
+
},
|
|
151
|
+
"api-key": {
|
|
152
|
+
"description": "API key override.",
|
|
153
|
+
"helpGroup": "GLOBAL",
|
|
154
|
+
"name": "api-key",
|
|
155
|
+
"hasDynamicHelp": false,
|
|
156
|
+
"multiple": false,
|
|
157
|
+
"type": "option"
|
|
158
|
+
},
|
|
159
|
+
"base-url": {
|
|
160
|
+
"description": "Base URL override.",
|
|
161
|
+
"helpGroup": "GLOBAL",
|
|
162
|
+
"name": "base-url",
|
|
163
|
+
"hasDynamicHelp": false,
|
|
164
|
+
"multiple": false,
|
|
165
|
+
"type": "option"
|
|
166
|
+
},
|
|
167
|
+
"timeout": {
|
|
168
|
+
"description": "Request timeout in seconds.",
|
|
169
|
+
"helpGroup": "GLOBAL",
|
|
170
|
+
"name": "timeout",
|
|
171
|
+
"default": 300,
|
|
172
|
+
"hasDynamicHelp": false,
|
|
173
|
+
"multiple": false,
|
|
174
|
+
"type": "option"
|
|
175
|
+
},
|
|
176
|
+
"describe": {
|
|
177
|
+
"description": "Emit compact machine-readable command description.",
|
|
178
|
+
"helpGroup": "GLOBAL",
|
|
179
|
+
"name": "describe",
|
|
180
|
+
"allowNo": false,
|
|
181
|
+
"type": "boolean"
|
|
182
|
+
},
|
|
183
|
+
"schema": {
|
|
184
|
+
"description": "Emit full machine-readable command schema.",
|
|
185
|
+
"helpGroup": "GLOBAL",
|
|
186
|
+
"name": "schema",
|
|
187
|
+
"allowNo": false,
|
|
188
|
+
"type": "boolean"
|
|
189
|
+
},
|
|
190
|
+
"version": {
|
|
191
|
+
"char": "v",
|
|
192
|
+
"description": "Emit version envelope.",
|
|
193
|
+
"helpGroup": "GLOBAL",
|
|
194
|
+
"name": "version",
|
|
195
|
+
"allowNo": false,
|
|
196
|
+
"type": "boolean"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"hasDynamicHelp": false,
|
|
200
|
+
"hiddenAliases": [],
|
|
201
|
+
"id": "models",
|
|
202
|
+
"pluginAlias": "@eightstate/escli",
|
|
203
|
+
"pluginName": "@eightstate/escli",
|
|
204
|
+
"pluginType": "core",
|
|
205
|
+
"strict": true,
|
|
206
|
+
"summary": "List models available on the endpoint",
|
|
207
|
+
"enableJsonFlag": true,
|
|
208
|
+
"emitsJsonEnvelope": false,
|
|
209
|
+
"errors": [
|
|
210
|
+
"auth.required",
|
|
211
|
+
"api.unauthorized",
|
|
212
|
+
"api.forbidden",
|
|
213
|
+
"api.rate_limited",
|
|
214
|
+
"api.error",
|
|
215
|
+
"network.error",
|
|
216
|
+
"network.timeout",
|
|
217
|
+
"service.unavailable",
|
|
218
|
+
"models.list_failed"
|
|
219
|
+
],
|
|
220
|
+
"isESM": true,
|
|
221
|
+
"relativePath": [
|
|
222
|
+
"dist",
|
|
223
|
+
"commands",
|
|
224
|
+
"models.js"
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
"research": {
|
|
228
|
+
"aliases": [
|
|
229
|
+
"r"
|
|
230
|
+
],
|
|
231
|
+
"args": {
|
|
232
|
+
"query": {
|
|
233
|
+
"description": "Research question or topic.",
|
|
234
|
+
"multiple": true,
|
|
235
|
+
"name": "query",
|
|
236
|
+
"required": false
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"description": "Run Parallel Task API research tasks, list processors, check status, or fetch completed results.",
|
|
240
|
+
"examples": [
|
|
241
|
+
"<%= config.bin %> research \"HVAC industry market report\" -o hvac.md",
|
|
242
|
+
"<%= config.bin %> research \"Stripe\" --output-schema \"founding year and total funding\" -p base",
|
|
243
|
+
"<%= config.bin %> research --processors",
|
|
244
|
+
"<%= config.bin %> research --status trun_xxx",
|
|
245
|
+
"<%= config.bin %> research --result trun_xxx -o out.md"
|
|
246
|
+
],
|
|
247
|
+
"flags": {
|
|
248
|
+
"json": {
|
|
249
|
+
"description": "Format output as json.",
|
|
250
|
+
"helpGroup": "GLOBAL",
|
|
251
|
+
"name": "json",
|
|
252
|
+
"allowNo": false,
|
|
253
|
+
"type": "boolean"
|
|
254
|
+
},
|
|
255
|
+
"quiet": {
|
|
256
|
+
"description": "Suppress diagnostic output.",
|
|
257
|
+
"name": "quiet",
|
|
258
|
+
"allowNo": false,
|
|
259
|
+
"type": "boolean"
|
|
260
|
+
},
|
|
261
|
+
"api-key": {
|
|
262
|
+
"description": "API key override.",
|
|
263
|
+
"helpGroup": "GLOBAL",
|
|
264
|
+
"name": "api-key",
|
|
265
|
+
"hasDynamicHelp": false,
|
|
266
|
+
"multiple": false,
|
|
267
|
+
"type": "option"
|
|
268
|
+
},
|
|
269
|
+
"base-url": {
|
|
270
|
+
"description": "Base URL override.",
|
|
271
|
+
"helpGroup": "GLOBAL",
|
|
272
|
+
"name": "base-url",
|
|
273
|
+
"hasDynamicHelp": false,
|
|
274
|
+
"multiple": false,
|
|
275
|
+
"type": "option"
|
|
276
|
+
},
|
|
277
|
+
"timeout": {
|
|
278
|
+
"description": "Request timeout in seconds.",
|
|
279
|
+
"helpGroup": "GLOBAL",
|
|
280
|
+
"name": "timeout",
|
|
281
|
+
"default": 300,
|
|
282
|
+
"hasDynamicHelp": false,
|
|
283
|
+
"multiple": false,
|
|
284
|
+
"type": "option"
|
|
285
|
+
},
|
|
286
|
+
"describe": {
|
|
287
|
+
"description": "Emit compact machine-readable command description.",
|
|
288
|
+
"helpGroup": "GLOBAL",
|
|
289
|
+
"name": "describe",
|
|
290
|
+
"allowNo": false,
|
|
291
|
+
"type": "boolean"
|
|
292
|
+
},
|
|
293
|
+
"schema": {
|
|
294
|
+
"description": "JSON Schema file for structured output.",
|
|
295
|
+
"name": "schema",
|
|
296
|
+
"hasDynamicHelp": false,
|
|
297
|
+
"multiple": false,
|
|
298
|
+
"type": "option"
|
|
299
|
+
},
|
|
300
|
+
"version": {
|
|
301
|
+
"char": "v",
|
|
302
|
+
"description": "Emit version envelope.",
|
|
303
|
+
"helpGroup": "GLOBAL",
|
|
304
|
+
"name": "version",
|
|
305
|
+
"allowNo": false,
|
|
306
|
+
"type": "boolean"
|
|
307
|
+
},
|
|
308
|
+
"processors": {
|
|
309
|
+
"description": "List available processor tiers.",
|
|
310
|
+
"name": "processors",
|
|
311
|
+
"allowNo": false,
|
|
312
|
+
"type": "boolean"
|
|
313
|
+
},
|
|
314
|
+
"status": {
|
|
315
|
+
"description": "Check task run status.",
|
|
316
|
+
"name": "status",
|
|
317
|
+
"hasDynamicHelp": false,
|
|
318
|
+
"multiple": false,
|
|
319
|
+
"type": "option"
|
|
320
|
+
},
|
|
321
|
+
"result": {
|
|
322
|
+
"description": "Fetch completed task result.",
|
|
323
|
+
"name": "result",
|
|
324
|
+
"hasDynamicHelp": false,
|
|
325
|
+
"multiple": false,
|
|
326
|
+
"type": "option"
|
|
327
|
+
},
|
|
328
|
+
"output": {
|
|
329
|
+
"char": "o",
|
|
330
|
+
"description": "Output path.",
|
|
331
|
+
"name": "output",
|
|
332
|
+
"hasDynamicHelp": false,
|
|
333
|
+
"multiple": false,
|
|
334
|
+
"type": "option"
|
|
335
|
+
},
|
|
336
|
+
"processor": {
|
|
337
|
+
"char": "p",
|
|
338
|
+
"description": "Processor tier.",
|
|
339
|
+
"name": "processor",
|
|
340
|
+
"default": "pro",
|
|
341
|
+
"hasDynamicHelp": false,
|
|
342
|
+
"multiple": false,
|
|
343
|
+
"options": [
|
|
344
|
+
"lite",
|
|
345
|
+
"base",
|
|
346
|
+
"core",
|
|
347
|
+
"core2x",
|
|
348
|
+
"pro",
|
|
349
|
+
"ultra",
|
|
350
|
+
"ultra2x",
|
|
351
|
+
"ultra4x",
|
|
352
|
+
"ultra8x",
|
|
353
|
+
"lite-fast",
|
|
354
|
+
"base-fast",
|
|
355
|
+
"core-fast",
|
|
356
|
+
"core2x-fast",
|
|
357
|
+
"pro-fast",
|
|
358
|
+
"ultra-fast",
|
|
359
|
+
"ultra2x-fast",
|
|
360
|
+
"ultra4x-fast",
|
|
361
|
+
"ultra8x-fast"
|
|
362
|
+
],
|
|
363
|
+
"type": "option"
|
|
364
|
+
},
|
|
365
|
+
"text": {
|
|
366
|
+
"description": "Request text output schema.",
|
|
367
|
+
"name": "text",
|
|
368
|
+
"allowNo": false,
|
|
369
|
+
"type": "boolean"
|
|
370
|
+
},
|
|
371
|
+
"output-schema": {
|
|
372
|
+
"description": "Inline schema description.",
|
|
373
|
+
"name": "output-schema",
|
|
374
|
+
"hasDynamicHelp": false,
|
|
375
|
+
"multiple": false,
|
|
376
|
+
"type": "option"
|
|
377
|
+
},
|
|
378
|
+
"input-json": {
|
|
379
|
+
"description": "JSON input instead of text.",
|
|
380
|
+
"name": "input-json",
|
|
381
|
+
"hasDynamicHelp": false,
|
|
382
|
+
"multiple": false,
|
|
383
|
+
"type": "option"
|
|
384
|
+
},
|
|
385
|
+
"input-file": {
|
|
386
|
+
"description": "JSON input file.",
|
|
387
|
+
"name": "input-file",
|
|
388
|
+
"hasDynamicHelp": false,
|
|
389
|
+
"multiple": false,
|
|
390
|
+
"type": "option"
|
|
391
|
+
},
|
|
392
|
+
"include-domains": {
|
|
393
|
+
"description": "Only use these domains, comma-separated.",
|
|
394
|
+
"name": "include-domains",
|
|
395
|
+
"hasDynamicHelp": false,
|
|
396
|
+
"multiple": false,
|
|
397
|
+
"type": "option"
|
|
398
|
+
},
|
|
399
|
+
"exclude-domains": {
|
|
400
|
+
"description": "Exclude these domains, comma-separated.",
|
|
401
|
+
"name": "exclude-domains",
|
|
402
|
+
"hasDynamicHelp": false,
|
|
403
|
+
"multiple": false,
|
|
404
|
+
"type": "option"
|
|
405
|
+
},
|
|
406
|
+
"after-date": {
|
|
407
|
+
"description": "Filter content after this date.",
|
|
408
|
+
"name": "after-date",
|
|
409
|
+
"hasDynamicHelp": false,
|
|
410
|
+
"multiple": false,
|
|
411
|
+
"type": "option"
|
|
412
|
+
},
|
|
413
|
+
"location": {
|
|
414
|
+
"description": "ISO country code for geo-targeting.",
|
|
415
|
+
"name": "location",
|
|
416
|
+
"hasDynamicHelp": false,
|
|
417
|
+
"multiple": false,
|
|
418
|
+
"type": "option"
|
|
419
|
+
},
|
|
420
|
+
"metadata": {
|
|
421
|
+
"description": "Metadata as JSON or key=val,key=val.",
|
|
422
|
+
"name": "metadata",
|
|
423
|
+
"hasDynamicHelp": false,
|
|
424
|
+
"multiple": false,
|
|
425
|
+
"type": "option"
|
|
426
|
+
},
|
|
427
|
+
"follow-up": {
|
|
428
|
+
"description": "Follow up on a previous run.",
|
|
429
|
+
"name": "follow-up",
|
|
430
|
+
"hasDynamicHelp": false,
|
|
431
|
+
"multiple": false,
|
|
432
|
+
"type": "option"
|
|
433
|
+
},
|
|
434
|
+
"no-basis": {
|
|
435
|
+
"description": "Exclude citations and reasoning from human/file output.",
|
|
436
|
+
"name": "no-basis",
|
|
437
|
+
"allowNo": false,
|
|
438
|
+
"type": "boolean"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"hasDynamicHelp": false,
|
|
442
|
+
"hiddenAliases": [],
|
|
443
|
+
"id": "research",
|
|
444
|
+
"pluginAlias": "@eightstate/escli",
|
|
445
|
+
"pluginName": "@eightstate/escli",
|
|
446
|
+
"pluginType": "core",
|
|
447
|
+
"strict": true,
|
|
448
|
+
"summary": "Run deep web research tasks",
|
|
449
|
+
"enableJsonFlag": true,
|
|
450
|
+
"emitsJsonEnvelope": false,
|
|
451
|
+
"errors": [
|
|
452
|
+
"usage.required",
|
|
453
|
+
"usage.invalid",
|
|
454
|
+
"usage.unknown_flag",
|
|
455
|
+
"file.not_found",
|
|
456
|
+
"file.read_failed",
|
|
457
|
+
"file.write_failed",
|
|
458
|
+
"api.unauthorized",
|
|
459
|
+
"api.forbidden",
|
|
460
|
+
"api.rate_limited",
|
|
461
|
+
"gate.invalid_response",
|
|
462
|
+
"network.error",
|
|
463
|
+
"network.timeout",
|
|
464
|
+
"service.unavailable",
|
|
465
|
+
"research.input_invalid",
|
|
466
|
+
"research.task_failed",
|
|
467
|
+
"research.run_not_found",
|
|
468
|
+
"research.timeout",
|
|
469
|
+
"research.api_key_missing"
|
|
470
|
+
],
|
|
471
|
+
"isESM": true,
|
|
472
|
+
"relativePath": [
|
|
473
|
+
"dist",
|
|
474
|
+
"commands",
|
|
475
|
+
"research.js"
|
|
476
|
+
]
|
|
477
|
+
},
|
|
478
|
+
"search": {
|
|
479
|
+
"aliases": [
|
|
480
|
+
"s"
|
|
481
|
+
],
|
|
482
|
+
"args": {
|
|
483
|
+
"objective": {
|
|
484
|
+
"description": "Search objective.",
|
|
485
|
+
"multiple": true,
|
|
486
|
+
"name": "objective",
|
|
487
|
+
"required": true
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"description": "Search the web via Parallel Search.",
|
|
491
|
+
"examples": [
|
|
492
|
+
"<%= config.bin %> search \"latest cloudflare workers features\"",
|
|
493
|
+
"<%= config.bin %> search \"react server components\" --queries \"RSC tutorial\" \"RSC vs SSR\"",
|
|
494
|
+
"<%= config.bin %> --json search \"python web frameworks 2026\""
|
|
495
|
+
],
|
|
496
|
+
"flags": {
|
|
497
|
+
"json": {
|
|
498
|
+
"description": "Format output as json.",
|
|
499
|
+
"helpGroup": "GLOBAL",
|
|
500
|
+
"name": "json",
|
|
501
|
+
"allowNo": false,
|
|
502
|
+
"type": "boolean"
|
|
503
|
+
},
|
|
504
|
+
"quiet": {
|
|
505
|
+
"description": "Suppress diagnostic output.",
|
|
506
|
+
"name": "quiet",
|
|
507
|
+
"allowNo": false,
|
|
508
|
+
"type": "boolean"
|
|
509
|
+
},
|
|
510
|
+
"api-key": {
|
|
511
|
+
"description": "API key override.",
|
|
512
|
+
"helpGroup": "GLOBAL",
|
|
513
|
+
"name": "api-key",
|
|
514
|
+
"hasDynamicHelp": false,
|
|
515
|
+
"multiple": false,
|
|
516
|
+
"type": "option"
|
|
517
|
+
},
|
|
518
|
+
"base-url": {
|
|
519
|
+
"description": "Base URL override.",
|
|
520
|
+
"helpGroup": "GLOBAL",
|
|
521
|
+
"name": "base-url",
|
|
522
|
+
"hasDynamicHelp": false,
|
|
523
|
+
"multiple": false,
|
|
524
|
+
"type": "option"
|
|
525
|
+
},
|
|
526
|
+
"timeout": {
|
|
527
|
+
"description": "Request timeout in seconds.",
|
|
528
|
+
"helpGroup": "GLOBAL",
|
|
529
|
+
"name": "timeout",
|
|
530
|
+
"default": 300,
|
|
531
|
+
"hasDynamicHelp": false,
|
|
532
|
+
"multiple": false,
|
|
533
|
+
"type": "option"
|
|
534
|
+
},
|
|
535
|
+
"describe": {
|
|
536
|
+
"description": "Emit compact machine-readable command description.",
|
|
537
|
+
"helpGroup": "GLOBAL",
|
|
538
|
+
"name": "describe",
|
|
539
|
+
"allowNo": false,
|
|
540
|
+
"type": "boolean"
|
|
541
|
+
},
|
|
542
|
+
"schema": {
|
|
543
|
+
"description": "Emit full machine-readable command schema.",
|
|
544
|
+
"helpGroup": "GLOBAL",
|
|
545
|
+
"name": "schema",
|
|
546
|
+
"allowNo": false,
|
|
547
|
+
"type": "boolean"
|
|
548
|
+
},
|
|
549
|
+
"version": {
|
|
550
|
+
"char": "v",
|
|
551
|
+
"description": "Emit version envelope.",
|
|
552
|
+
"helpGroup": "GLOBAL",
|
|
553
|
+
"name": "version",
|
|
554
|
+
"allowNo": false,
|
|
555
|
+
"type": "boolean"
|
|
556
|
+
},
|
|
557
|
+
"queries": {
|
|
558
|
+
"description": "Override queries (default: objective).",
|
|
559
|
+
"name": "queries",
|
|
560
|
+
"hasDynamicHelp": false,
|
|
561
|
+
"multiple": true,
|
|
562
|
+
"type": "option"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"hasDynamicHelp": false,
|
|
566
|
+
"hiddenAliases": [],
|
|
567
|
+
"id": "search",
|
|
568
|
+
"pluginAlias": "@eightstate/escli",
|
|
569
|
+
"pluginName": "@eightstate/escli",
|
|
570
|
+
"pluginType": "core",
|
|
571
|
+
"strict": true,
|
|
572
|
+
"summary": "Search the web, return ranked excerpts",
|
|
573
|
+
"enableJsonFlag": true,
|
|
574
|
+
"emitsJsonEnvelope": false,
|
|
575
|
+
"errors": [
|
|
576
|
+
"usage.required",
|
|
577
|
+
"api.unauthorized",
|
|
578
|
+
"api.forbidden",
|
|
579
|
+
"api.rate_limited",
|
|
580
|
+
"api.error",
|
|
581
|
+
"gate.invalid_response",
|
|
582
|
+
"network.error",
|
|
583
|
+
"network.timeout",
|
|
584
|
+
"service.unavailable",
|
|
585
|
+
"search.failed"
|
|
586
|
+
],
|
|
587
|
+
"isESM": true,
|
|
588
|
+
"relativePath": [
|
|
589
|
+
"dist",
|
|
590
|
+
"commands",
|
|
591
|
+
"search.js"
|
|
592
|
+
]
|
|
593
|
+
},
|
|
594
|
+
"social": {
|
|
595
|
+
"aliases": [],
|
|
596
|
+
"args": {
|
|
597
|
+
"query": {
|
|
598
|
+
"description": "Search query.",
|
|
599
|
+
"multiple": true,
|
|
600
|
+
"name": "query",
|
|
601
|
+
"required": true
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"description": "Search Reddit, X/Twitter, TikTok, LinkedIn, Instagram, Facebook, YouTube, or combined social domains via Tavily.",
|
|
605
|
+
"examples": [
|
|
606
|
+
"<%= config.bin %> social \"what are people saying about Claude Code\"",
|
|
607
|
+
"<%= config.bin %> social \"AI trends 2026\" --platform reddit",
|
|
608
|
+
"<%= config.bin %> social \"product reviews\" --platform tiktok,instagram --time week",
|
|
609
|
+
"<%= config.bin %> social \"company sentiment\" --platform linkedin,x --answer",
|
|
610
|
+
"<%= config.bin %> --json --quiet social \"brand perception\" --platform reddit,x"
|
|
611
|
+
],
|
|
612
|
+
"flags": {
|
|
613
|
+
"json": {
|
|
614
|
+
"description": "Format output as json.",
|
|
615
|
+
"helpGroup": "GLOBAL",
|
|
616
|
+
"name": "json",
|
|
617
|
+
"allowNo": false,
|
|
618
|
+
"type": "boolean"
|
|
619
|
+
},
|
|
620
|
+
"quiet": {
|
|
621
|
+
"description": "Suppress diagnostic output.",
|
|
622
|
+
"name": "quiet",
|
|
623
|
+
"allowNo": false,
|
|
624
|
+
"type": "boolean"
|
|
625
|
+
},
|
|
626
|
+
"api-key": {
|
|
627
|
+
"description": "API key override.",
|
|
628
|
+
"helpGroup": "GLOBAL",
|
|
629
|
+
"name": "api-key",
|
|
630
|
+
"hasDynamicHelp": false,
|
|
631
|
+
"multiple": false,
|
|
632
|
+
"type": "option"
|
|
633
|
+
},
|
|
634
|
+
"base-url": {
|
|
635
|
+
"description": "Base URL override.",
|
|
636
|
+
"helpGroup": "GLOBAL",
|
|
637
|
+
"name": "base-url",
|
|
638
|
+
"hasDynamicHelp": false,
|
|
639
|
+
"multiple": false,
|
|
640
|
+
"type": "option"
|
|
641
|
+
},
|
|
642
|
+
"timeout": {
|
|
643
|
+
"description": "Request timeout in seconds.",
|
|
644
|
+
"helpGroup": "GLOBAL",
|
|
645
|
+
"name": "timeout",
|
|
646
|
+
"default": 300,
|
|
647
|
+
"hasDynamicHelp": false,
|
|
648
|
+
"multiple": false,
|
|
649
|
+
"type": "option"
|
|
650
|
+
},
|
|
651
|
+
"describe": {
|
|
652
|
+
"description": "Emit compact machine-readable command description.",
|
|
653
|
+
"helpGroup": "GLOBAL",
|
|
654
|
+
"name": "describe",
|
|
655
|
+
"allowNo": false,
|
|
656
|
+
"type": "boolean"
|
|
657
|
+
},
|
|
658
|
+
"schema": {
|
|
659
|
+
"description": "Emit full machine-readable command schema.",
|
|
660
|
+
"helpGroup": "GLOBAL",
|
|
661
|
+
"name": "schema",
|
|
662
|
+
"allowNo": false,
|
|
663
|
+
"type": "boolean"
|
|
664
|
+
},
|
|
665
|
+
"version": {
|
|
666
|
+
"char": "v",
|
|
667
|
+
"description": "Emit version envelope.",
|
|
668
|
+
"helpGroup": "GLOBAL",
|
|
669
|
+
"name": "version",
|
|
670
|
+
"allowNo": false,
|
|
671
|
+
"type": "boolean"
|
|
672
|
+
},
|
|
673
|
+
"platform": {
|
|
674
|
+
"char": "p",
|
|
675
|
+
"description": "Platform(s), comma-separated: reddit,x,twitter,tiktok,linkedin,instagram,facebook,youtube,combined.",
|
|
676
|
+
"name": "platform",
|
|
677
|
+
"hasDynamicHelp": false,
|
|
678
|
+
"multiple": false,
|
|
679
|
+
"type": "option"
|
|
680
|
+
},
|
|
681
|
+
"time": {
|
|
682
|
+
"char": "t",
|
|
683
|
+
"description": "Time range.",
|
|
684
|
+
"name": "time",
|
|
685
|
+
"hasDynamicHelp": false,
|
|
686
|
+
"multiple": false,
|
|
687
|
+
"options": [
|
|
688
|
+
"day",
|
|
689
|
+
"week",
|
|
690
|
+
"month",
|
|
691
|
+
"year"
|
|
692
|
+
],
|
|
693
|
+
"type": "option"
|
|
694
|
+
},
|
|
695
|
+
"max-results": {
|
|
696
|
+
"char": "n",
|
|
697
|
+
"description": "Max results.",
|
|
698
|
+
"name": "max-results",
|
|
699
|
+
"default": 10,
|
|
700
|
+
"hasDynamicHelp": false,
|
|
701
|
+
"multiple": false,
|
|
702
|
+
"type": "option"
|
|
703
|
+
},
|
|
704
|
+
"depth": {
|
|
705
|
+
"description": "Search depth.",
|
|
706
|
+
"name": "depth",
|
|
707
|
+
"default": "advanced",
|
|
708
|
+
"hasDynamicHelp": false,
|
|
709
|
+
"multiple": false,
|
|
710
|
+
"options": [
|
|
711
|
+
"basic",
|
|
712
|
+
"advanced",
|
|
713
|
+
"fast",
|
|
714
|
+
"ultra-fast"
|
|
715
|
+
],
|
|
716
|
+
"type": "option"
|
|
717
|
+
},
|
|
718
|
+
"answer": {
|
|
719
|
+
"char": "a",
|
|
720
|
+
"description": "Include AI-synthesized answer.",
|
|
721
|
+
"name": "answer",
|
|
722
|
+
"allowNo": false,
|
|
723
|
+
"type": "boolean"
|
|
724
|
+
},
|
|
725
|
+
"raw": {
|
|
726
|
+
"description": "Include full post content.",
|
|
727
|
+
"name": "raw",
|
|
728
|
+
"allowNo": false,
|
|
729
|
+
"type": "boolean"
|
|
730
|
+
},
|
|
731
|
+
"images": {
|
|
732
|
+
"description": "Include images.",
|
|
733
|
+
"name": "images",
|
|
734
|
+
"allowNo": false,
|
|
735
|
+
"type": "boolean"
|
|
736
|
+
},
|
|
737
|
+
"country": {
|
|
738
|
+
"description": "Country for geo-targeting.",
|
|
739
|
+
"name": "country",
|
|
740
|
+
"hasDynamicHelp": false,
|
|
741
|
+
"multiple": false,
|
|
742
|
+
"type": "option"
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
"hasDynamicHelp": false,
|
|
746
|
+
"hiddenAliases": [],
|
|
747
|
+
"id": "social",
|
|
748
|
+
"pluginAlias": "@eightstate/escli",
|
|
749
|
+
"pluginName": "@eightstate/escli",
|
|
750
|
+
"pluginType": "core",
|
|
751
|
+
"strict": true,
|
|
752
|
+
"summary": "Search posts across social platforms",
|
|
753
|
+
"enableJsonFlag": true,
|
|
754
|
+
"emitsJsonEnvelope": false,
|
|
755
|
+
"errors": [
|
|
756
|
+
"usage.required",
|
|
757
|
+
"usage.invalid",
|
|
758
|
+
"validation.failed",
|
|
759
|
+
"auth.required",
|
|
760
|
+
"api.unauthorized",
|
|
761
|
+
"api.forbidden",
|
|
762
|
+
"api.rate_limited",
|
|
763
|
+
"api.error",
|
|
764
|
+
"gate.invalid_response",
|
|
765
|
+
"network.error",
|
|
766
|
+
"network.timeout",
|
|
767
|
+
"service.unavailable",
|
|
768
|
+
"social.failed"
|
|
769
|
+
],
|
|
770
|
+
"isESM": true,
|
|
771
|
+
"relativePath": [
|
|
772
|
+
"dist",
|
|
773
|
+
"commands",
|
|
774
|
+
"social.js"
|
|
775
|
+
]
|
|
776
|
+
},
|
|
777
|
+
"usage": {
|
|
778
|
+
"aliases": [
|
|
779
|
+
"u"
|
|
780
|
+
],
|
|
781
|
+
"args": {},
|
|
782
|
+
"description": "Show API usage and spend analytics from the eightstate gate service.",
|
|
783
|
+
"examples": [
|
|
784
|
+
"<%= config.bin %> usage",
|
|
785
|
+
"<%= config.bin %> usage --days 7",
|
|
786
|
+
"<%= config.bin %> usage --service parallel",
|
|
787
|
+
"<%= config.bin %> usage --daily",
|
|
788
|
+
"<%= config.bin %> usage --pricing",
|
|
789
|
+
"<%= config.bin %> --json usage"
|
|
790
|
+
],
|
|
791
|
+
"flags": {
|
|
792
|
+
"json": {
|
|
793
|
+
"description": "Format output as json.",
|
|
794
|
+
"helpGroup": "GLOBAL",
|
|
795
|
+
"name": "json",
|
|
796
|
+
"allowNo": false,
|
|
797
|
+
"type": "boolean"
|
|
798
|
+
},
|
|
799
|
+
"quiet": {
|
|
800
|
+
"description": "Suppress diagnostic output.",
|
|
801
|
+
"name": "quiet",
|
|
802
|
+
"allowNo": false,
|
|
803
|
+
"type": "boolean"
|
|
804
|
+
},
|
|
805
|
+
"api-key": {
|
|
806
|
+
"description": "API key override.",
|
|
807
|
+
"helpGroup": "GLOBAL",
|
|
808
|
+
"name": "api-key",
|
|
809
|
+
"hasDynamicHelp": false,
|
|
810
|
+
"multiple": false,
|
|
811
|
+
"type": "option"
|
|
812
|
+
},
|
|
813
|
+
"base-url": {
|
|
814
|
+
"description": "Base URL override.",
|
|
815
|
+
"helpGroup": "GLOBAL",
|
|
816
|
+
"name": "base-url",
|
|
817
|
+
"hasDynamicHelp": false,
|
|
818
|
+
"multiple": false,
|
|
819
|
+
"type": "option"
|
|
820
|
+
},
|
|
821
|
+
"timeout": {
|
|
822
|
+
"description": "Request timeout in seconds.",
|
|
823
|
+
"helpGroup": "GLOBAL",
|
|
824
|
+
"name": "timeout",
|
|
825
|
+
"default": 300,
|
|
826
|
+
"hasDynamicHelp": false,
|
|
827
|
+
"multiple": false,
|
|
828
|
+
"type": "option"
|
|
829
|
+
},
|
|
830
|
+
"describe": {
|
|
831
|
+
"description": "Emit compact machine-readable command description.",
|
|
832
|
+
"helpGroup": "GLOBAL",
|
|
833
|
+
"name": "describe",
|
|
834
|
+
"allowNo": false,
|
|
835
|
+
"type": "boolean"
|
|
836
|
+
},
|
|
837
|
+
"schema": {
|
|
838
|
+
"description": "Emit full machine-readable command schema.",
|
|
839
|
+
"helpGroup": "GLOBAL",
|
|
840
|
+
"name": "schema",
|
|
841
|
+
"allowNo": false,
|
|
842
|
+
"type": "boolean"
|
|
843
|
+
},
|
|
844
|
+
"version": {
|
|
845
|
+
"char": "v",
|
|
846
|
+
"description": "Emit version envelope.",
|
|
847
|
+
"helpGroup": "GLOBAL",
|
|
848
|
+
"name": "version",
|
|
849
|
+
"allowNo": false,
|
|
850
|
+
"type": "boolean"
|
|
851
|
+
},
|
|
852
|
+
"days": {
|
|
853
|
+
"description": "Window size in days.",
|
|
854
|
+
"name": "days",
|
|
855
|
+
"default": 30,
|
|
856
|
+
"hasDynamicHelp": false,
|
|
857
|
+
"multiple": false,
|
|
858
|
+
"type": "option"
|
|
859
|
+
},
|
|
860
|
+
"service": {
|
|
861
|
+
"description": "Filter to one service.",
|
|
862
|
+
"name": "service",
|
|
863
|
+
"hasDynamicHelp": false,
|
|
864
|
+
"multiple": false,
|
|
865
|
+
"type": "option"
|
|
866
|
+
},
|
|
867
|
+
"daily": {
|
|
868
|
+
"description": "Day-by-day breakdown.",
|
|
869
|
+
"name": "daily",
|
|
870
|
+
"allowNo": false,
|
|
871
|
+
"type": "boolean"
|
|
872
|
+
},
|
|
873
|
+
"pricing": {
|
|
874
|
+
"description": "Show current pricing rules.",
|
|
875
|
+
"name": "pricing",
|
|
876
|
+
"allowNo": false,
|
|
877
|
+
"type": "boolean"
|
|
878
|
+
}
|
|
879
|
+
},
|
|
880
|
+
"hasDynamicHelp": false,
|
|
881
|
+
"hiddenAliases": [],
|
|
882
|
+
"id": "usage",
|
|
883
|
+
"pluginAlias": "@eightstate/escli",
|
|
884
|
+
"pluginName": "@eightstate/escli",
|
|
885
|
+
"pluginType": "core",
|
|
886
|
+
"strict": true,
|
|
887
|
+
"summary": "Show API usage and spend",
|
|
888
|
+
"enableJsonFlag": true,
|
|
889
|
+
"emitsJsonEnvelope": false,
|
|
890
|
+
"errors": [
|
|
891
|
+
"auth.required",
|
|
892
|
+
"auth.invalid",
|
|
893
|
+
"auth.forbidden",
|
|
894
|
+
"api.rate_limited",
|
|
895
|
+
"api.error",
|
|
896
|
+
"gate.unavailable",
|
|
897
|
+
"gate.invalid_response",
|
|
898
|
+
"network.error",
|
|
899
|
+
"network.timeout",
|
|
900
|
+
"usage.fetch_failed"
|
|
901
|
+
],
|
|
902
|
+
"isESM": true,
|
|
903
|
+
"relativePath": [
|
|
904
|
+
"dist",
|
|
905
|
+
"commands",
|
|
906
|
+
"usage.js"
|
|
907
|
+
]
|
|
908
|
+
},
|
|
909
|
+
"version": {
|
|
910
|
+
"aliases": [],
|
|
911
|
+
"args": {},
|
|
912
|
+
"description": "Print the escli version and active default endpoint.",
|
|
913
|
+
"examples": [
|
|
914
|
+
"<%= config.bin %> version",
|
|
915
|
+
"<%= config.bin %> --json version"
|
|
916
|
+
],
|
|
917
|
+
"flags": {
|
|
918
|
+
"json": {
|
|
919
|
+
"description": "Format output as json.",
|
|
920
|
+
"helpGroup": "GLOBAL",
|
|
921
|
+
"name": "json",
|
|
922
|
+
"allowNo": false,
|
|
923
|
+
"type": "boolean"
|
|
924
|
+
},
|
|
925
|
+
"quiet": {
|
|
926
|
+
"description": "Suppress diagnostic output.",
|
|
927
|
+
"name": "quiet",
|
|
928
|
+
"allowNo": false,
|
|
929
|
+
"type": "boolean"
|
|
930
|
+
},
|
|
931
|
+
"api-key": {
|
|
932
|
+
"description": "API key override.",
|
|
933
|
+
"helpGroup": "GLOBAL",
|
|
934
|
+
"name": "api-key",
|
|
935
|
+
"hasDynamicHelp": false,
|
|
936
|
+
"multiple": false,
|
|
937
|
+
"type": "option"
|
|
938
|
+
},
|
|
939
|
+
"base-url": {
|
|
940
|
+
"description": "Base URL override.",
|
|
941
|
+
"helpGroup": "GLOBAL",
|
|
942
|
+
"name": "base-url",
|
|
943
|
+
"hasDynamicHelp": false,
|
|
944
|
+
"multiple": false,
|
|
945
|
+
"type": "option"
|
|
946
|
+
},
|
|
947
|
+
"timeout": {
|
|
948
|
+
"description": "Request timeout in seconds.",
|
|
949
|
+
"helpGroup": "GLOBAL",
|
|
950
|
+
"name": "timeout",
|
|
951
|
+
"default": 300,
|
|
952
|
+
"hasDynamicHelp": false,
|
|
953
|
+
"multiple": false,
|
|
954
|
+
"type": "option"
|
|
955
|
+
},
|
|
956
|
+
"describe": {
|
|
957
|
+
"description": "Emit compact machine-readable command description.",
|
|
958
|
+
"helpGroup": "GLOBAL",
|
|
959
|
+
"name": "describe",
|
|
960
|
+
"allowNo": false,
|
|
961
|
+
"type": "boolean"
|
|
962
|
+
},
|
|
963
|
+
"schema": {
|
|
964
|
+
"description": "Emit full machine-readable command schema.",
|
|
965
|
+
"helpGroup": "GLOBAL",
|
|
966
|
+
"name": "schema",
|
|
967
|
+
"allowNo": false,
|
|
968
|
+
"type": "boolean"
|
|
969
|
+
},
|
|
970
|
+
"version": {
|
|
971
|
+
"char": "v",
|
|
972
|
+
"description": "Emit version envelope.",
|
|
973
|
+
"helpGroup": "GLOBAL",
|
|
974
|
+
"name": "version",
|
|
975
|
+
"allowNo": false,
|
|
976
|
+
"type": "boolean"
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
"hasDynamicHelp": false,
|
|
980
|
+
"hiddenAliases": [],
|
|
981
|
+
"id": "version",
|
|
982
|
+
"pluginAlias": "@eightstate/escli",
|
|
983
|
+
"pluginName": "@eightstate/escli",
|
|
984
|
+
"pluginType": "core",
|
|
985
|
+
"strict": true,
|
|
986
|
+
"summary": "Show escli version",
|
|
987
|
+
"enableJsonFlag": true,
|
|
988
|
+
"emitsJsonEnvelope": false,
|
|
989
|
+
"errors": [
|
|
990
|
+
"internal"
|
|
991
|
+
],
|
|
992
|
+
"isESM": true,
|
|
993
|
+
"relativePath": [
|
|
994
|
+
"dist",
|
|
995
|
+
"commands",
|
|
996
|
+
"version.js"
|
|
997
|
+
]
|
|
998
|
+
},
|
|
999
|
+
"audio:get": {
|
|
1000
|
+
"aliases": [
|
|
1001
|
+
"audio:g",
|
|
1002
|
+
"au:get",
|
|
1003
|
+
"au:g"
|
|
1004
|
+
],
|
|
1005
|
+
"args": {
|
|
1006
|
+
"transcript_id": {
|
|
1007
|
+
"description": "Transcript ID.",
|
|
1008
|
+
"name": "transcript_id",
|
|
1009
|
+
"required": true
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"description": "Fetch a completed AssemblyAI transcript as text, JSON, SRT, or VTT.",
|
|
1013
|
+
"examples": [
|
|
1014
|
+
"<%= config.bin %> audio get tr_xxx",
|
|
1015
|
+
"<%= config.bin %> audio get tr_xxx --format srt",
|
|
1016
|
+
"<%= config.bin %> audio get tr_xxx -o transcript.txt"
|
|
1017
|
+
],
|
|
1018
|
+
"flags": {
|
|
1019
|
+
"json": {
|
|
1020
|
+
"description": "Format output as json.",
|
|
1021
|
+
"helpGroup": "GLOBAL",
|
|
1022
|
+
"name": "json",
|
|
1023
|
+
"allowNo": false,
|
|
1024
|
+
"type": "boolean"
|
|
1025
|
+
},
|
|
1026
|
+
"quiet": {
|
|
1027
|
+
"description": "Suppress diagnostic output.",
|
|
1028
|
+
"name": "quiet",
|
|
1029
|
+
"allowNo": false,
|
|
1030
|
+
"type": "boolean"
|
|
1031
|
+
},
|
|
1032
|
+
"api-key": {
|
|
1033
|
+
"description": "API key override.",
|
|
1034
|
+
"helpGroup": "GLOBAL",
|
|
1035
|
+
"name": "api-key",
|
|
1036
|
+
"hasDynamicHelp": false,
|
|
1037
|
+
"multiple": false,
|
|
1038
|
+
"type": "option"
|
|
1039
|
+
},
|
|
1040
|
+
"base-url": {
|
|
1041
|
+
"description": "Base URL override.",
|
|
1042
|
+
"helpGroup": "GLOBAL",
|
|
1043
|
+
"name": "base-url",
|
|
1044
|
+
"hasDynamicHelp": false,
|
|
1045
|
+
"multiple": false,
|
|
1046
|
+
"type": "option"
|
|
1047
|
+
},
|
|
1048
|
+
"timeout": {
|
|
1049
|
+
"description": "Request timeout in seconds.",
|
|
1050
|
+
"helpGroup": "GLOBAL",
|
|
1051
|
+
"name": "timeout",
|
|
1052
|
+
"default": 300,
|
|
1053
|
+
"hasDynamicHelp": false,
|
|
1054
|
+
"multiple": false,
|
|
1055
|
+
"type": "option"
|
|
1056
|
+
},
|
|
1057
|
+
"describe": {
|
|
1058
|
+
"description": "Emit compact machine-readable command description.",
|
|
1059
|
+
"helpGroup": "GLOBAL",
|
|
1060
|
+
"name": "describe",
|
|
1061
|
+
"allowNo": false,
|
|
1062
|
+
"type": "boolean"
|
|
1063
|
+
},
|
|
1064
|
+
"schema": {
|
|
1065
|
+
"description": "Emit full machine-readable command schema.",
|
|
1066
|
+
"helpGroup": "GLOBAL",
|
|
1067
|
+
"name": "schema",
|
|
1068
|
+
"allowNo": false,
|
|
1069
|
+
"type": "boolean"
|
|
1070
|
+
},
|
|
1071
|
+
"version": {
|
|
1072
|
+
"char": "v",
|
|
1073
|
+
"description": "Emit version envelope.",
|
|
1074
|
+
"helpGroup": "GLOBAL",
|
|
1075
|
+
"name": "version",
|
|
1076
|
+
"allowNo": false,
|
|
1077
|
+
"type": "boolean"
|
|
1078
|
+
},
|
|
1079
|
+
"format": {
|
|
1080
|
+
"description": "Output format.",
|
|
1081
|
+
"name": "format",
|
|
1082
|
+
"default": "text",
|
|
1083
|
+
"hasDynamicHelp": false,
|
|
1084
|
+
"multiple": false,
|
|
1085
|
+
"options": [
|
|
1086
|
+
"text",
|
|
1087
|
+
"json",
|
|
1088
|
+
"srt",
|
|
1089
|
+
"vtt"
|
|
1090
|
+
],
|
|
1091
|
+
"type": "option"
|
|
1092
|
+
},
|
|
1093
|
+
"output": {
|
|
1094
|
+
"char": "o",
|
|
1095
|
+
"description": "Output file.",
|
|
1096
|
+
"name": "output",
|
|
1097
|
+
"hasDynamicHelp": false,
|
|
1098
|
+
"multiple": false,
|
|
1099
|
+
"type": "option"
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"hasDynamicHelp": false,
|
|
1103
|
+
"hiddenAliases": [],
|
|
1104
|
+
"id": "audio:get",
|
|
1105
|
+
"pluginAlias": "@eightstate/escli",
|
|
1106
|
+
"pluginName": "@eightstate/escli",
|
|
1107
|
+
"pluginType": "core",
|
|
1108
|
+
"strict": true,
|
|
1109
|
+
"summary": "Fetch a completed transcript",
|
|
1110
|
+
"enableJsonFlag": true,
|
|
1111
|
+
"emitsJsonEnvelope": false,
|
|
1112
|
+
"errors": [
|
|
1113
|
+
"usage.required",
|
|
1114
|
+
"usage.unknown_flag",
|
|
1115
|
+
"auth.required",
|
|
1116
|
+
"gate.credential_unavailable",
|
|
1117
|
+
"api.unauthorized",
|
|
1118
|
+
"api.forbidden",
|
|
1119
|
+
"api.rate_limited",
|
|
1120
|
+
"api.error",
|
|
1121
|
+
"network.error",
|
|
1122
|
+
"network.timeout",
|
|
1123
|
+
"service.unavailable",
|
|
1124
|
+
"gate.invalid_response",
|
|
1125
|
+
"file.write_failed",
|
|
1126
|
+
"audio.transcription_failed",
|
|
1127
|
+
"audio.transcript_not_found"
|
|
1128
|
+
],
|
|
1129
|
+
"isESM": true,
|
|
1130
|
+
"relativePath": [
|
|
1131
|
+
"dist",
|
|
1132
|
+
"commands",
|
|
1133
|
+
"audio",
|
|
1134
|
+
"get.js"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"audio": {
|
|
1138
|
+
"aliases": [
|
|
1139
|
+
"au"
|
|
1140
|
+
],
|
|
1141
|
+
"args": {},
|
|
1142
|
+
"description": "Use audio transcribe, audio status, audio get, or audio list.",
|
|
1143
|
+
"examples": [
|
|
1144
|
+
"<%= config.bin %> audio transcribe meeting.mp3",
|
|
1145
|
+
"<%= config.bin %> audio status tr_xxx",
|
|
1146
|
+
"<%= config.bin %> audio list"
|
|
1147
|
+
],
|
|
1148
|
+
"flags": {
|
|
1149
|
+
"json": {
|
|
1150
|
+
"description": "Format output as json.",
|
|
1151
|
+
"helpGroup": "GLOBAL",
|
|
1152
|
+
"name": "json",
|
|
1153
|
+
"allowNo": false,
|
|
1154
|
+
"type": "boolean"
|
|
1155
|
+
},
|
|
1156
|
+
"quiet": {
|
|
1157
|
+
"description": "Suppress diagnostic output.",
|
|
1158
|
+
"name": "quiet",
|
|
1159
|
+
"allowNo": false,
|
|
1160
|
+
"type": "boolean"
|
|
1161
|
+
},
|
|
1162
|
+
"api-key": {
|
|
1163
|
+
"description": "API key override.",
|
|
1164
|
+
"helpGroup": "GLOBAL",
|
|
1165
|
+
"name": "api-key",
|
|
1166
|
+
"hasDynamicHelp": false,
|
|
1167
|
+
"multiple": false,
|
|
1168
|
+
"type": "option"
|
|
1169
|
+
},
|
|
1170
|
+
"base-url": {
|
|
1171
|
+
"description": "Base URL override.",
|
|
1172
|
+
"helpGroup": "GLOBAL",
|
|
1173
|
+
"name": "base-url",
|
|
1174
|
+
"hasDynamicHelp": false,
|
|
1175
|
+
"multiple": false,
|
|
1176
|
+
"type": "option"
|
|
1177
|
+
},
|
|
1178
|
+
"timeout": {
|
|
1179
|
+
"description": "Request timeout in seconds.",
|
|
1180
|
+
"helpGroup": "GLOBAL",
|
|
1181
|
+
"name": "timeout",
|
|
1182
|
+
"default": 300,
|
|
1183
|
+
"hasDynamicHelp": false,
|
|
1184
|
+
"multiple": false,
|
|
1185
|
+
"type": "option"
|
|
1186
|
+
},
|
|
1187
|
+
"describe": {
|
|
1188
|
+
"description": "Emit compact machine-readable command description.",
|
|
1189
|
+
"helpGroup": "GLOBAL",
|
|
1190
|
+
"name": "describe",
|
|
1191
|
+
"allowNo": false,
|
|
1192
|
+
"type": "boolean"
|
|
1193
|
+
},
|
|
1194
|
+
"schema": {
|
|
1195
|
+
"description": "Emit full machine-readable command schema.",
|
|
1196
|
+
"helpGroup": "GLOBAL",
|
|
1197
|
+
"name": "schema",
|
|
1198
|
+
"allowNo": false,
|
|
1199
|
+
"type": "boolean"
|
|
1200
|
+
},
|
|
1201
|
+
"version": {
|
|
1202
|
+
"char": "v",
|
|
1203
|
+
"description": "Emit version envelope.",
|
|
1204
|
+
"helpGroup": "GLOBAL",
|
|
1205
|
+
"name": "version",
|
|
1206
|
+
"allowNo": false,
|
|
1207
|
+
"type": "boolean"
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"hasDynamicHelp": false,
|
|
1211
|
+
"hiddenAliases": [],
|
|
1212
|
+
"id": "audio",
|
|
1213
|
+
"pluginAlias": "@eightstate/escli",
|
|
1214
|
+
"pluginName": "@eightstate/escli",
|
|
1215
|
+
"pluginType": "core",
|
|
1216
|
+
"strict": true,
|
|
1217
|
+
"summary": "Transcribe and manage audio transcripts",
|
|
1218
|
+
"enableJsonFlag": true,
|
|
1219
|
+
"emitsJsonEnvelope": false,
|
|
1220
|
+
"errors": [
|
|
1221
|
+
"usage.invalid"
|
|
1222
|
+
],
|
|
1223
|
+
"isESM": true,
|
|
1224
|
+
"relativePath": [
|
|
1225
|
+
"dist",
|
|
1226
|
+
"commands",
|
|
1227
|
+
"audio",
|
|
1228
|
+
"index.js"
|
|
1229
|
+
]
|
|
1230
|
+
},
|
|
1231
|
+
"audio:list": {
|
|
1232
|
+
"aliases": [
|
|
1233
|
+
"audio:ls",
|
|
1234
|
+
"au:list",
|
|
1235
|
+
"au:ls"
|
|
1236
|
+
],
|
|
1237
|
+
"args": {},
|
|
1238
|
+
"description": "List recent AssemblyAI transcripts.",
|
|
1239
|
+
"examples": [
|
|
1240
|
+
"<%= config.bin %> audio list",
|
|
1241
|
+
"<%= config.bin %> --json audio list"
|
|
1242
|
+
],
|
|
1243
|
+
"flags": {
|
|
1244
|
+
"json": {
|
|
1245
|
+
"description": "Format output as json.",
|
|
1246
|
+
"helpGroup": "GLOBAL",
|
|
1247
|
+
"name": "json",
|
|
1248
|
+
"allowNo": false,
|
|
1249
|
+
"type": "boolean"
|
|
1250
|
+
},
|
|
1251
|
+
"quiet": {
|
|
1252
|
+
"description": "Suppress diagnostic output.",
|
|
1253
|
+
"name": "quiet",
|
|
1254
|
+
"allowNo": false,
|
|
1255
|
+
"type": "boolean"
|
|
1256
|
+
},
|
|
1257
|
+
"api-key": {
|
|
1258
|
+
"description": "API key override.",
|
|
1259
|
+
"helpGroup": "GLOBAL",
|
|
1260
|
+
"name": "api-key",
|
|
1261
|
+
"hasDynamicHelp": false,
|
|
1262
|
+
"multiple": false,
|
|
1263
|
+
"type": "option"
|
|
1264
|
+
},
|
|
1265
|
+
"base-url": {
|
|
1266
|
+
"description": "Base URL override.",
|
|
1267
|
+
"helpGroup": "GLOBAL",
|
|
1268
|
+
"name": "base-url",
|
|
1269
|
+
"hasDynamicHelp": false,
|
|
1270
|
+
"multiple": false,
|
|
1271
|
+
"type": "option"
|
|
1272
|
+
},
|
|
1273
|
+
"timeout": {
|
|
1274
|
+
"description": "Request timeout in seconds.",
|
|
1275
|
+
"helpGroup": "GLOBAL",
|
|
1276
|
+
"name": "timeout",
|
|
1277
|
+
"default": 300,
|
|
1278
|
+
"hasDynamicHelp": false,
|
|
1279
|
+
"multiple": false,
|
|
1280
|
+
"type": "option"
|
|
1281
|
+
},
|
|
1282
|
+
"describe": {
|
|
1283
|
+
"description": "Emit compact machine-readable command description.",
|
|
1284
|
+
"helpGroup": "GLOBAL",
|
|
1285
|
+
"name": "describe",
|
|
1286
|
+
"allowNo": false,
|
|
1287
|
+
"type": "boolean"
|
|
1288
|
+
},
|
|
1289
|
+
"schema": {
|
|
1290
|
+
"description": "Emit full machine-readable command schema.",
|
|
1291
|
+
"helpGroup": "GLOBAL",
|
|
1292
|
+
"name": "schema",
|
|
1293
|
+
"allowNo": false,
|
|
1294
|
+
"type": "boolean"
|
|
1295
|
+
},
|
|
1296
|
+
"version": {
|
|
1297
|
+
"char": "v",
|
|
1298
|
+
"description": "Emit version envelope.",
|
|
1299
|
+
"helpGroup": "GLOBAL",
|
|
1300
|
+
"name": "version",
|
|
1301
|
+
"allowNo": false,
|
|
1302
|
+
"type": "boolean"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"hasDynamicHelp": false,
|
|
1306
|
+
"hiddenAliases": [],
|
|
1307
|
+
"id": "audio:list",
|
|
1308
|
+
"pluginAlias": "@eightstate/escli",
|
|
1309
|
+
"pluginName": "@eightstate/escli",
|
|
1310
|
+
"pluginType": "core",
|
|
1311
|
+
"strict": true,
|
|
1312
|
+
"summary": "List recent transcripts",
|
|
1313
|
+
"enableJsonFlag": true,
|
|
1314
|
+
"emitsJsonEnvelope": false,
|
|
1315
|
+
"errors": [
|
|
1316
|
+
"auth.required",
|
|
1317
|
+
"gate.credential_unavailable",
|
|
1318
|
+
"api.unauthorized",
|
|
1319
|
+
"api.forbidden",
|
|
1320
|
+
"api.rate_limited",
|
|
1321
|
+
"api.error",
|
|
1322
|
+
"network.error",
|
|
1323
|
+
"network.timeout",
|
|
1324
|
+
"service.unavailable",
|
|
1325
|
+
"gate.invalid_response"
|
|
1326
|
+
],
|
|
1327
|
+
"isESM": true,
|
|
1328
|
+
"relativePath": [
|
|
1329
|
+
"dist",
|
|
1330
|
+
"commands",
|
|
1331
|
+
"audio",
|
|
1332
|
+
"list.js"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
"audio:status": {
|
|
1336
|
+
"aliases": [
|
|
1337
|
+
"audio:s",
|
|
1338
|
+
"au:status",
|
|
1339
|
+
"au:s"
|
|
1340
|
+
],
|
|
1341
|
+
"args": {
|
|
1342
|
+
"transcript_id": {
|
|
1343
|
+
"description": "Transcript ID.",
|
|
1344
|
+
"name": "transcript_id",
|
|
1345
|
+
"required": true
|
|
1346
|
+
}
|
|
1347
|
+
},
|
|
1348
|
+
"description": "Fetch an AssemblyAI transcript job status.",
|
|
1349
|
+
"examples": [
|
|
1350
|
+
"<%= config.bin %> audio status tr_xxx",
|
|
1351
|
+
"<%= config.bin %> --json audio status tr_xxx"
|
|
1352
|
+
],
|
|
1353
|
+
"flags": {
|
|
1354
|
+
"json": {
|
|
1355
|
+
"description": "Format output as json.",
|
|
1356
|
+
"helpGroup": "GLOBAL",
|
|
1357
|
+
"name": "json",
|
|
1358
|
+
"allowNo": false,
|
|
1359
|
+
"type": "boolean"
|
|
1360
|
+
},
|
|
1361
|
+
"quiet": {
|
|
1362
|
+
"description": "Suppress diagnostic output.",
|
|
1363
|
+
"name": "quiet",
|
|
1364
|
+
"allowNo": false,
|
|
1365
|
+
"type": "boolean"
|
|
1366
|
+
},
|
|
1367
|
+
"api-key": {
|
|
1368
|
+
"description": "API key override.",
|
|
1369
|
+
"helpGroup": "GLOBAL",
|
|
1370
|
+
"name": "api-key",
|
|
1371
|
+
"hasDynamicHelp": false,
|
|
1372
|
+
"multiple": false,
|
|
1373
|
+
"type": "option"
|
|
1374
|
+
},
|
|
1375
|
+
"base-url": {
|
|
1376
|
+
"description": "Base URL override.",
|
|
1377
|
+
"helpGroup": "GLOBAL",
|
|
1378
|
+
"name": "base-url",
|
|
1379
|
+
"hasDynamicHelp": false,
|
|
1380
|
+
"multiple": false,
|
|
1381
|
+
"type": "option"
|
|
1382
|
+
},
|
|
1383
|
+
"timeout": {
|
|
1384
|
+
"description": "Request timeout in seconds.",
|
|
1385
|
+
"helpGroup": "GLOBAL",
|
|
1386
|
+
"name": "timeout",
|
|
1387
|
+
"default": 300,
|
|
1388
|
+
"hasDynamicHelp": false,
|
|
1389
|
+
"multiple": false,
|
|
1390
|
+
"type": "option"
|
|
1391
|
+
},
|
|
1392
|
+
"describe": {
|
|
1393
|
+
"description": "Emit compact machine-readable command description.",
|
|
1394
|
+
"helpGroup": "GLOBAL",
|
|
1395
|
+
"name": "describe",
|
|
1396
|
+
"allowNo": false,
|
|
1397
|
+
"type": "boolean"
|
|
1398
|
+
},
|
|
1399
|
+
"schema": {
|
|
1400
|
+
"description": "Emit full machine-readable command schema.",
|
|
1401
|
+
"helpGroup": "GLOBAL",
|
|
1402
|
+
"name": "schema",
|
|
1403
|
+
"allowNo": false,
|
|
1404
|
+
"type": "boolean"
|
|
1405
|
+
},
|
|
1406
|
+
"version": {
|
|
1407
|
+
"char": "v",
|
|
1408
|
+
"description": "Emit version envelope.",
|
|
1409
|
+
"helpGroup": "GLOBAL",
|
|
1410
|
+
"name": "version",
|
|
1411
|
+
"allowNo": false,
|
|
1412
|
+
"type": "boolean"
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"hasDynamicHelp": false,
|
|
1416
|
+
"hiddenAliases": [],
|
|
1417
|
+
"id": "audio:status",
|
|
1418
|
+
"pluginAlias": "@eightstate/escli",
|
|
1419
|
+
"pluginName": "@eightstate/escli",
|
|
1420
|
+
"pluginType": "core",
|
|
1421
|
+
"strict": true,
|
|
1422
|
+
"summary": "Check transcript status",
|
|
1423
|
+
"enableJsonFlag": true,
|
|
1424
|
+
"emitsJsonEnvelope": false,
|
|
1425
|
+
"errors": [
|
|
1426
|
+
"usage.required",
|
|
1427
|
+
"usage.unknown_flag",
|
|
1428
|
+
"auth.required",
|
|
1429
|
+
"gate.credential_unavailable",
|
|
1430
|
+
"api.unauthorized",
|
|
1431
|
+
"api.forbidden",
|
|
1432
|
+
"api.rate_limited",
|
|
1433
|
+
"api.error",
|
|
1434
|
+
"network.error",
|
|
1435
|
+
"network.timeout",
|
|
1436
|
+
"service.unavailable",
|
|
1437
|
+
"gate.invalid_response",
|
|
1438
|
+
"audio.transcript_not_found"
|
|
1439
|
+
],
|
|
1440
|
+
"isESM": true,
|
|
1441
|
+
"relativePath": [
|
|
1442
|
+
"dist",
|
|
1443
|
+
"commands",
|
|
1444
|
+
"audio",
|
|
1445
|
+
"status.js"
|
|
1446
|
+
]
|
|
1447
|
+
},
|
|
1448
|
+
"audio:transcribe": {
|
|
1449
|
+
"aliases": [
|
|
1450
|
+
"audio:t",
|
|
1451
|
+
"au:transcribe",
|
|
1452
|
+
"au:t"
|
|
1453
|
+
],
|
|
1454
|
+
"args": {
|
|
1455
|
+
"source": {
|
|
1456
|
+
"description": "Audio file path or URL.",
|
|
1457
|
+
"name": "source",
|
|
1458
|
+
"required": true
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"description": "Upload a local audio file or submit an audio URL to AssemblyAI, poll to completion, and return transcript output.",
|
|
1462
|
+
"examples": [
|
|
1463
|
+
"<%= config.bin %> audio transcribe meeting.mp3 --speakers",
|
|
1464
|
+
"<%= config.bin %> audio transcribe https://example.com/audio.mp3 --speakers-expected 3",
|
|
1465
|
+
"<%= config.bin %> --json audio transcribe file.mp3"
|
|
1466
|
+
],
|
|
1467
|
+
"flags": {
|
|
1468
|
+
"json": {
|
|
1469
|
+
"description": "Format output as json.",
|
|
1470
|
+
"helpGroup": "GLOBAL",
|
|
1471
|
+
"name": "json",
|
|
1472
|
+
"allowNo": false,
|
|
1473
|
+
"type": "boolean"
|
|
1474
|
+
},
|
|
1475
|
+
"quiet": {
|
|
1476
|
+
"description": "Suppress diagnostic output.",
|
|
1477
|
+
"name": "quiet",
|
|
1478
|
+
"allowNo": false,
|
|
1479
|
+
"type": "boolean"
|
|
1480
|
+
},
|
|
1481
|
+
"api-key": {
|
|
1482
|
+
"description": "API key override.",
|
|
1483
|
+
"helpGroup": "GLOBAL",
|
|
1484
|
+
"name": "api-key",
|
|
1485
|
+
"hasDynamicHelp": false,
|
|
1486
|
+
"multiple": false,
|
|
1487
|
+
"type": "option"
|
|
1488
|
+
},
|
|
1489
|
+
"base-url": {
|
|
1490
|
+
"description": "Base URL override.",
|
|
1491
|
+
"helpGroup": "GLOBAL",
|
|
1492
|
+
"name": "base-url",
|
|
1493
|
+
"hasDynamicHelp": false,
|
|
1494
|
+
"multiple": false,
|
|
1495
|
+
"type": "option"
|
|
1496
|
+
},
|
|
1497
|
+
"timeout": {
|
|
1498
|
+
"description": "Request timeout in seconds.",
|
|
1499
|
+
"helpGroup": "GLOBAL",
|
|
1500
|
+
"name": "timeout",
|
|
1501
|
+
"default": 300,
|
|
1502
|
+
"hasDynamicHelp": false,
|
|
1503
|
+
"multiple": false,
|
|
1504
|
+
"type": "option"
|
|
1505
|
+
},
|
|
1506
|
+
"describe": {
|
|
1507
|
+
"description": "Emit compact machine-readable command description.",
|
|
1508
|
+
"helpGroup": "GLOBAL",
|
|
1509
|
+
"name": "describe",
|
|
1510
|
+
"allowNo": false,
|
|
1511
|
+
"type": "boolean"
|
|
1512
|
+
},
|
|
1513
|
+
"schema": {
|
|
1514
|
+
"description": "Emit full machine-readable command schema.",
|
|
1515
|
+
"helpGroup": "GLOBAL",
|
|
1516
|
+
"name": "schema",
|
|
1517
|
+
"allowNo": false,
|
|
1518
|
+
"type": "boolean"
|
|
1519
|
+
},
|
|
1520
|
+
"version": {
|
|
1521
|
+
"char": "v",
|
|
1522
|
+
"description": "Emit version envelope.",
|
|
1523
|
+
"helpGroup": "GLOBAL",
|
|
1524
|
+
"name": "version",
|
|
1525
|
+
"allowNo": false,
|
|
1526
|
+
"type": "boolean"
|
|
1527
|
+
},
|
|
1528
|
+
"output": {
|
|
1529
|
+
"char": "o",
|
|
1530
|
+
"description": "Output file.",
|
|
1531
|
+
"name": "output",
|
|
1532
|
+
"hasDynamicHelp": false,
|
|
1533
|
+
"multiple": false,
|
|
1534
|
+
"type": "option"
|
|
1535
|
+
},
|
|
1536
|
+
"format": {
|
|
1537
|
+
"description": "Output format.",
|
|
1538
|
+
"name": "format",
|
|
1539
|
+
"default": "text",
|
|
1540
|
+
"hasDynamicHelp": false,
|
|
1541
|
+
"multiple": false,
|
|
1542
|
+
"options": [
|
|
1543
|
+
"text",
|
|
1544
|
+
"json",
|
|
1545
|
+
"srt",
|
|
1546
|
+
"vtt"
|
|
1547
|
+
],
|
|
1548
|
+
"type": "option"
|
|
1549
|
+
},
|
|
1550
|
+
"speakers": {
|
|
1551
|
+
"description": "Enable speaker diarization.",
|
|
1552
|
+
"name": "speakers",
|
|
1553
|
+
"allowNo": false,
|
|
1554
|
+
"type": "boolean"
|
|
1555
|
+
},
|
|
1556
|
+
"speakers-expected": {
|
|
1557
|
+
"description": "Expected speaker count.",
|
|
1558
|
+
"name": "speakers-expected",
|
|
1559
|
+
"hasDynamicHelp": false,
|
|
1560
|
+
"multiple": false,
|
|
1561
|
+
"type": "option"
|
|
1562
|
+
},
|
|
1563
|
+
"speaker-names": {
|
|
1564
|
+
"description": "Identify speakers by name, comma-separated.",
|
|
1565
|
+
"name": "speaker-names",
|
|
1566
|
+
"hasDynamicHelp": false,
|
|
1567
|
+
"multiple": false,
|
|
1568
|
+
"type": "option"
|
|
1569
|
+
},
|
|
1570
|
+
"sentiment": {
|
|
1571
|
+
"description": "Enable sentiment analysis.",
|
|
1572
|
+
"name": "sentiment",
|
|
1573
|
+
"allowNo": false,
|
|
1574
|
+
"type": "boolean"
|
|
1575
|
+
},
|
|
1576
|
+
"chapters": {
|
|
1577
|
+
"description": "Enable auto chapters.",
|
|
1578
|
+
"name": "chapters",
|
|
1579
|
+
"allowNo": false,
|
|
1580
|
+
"type": "boolean"
|
|
1581
|
+
},
|
|
1582
|
+
"entities": {
|
|
1583
|
+
"description": "Enable entity detection.",
|
|
1584
|
+
"name": "entities",
|
|
1585
|
+
"allowNo": false,
|
|
1586
|
+
"type": "boolean"
|
|
1587
|
+
},
|
|
1588
|
+
"summarize": {
|
|
1589
|
+
"description": "Enable summarization.",
|
|
1590
|
+
"name": "summarize",
|
|
1591
|
+
"allowNo": false,
|
|
1592
|
+
"type": "boolean"
|
|
1593
|
+
},
|
|
1594
|
+
"highlights": {
|
|
1595
|
+
"description": "Enable auto highlights.",
|
|
1596
|
+
"name": "highlights",
|
|
1597
|
+
"allowNo": false,
|
|
1598
|
+
"type": "boolean"
|
|
1599
|
+
},
|
|
1600
|
+
"topics": {
|
|
1601
|
+
"description": "Enable topic detection.",
|
|
1602
|
+
"name": "topics",
|
|
1603
|
+
"allowNo": false,
|
|
1604
|
+
"type": "boolean"
|
|
1605
|
+
},
|
|
1606
|
+
"content-safety": {
|
|
1607
|
+
"description": "Enable content safety detection.",
|
|
1608
|
+
"name": "content-safety",
|
|
1609
|
+
"allowNo": false,
|
|
1610
|
+
"type": "boolean"
|
|
1611
|
+
},
|
|
1612
|
+
"language": {
|
|
1613
|
+
"description": "Language code. Defaults to auto-detection.",
|
|
1614
|
+
"name": "language",
|
|
1615
|
+
"hasDynamicHelp": false,
|
|
1616
|
+
"multiple": false,
|
|
1617
|
+
"type": "option"
|
|
1618
|
+
},
|
|
1619
|
+
"dual-channel": {
|
|
1620
|
+
"description": "Enable dual-channel transcription.",
|
|
1621
|
+
"name": "dual-channel",
|
|
1622
|
+
"allowNo": false,
|
|
1623
|
+
"type": "boolean"
|
|
1624
|
+
},
|
|
1625
|
+
"multichannel": {
|
|
1626
|
+
"description": "Enable multichannel transcription.",
|
|
1627
|
+
"name": "multichannel",
|
|
1628
|
+
"allowNo": false,
|
|
1629
|
+
"type": "boolean"
|
|
1630
|
+
},
|
|
1631
|
+
"word-boost": {
|
|
1632
|
+
"description": "Boost accuracy for comma-separated words.",
|
|
1633
|
+
"name": "word-boost",
|
|
1634
|
+
"hasDynamicHelp": false,
|
|
1635
|
+
"multiple": false,
|
|
1636
|
+
"type": "option"
|
|
1637
|
+
},
|
|
1638
|
+
"disfluencies": {
|
|
1639
|
+
"description": "Include filler words.",
|
|
1640
|
+
"name": "disfluencies",
|
|
1641
|
+
"allowNo": false,
|
|
1642
|
+
"type": "boolean"
|
|
1643
|
+
},
|
|
1644
|
+
"filter-profanity": {
|
|
1645
|
+
"description": "Filter profanity.",
|
|
1646
|
+
"name": "filter-profanity",
|
|
1647
|
+
"allowNo": false,
|
|
1648
|
+
"type": "boolean"
|
|
1649
|
+
},
|
|
1650
|
+
"redact-pii": {
|
|
1651
|
+
"description": "Redact personally identifiable information.",
|
|
1652
|
+
"name": "redact-pii",
|
|
1653
|
+
"allowNo": false,
|
|
1654
|
+
"type": "boolean"
|
|
1655
|
+
}
|
|
1656
|
+
},
|
|
1657
|
+
"hasDynamicHelp": false,
|
|
1658
|
+
"hiddenAliases": [],
|
|
1659
|
+
"id": "audio:transcribe",
|
|
1660
|
+
"pluginAlias": "@eightstate/escli",
|
|
1661
|
+
"pluginName": "@eightstate/escli",
|
|
1662
|
+
"pluginType": "core",
|
|
1663
|
+
"strict": true,
|
|
1664
|
+
"summary": "Transcribe an audio file or URL",
|
|
1665
|
+
"enableJsonFlag": true,
|
|
1666
|
+
"emitsJsonEnvelope": false,
|
|
1667
|
+
"errors": [
|
|
1668
|
+
"usage.required",
|
|
1669
|
+
"usage.unknown_flag",
|
|
1670
|
+
"auth.required",
|
|
1671
|
+
"gate.credential_unavailable",
|
|
1672
|
+
"api.unauthorized",
|
|
1673
|
+
"api.forbidden",
|
|
1674
|
+
"api.rate_limited",
|
|
1675
|
+
"api.error",
|
|
1676
|
+
"network.error",
|
|
1677
|
+
"network.timeout",
|
|
1678
|
+
"service.unavailable",
|
|
1679
|
+
"gate.invalid_response",
|
|
1680
|
+
"file.not_found",
|
|
1681
|
+
"file.read_failed",
|
|
1682
|
+
"file.write_failed",
|
|
1683
|
+
"audio.input_missing",
|
|
1684
|
+
"audio.upload_failed",
|
|
1685
|
+
"audio.transcription_failed",
|
|
1686
|
+
"audio.transcript_not_found"
|
|
1687
|
+
],
|
|
1688
|
+
"isESM": true,
|
|
1689
|
+
"relativePath": [
|
|
1690
|
+
"dist",
|
|
1691
|
+
"commands",
|
|
1692
|
+
"audio",
|
|
1693
|
+
"transcribe.js"
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
"auth": {
|
|
1697
|
+
"aliases": [
|
|
1698
|
+
"a"
|
|
1699
|
+
],
|
|
1700
|
+
"args": {},
|
|
1701
|
+
"description": "Use auth login, auth status, auth profiles, auth switch, or auth logout.",
|
|
1702
|
+
"examples": [
|
|
1703
|
+
"<%= config.bin %> auth status",
|
|
1704
|
+
"<%= config.bin %> auth login",
|
|
1705
|
+
"<%= config.bin %> auth profiles"
|
|
1706
|
+
],
|
|
1707
|
+
"flags": {
|
|
1708
|
+
"json": {
|
|
1709
|
+
"description": "Format output as json.",
|
|
1710
|
+
"helpGroup": "GLOBAL",
|
|
1711
|
+
"name": "json",
|
|
1712
|
+
"allowNo": false,
|
|
1713
|
+
"type": "boolean"
|
|
1714
|
+
},
|
|
1715
|
+
"quiet": {
|
|
1716
|
+
"description": "Suppress diagnostic output.",
|
|
1717
|
+
"name": "quiet",
|
|
1718
|
+
"allowNo": false,
|
|
1719
|
+
"type": "boolean"
|
|
1720
|
+
},
|
|
1721
|
+
"api-key": {
|
|
1722
|
+
"description": "API key override.",
|
|
1723
|
+
"helpGroup": "GLOBAL",
|
|
1724
|
+
"name": "api-key",
|
|
1725
|
+
"hasDynamicHelp": false,
|
|
1726
|
+
"multiple": false,
|
|
1727
|
+
"type": "option"
|
|
1728
|
+
},
|
|
1729
|
+
"base-url": {
|
|
1730
|
+
"description": "Base URL override.",
|
|
1731
|
+
"helpGroup": "GLOBAL",
|
|
1732
|
+
"name": "base-url",
|
|
1733
|
+
"hasDynamicHelp": false,
|
|
1734
|
+
"multiple": false,
|
|
1735
|
+
"type": "option"
|
|
1736
|
+
},
|
|
1737
|
+
"timeout": {
|
|
1738
|
+
"description": "Request timeout in seconds.",
|
|
1739
|
+
"helpGroup": "GLOBAL",
|
|
1740
|
+
"name": "timeout",
|
|
1741
|
+
"default": 300,
|
|
1742
|
+
"hasDynamicHelp": false,
|
|
1743
|
+
"multiple": false,
|
|
1744
|
+
"type": "option"
|
|
1745
|
+
},
|
|
1746
|
+
"describe": {
|
|
1747
|
+
"description": "Emit compact machine-readable command description.",
|
|
1748
|
+
"helpGroup": "GLOBAL",
|
|
1749
|
+
"name": "describe",
|
|
1750
|
+
"allowNo": false,
|
|
1751
|
+
"type": "boolean"
|
|
1752
|
+
},
|
|
1753
|
+
"schema": {
|
|
1754
|
+
"description": "Emit full machine-readable command schema.",
|
|
1755
|
+
"helpGroup": "GLOBAL",
|
|
1756
|
+
"name": "schema",
|
|
1757
|
+
"allowNo": false,
|
|
1758
|
+
"type": "boolean"
|
|
1759
|
+
},
|
|
1760
|
+
"version": {
|
|
1761
|
+
"char": "v",
|
|
1762
|
+
"description": "Emit version envelope.",
|
|
1763
|
+
"helpGroup": "GLOBAL",
|
|
1764
|
+
"name": "version",
|
|
1765
|
+
"allowNo": false,
|
|
1766
|
+
"type": "boolean"
|
|
1767
|
+
}
|
|
1768
|
+
},
|
|
1769
|
+
"hasDynamicHelp": false,
|
|
1770
|
+
"hiddenAliases": [],
|
|
1771
|
+
"id": "auth",
|
|
1772
|
+
"pluginAlias": "@eightstate/escli",
|
|
1773
|
+
"pluginName": "@eightstate/escli",
|
|
1774
|
+
"pluginType": "core",
|
|
1775
|
+
"strict": true,
|
|
1776
|
+
"summary": "Authenticate and manage profiles",
|
|
1777
|
+
"enableJsonFlag": true,
|
|
1778
|
+
"emitsJsonEnvelope": false,
|
|
1779
|
+
"errors": [
|
|
1780
|
+
"usage.invalid"
|
|
1781
|
+
],
|
|
1782
|
+
"isESM": true,
|
|
1783
|
+
"relativePath": [
|
|
1784
|
+
"dist",
|
|
1785
|
+
"commands",
|
|
1786
|
+
"auth",
|
|
1787
|
+
"index.js"
|
|
1788
|
+
]
|
|
1789
|
+
},
|
|
1790
|
+
"auth:login": {
|
|
1791
|
+
"aliases": [
|
|
1792
|
+
"auth:l"
|
|
1793
|
+
],
|
|
1794
|
+
"args": {},
|
|
1795
|
+
"description": "Authenticate via browser device flow or store an API key profile.",
|
|
1796
|
+
"examples": [
|
|
1797
|
+
"<%= config.bin %> auth login",
|
|
1798
|
+
"<%= config.bin %> auth login --key sk-xxx",
|
|
1799
|
+
"echo sk-xxx | <%= config.bin %> auth login"
|
|
1800
|
+
],
|
|
1801
|
+
"flags": {
|
|
1802
|
+
"json": {
|
|
1803
|
+
"description": "Format output as json.",
|
|
1804
|
+
"helpGroup": "GLOBAL",
|
|
1805
|
+
"name": "json",
|
|
1806
|
+
"allowNo": false,
|
|
1807
|
+
"type": "boolean"
|
|
1808
|
+
},
|
|
1809
|
+
"quiet": {
|
|
1810
|
+
"description": "Suppress diagnostic output.",
|
|
1811
|
+
"name": "quiet",
|
|
1812
|
+
"allowNo": false,
|
|
1813
|
+
"type": "boolean"
|
|
1814
|
+
},
|
|
1815
|
+
"api-key": {
|
|
1816
|
+
"description": "API key override.",
|
|
1817
|
+
"helpGroup": "GLOBAL",
|
|
1818
|
+
"name": "api-key",
|
|
1819
|
+
"hasDynamicHelp": false,
|
|
1820
|
+
"multiple": false,
|
|
1821
|
+
"type": "option"
|
|
1822
|
+
},
|
|
1823
|
+
"base-url": {
|
|
1824
|
+
"description": "Base URL override.",
|
|
1825
|
+
"helpGroup": "GLOBAL",
|
|
1826
|
+
"name": "base-url",
|
|
1827
|
+
"hasDynamicHelp": false,
|
|
1828
|
+
"multiple": false,
|
|
1829
|
+
"type": "option"
|
|
1830
|
+
},
|
|
1831
|
+
"timeout": {
|
|
1832
|
+
"description": "Request timeout in seconds.",
|
|
1833
|
+
"helpGroup": "GLOBAL",
|
|
1834
|
+
"name": "timeout",
|
|
1835
|
+
"default": 300,
|
|
1836
|
+
"hasDynamicHelp": false,
|
|
1837
|
+
"multiple": false,
|
|
1838
|
+
"type": "option"
|
|
1839
|
+
},
|
|
1840
|
+
"describe": {
|
|
1841
|
+
"description": "Emit compact machine-readable command description.",
|
|
1842
|
+
"helpGroup": "GLOBAL",
|
|
1843
|
+
"name": "describe",
|
|
1844
|
+
"allowNo": false,
|
|
1845
|
+
"type": "boolean"
|
|
1846
|
+
},
|
|
1847
|
+
"schema": {
|
|
1848
|
+
"description": "Emit full machine-readable command schema.",
|
|
1849
|
+
"helpGroup": "GLOBAL",
|
|
1850
|
+
"name": "schema",
|
|
1851
|
+
"allowNo": false,
|
|
1852
|
+
"type": "boolean"
|
|
1853
|
+
},
|
|
1854
|
+
"version": {
|
|
1855
|
+
"char": "v",
|
|
1856
|
+
"description": "Emit version envelope.",
|
|
1857
|
+
"helpGroup": "GLOBAL",
|
|
1858
|
+
"name": "version",
|
|
1859
|
+
"allowNo": false,
|
|
1860
|
+
"type": "boolean"
|
|
1861
|
+
},
|
|
1862
|
+
"key": {
|
|
1863
|
+
"char": "k",
|
|
1864
|
+
"description": "API key for non-interactive login.",
|
|
1865
|
+
"name": "key",
|
|
1866
|
+
"hasDynamicHelp": false,
|
|
1867
|
+
"multiple": false,
|
|
1868
|
+
"type": "option"
|
|
1869
|
+
},
|
|
1870
|
+
"endpoint": {
|
|
1871
|
+
"description": "OpenAI-compatible endpoint for API-key validation.",
|
|
1872
|
+
"name": "endpoint",
|
|
1873
|
+
"hasDynamicHelp": false,
|
|
1874
|
+
"multiple": false,
|
|
1875
|
+
"type": "option"
|
|
1876
|
+
},
|
|
1877
|
+
"profile": {
|
|
1878
|
+
"char": "p",
|
|
1879
|
+
"description": "Profile name.",
|
|
1880
|
+
"name": "profile",
|
|
1881
|
+
"default": "default",
|
|
1882
|
+
"hasDynamicHelp": false,
|
|
1883
|
+
"multiple": false,
|
|
1884
|
+
"type": "option"
|
|
1885
|
+
},
|
|
1886
|
+
"label": {
|
|
1887
|
+
"description": "Human label for the profile.",
|
|
1888
|
+
"name": "label",
|
|
1889
|
+
"hasDynamicHelp": false,
|
|
1890
|
+
"multiple": false,
|
|
1891
|
+
"type": "option"
|
|
1892
|
+
}
|
|
1893
|
+
},
|
|
1894
|
+
"hasDynamicHelp": false,
|
|
1895
|
+
"hiddenAliases": [],
|
|
1896
|
+
"id": "auth:login",
|
|
1897
|
+
"pluginAlias": "@eightstate/escli",
|
|
1898
|
+
"pluginName": "@eightstate/escli",
|
|
1899
|
+
"pluginType": "core",
|
|
1900
|
+
"strict": true,
|
|
1901
|
+
"summary": "Authenticate via browser or API key",
|
|
1902
|
+
"enableJsonFlag": true,
|
|
1903
|
+
"emitsJsonEnvelope": false,
|
|
1904
|
+
"errors": [
|
|
1905
|
+
"auth.invalid",
|
|
1906
|
+
"auth.forbidden",
|
|
1907
|
+
"auth.login_failed",
|
|
1908
|
+
"auth.session_expired",
|
|
1909
|
+
"auth.timeout",
|
|
1910
|
+
"gate.unavailable",
|
|
1911
|
+
"gate.invalid_response",
|
|
1912
|
+
"network.error",
|
|
1913
|
+
"network.timeout"
|
|
1914
|
+
],
|
|
1915
|
+
"isESM": true,
|
|
1916
|
+
"relativePath": [
|
|
1917
|
+
"dist",
|
|
1918
|
+
"commands",
|
|
1919
|
+
"auth",
|
|
1920
|
+
"login.js"
|
|
1921
|
+
]
|
|
1922
|
+
},
|
|
1923
|
+
"auth:logout": {
|
|
1924
|
+
"aliases": [],
|
|
1925
|
+
"args": {},
|
|
1926
|
+
"description": "Remove one stored auth profile or all profiles.",
|
|
1927
|
+
"examples": [
|
|
1928
|
+
"<%= config.bin %> auth logout",
|
|
1929
|
+
"<%= config.bin %> auth logout --profile work",
|
|
1930
|
+
"<%= config.bin %> auth logout --all"
|
|
1931
|
+
],
|
|
1932
|
+
"flags": {
|
|
1933
|
+
"json": {
|
|
1934
|
+
"description": "Format output as json.",
|
|
1935
|
+
"helpGroup": "GLOBAL",
|
|
1936
|
+
"name": "json",
|
|
1937
|
+
"allowNo": false,
|
|
1938
|
+
"type": "boolean"
|
|
1939
|
+
},
|
|
1940
|
+
"quiet": {
|
|
1941
|
+
"description": "Suppress diagnostic output.",
|
|
1942
|
+
"name": "quiet",
|
|
1943
|
+
"allowNo": false,
|
|
1944
|
+
"type": "boolean"
|
|
1945
|
+
},
|
|
1946
|
+
"api-key": {
|
|
1947
|
+
"description": "API key override.",
|
|
1948
|
+
"helpGroup": "GLOBAL",
|
|
1949
|
+
"name": "api-key",
|
|
1950
|
+
"hasDynamicHelp": false,
|
|
1951
|
+
"multiple": false,
|
|
1952
|
+
"type": "option"
|
|
1953
|
+
},
|
|
1954
|
+
"base-url": {
|
|
1955
|
+
"description": "Base URL override.",
|
|
1956
|
+
"helpGroup": "GLOBAL",
|
|
1957
|
+
"name": "base-url",
|
|
1958
|
+
"hasDynamicHelp": false,
|
|
1959
|
+
"multiple": false,
|
|
1960
|
+
"type": "option"
|
|
1961
|
+
},
|
|
1962
|
+
"timeout": {
|
|
1963
|
+
"description": "Request timeout in seconds.",
|
|
1964
|
+
"helpGroup": "GLOBAL",
|
|
1965
|
+
"name": "timeout",
|
|
1966
|
+
"default": 300,
|
|
1967
|
+
"hasDynamicHelp": false,
|
|
1968
|
+
"multiple": false,
|
|
1969
|
+
"type": "option"
|
|
1970
|
+
},
|
|
1971
|
+
"describe": {
|
|
1972
|
+
"description": "Emit compact machine-readable command description.",
|
|
1973
|
+
"helpGroup": "GLOBAL",
|
|
1974
|
+
"name": "describe",
|
|
1975
|
+
"allowNo": false,
|
|
1976
|
+
"type": "boolean"
|
|
1977
|
+
},
|
|
1978
|
+
"schema": {
|
|
1979
|
+
"description": "Emit full machine-readable command schema.",
|
|
1980
|
+
"helpGroup": "GLOBAL",
|
|
1981
|
+
"name": "schema",
|
|
1982
|
+
"allowNo": false,
|
|
1983
|
+
"type": "boolean"
|
|
1984
|
+
},
|
|
1985
|
+
"version": {
|
|
1986
|
+
"char": "v",
|
|
1987
|
+
"description": "Emit version envelope.",
|
|
1988
|
+
"helpGroup": "GLOBAL",
|
|
1989
|
+
"name": "version",
|
|
1990
|
+
"allowNo": false,
|
|
1991
|
+
"type": "boolean"
|
|
1992
|
+
},
|
|
1993
|
+
"profile": {
|
|
1994
|
+
"char": "p",
|
|
1995
|
+
"description": "Profile name to remove.",
|
|
1996
|
+
"name": "profile",
|
|
1997
|
+
"hasDynamicHelp": false,
|
|
1998
|
+
"multiple": false,
|
|
1999
|
+
"type": "option"
|
|
2000
|
+
},
|
|
2001
|
+
"all": {
|
|
2002
|
+
"description": "Remove all profiles.",
|
|
2003
|
+
"name": "all",
|
|
2004
|
+
"allowNo": false,
|
|
2005
|
+
"type": "boolean"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
"hasDynamicHelp": false,
|
|
2009
|
+
"hiddenAliases": [],
|
|
2010
|
+
"id": "auth:logout",
|
|
2011
|
+
"pluginAlias": "@eightstate/escli",
|
|
2012
|
+
"pluginName": "@eightstate/escli",
|
|
2013
|
+
"pluginType": "core",
|
|
2014
|
+
"strict": true,
|
|
2015
|
+
"summary": "Remove stored credentials",
|
|
2016
|
+
"enableJsonFlag": true,
|
|
2017
|
+
"emitsJsonEnvelope": false,
|
|
2018
|
+
"errors": [],
|
|
2019
|
+
"isESM": true,
|
|
2020
|
+
"relativePath": [
|
|
2021
|
+
"dist",
|
|
2022
|
+
"commands",
|
|
2023
|
+
"auth",
|
|
2024
|
+
"logout.js"
|
|
2025
|
+
]
|
|
2026
|
+
},
|
|
2027
|
+
"auth:profiles": {
|
|
2028
|
+
"aliases": [
|
|
2029
|
+
"auth:ls",
|
|
2030
|
+
"auth:list"
|
|
2031
|
+
],
|
|
2032
|
+
"args": {},
|
|
2033
|
+
"description": "List all stored auth profiles.",
|
|
2034
|
+
"examples": [
|
|
2035
|
+
"<%= config.bin %> auth profiles",
|
|
2036
|
+
"<%= config.bin %> auth ls"
|
|
2037
|
+
],
|
|
2038
|
+
"flags": {
|
|
2039
|
+
"json": {
|
|
2040
|
+
"description": "Format output as json.",
|
|
2041
|
+
"helpGroup": "GLOBAL",
|
|
2042
|
+
"name": "json",
|
|
2043
|
+
"allowNo": false,
|
|
2044
|
+
"type": "boolean"
|
|
2045
|
+
},
|
|
2046
|
+
"quiet": {
|
|
2047
|
+
"description": "Suppress diagnostic output.",
|
|
2048
|
+
"name": "quiet",
|
|
2049
|
+
"allowNo": false,
|
|
2050
|
+
"type": "boolean"
|
|
2051
|
+
},
|
|
2052
|
+
"api-key": {
|
|
2053
|
+
"description": "API key override.",
|
|
2054
|
+
"helpGroup": "GLOBAL",
|
|
2055
|
+
"name": "api-key",
|
|
2056
|
+
"hasDynamicHelp": false,
|
|
2057
|
+
"multiple": false,
|
|
2058
|
+
"type": "option"
|
|
2059
|
+
},
|
|
2060
|
+
"base-url": {
|
|
2061
|
+
"description": "Base URL override.",
|
|
2062
|
+
"helpGroup": "GLOBAL",
|
|
2063
|
+
"name": "base-url",
|
|
2064
|
+
"hasDynamicHelp": false,
|
|
2065
|
+
"multiple": false,
|
|
2066
|
+
"type": "option"
|
|
2067
|
+
},
|
|
2068
|
+
"timeout": {
|
|
2069
|
+
"description": "Request timeout in seconds.",
|
|
2070
|
+
"helpGroup": "GLOBAL",
|
|
2071
|
+
"name": "timeout",
|
|
2072
|
+
"default": 300,
|
|
2073
|
+
"hasDynamicHelp": false,
|
|
2074
|
+
"multiple": false,
|
|
2075
|
+
"type": "option"
|
|
2076
|
+
},
|
|
2077
|
+
"describe": {
|
|
2078
|
+
"description": "Emit compact machine-readable command description.",
|
|
2079
|
+
"helpGroup": "GLOBAL",
|
|
2080
|
+
"name": "describe",
|
|
2081
|
+
"allowNo": false,
|
|
2082
|
+
"type": "boolean"
|
|
2083
|
+
},
|
|
2084
|
+
"schema": {
|
|
2085
|
+
"description": "Emit full machine-readable command schema.",
|
|
2086
|
+
"helpGroup": "GLOBAL",
|
|
2087
|
+
"name": "schema",
|
|
2088
|
+
"allowNo": false,
|
|
2089
|
+
"type": "boolean"
|
|
2090
|
+
},
|
|
2091
|
+
"version": {
|
|
2092
|
+
"char": "v",
|
|
2093
|
+
"description": "Emit version envelope.",
|
|
2094
|
+
"helpGroup": "GLOBAL",
|
|
2095
|
+
"name": "version",
|
|
2096
|
+
"allowNo": false,
|
|
2097
|
+
"type": "boolean"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"hasDynamicHelp": false,
|
|
2101
|
+
"hiddenAliases": [],
|
|
2102
|
+
"id": "auth:profiles",
|
|
2103
|
+
"pluginAlias": "@eightstate/escli",
|
|
2104
|
+
"pluginName": "@eightstate/escli",
|
|
2105
|
+
"pluginType": "core",
|
|
2106
|
+
"strict": true,
|
|
2107
|
+
"summary": "List all stored profiles",
|
|
2108
|
+
"enableJsonFlag": true,
|
|
2109
|
+
"emitsJsonEnvelope": false,
|
|
2110
|
+
"errors": [
|
|
2111
|
+
"internal"
|
|
2112
|
+
],
|
|
2113
|
+
"isESM": true,
|
|
2114
|
+
"relativePath": [
|
|
2115
|
+
"dist",
|
|
2116
|
+
"commands",
|
|
2117
|
+
"auth",
|
|
2118
|
+
"profiles.js"
|
|
2119
|
+
]
|
|
2120
|
+
},
|
|
2121
|
+
"auth:status": {
|
|
2122
|
+
"aliases": [
|
|
2123
|
+
"auth:s",
|
|
2124
|
+
"auth:whoami"
|
|
2125
|
+
],
|
|
2126
|
+
"args": {},
|
|
2127
|
+
"description": "Show the active auth profile and credential type.",
|
|
2128
|
+
"examples": [
|
|
2129
|
+
"<%= config.bin %> auth status",
|
|
2130
|
+
"<%= config.bin %> auth whoami"
|
|
2131
|
+
],
|
|
2132
|
+
"flags": {
|
|
2133
|
+
"json": {
|
|
2134
|
+
"description": "Format output as json.",
|
|
2135
|
+
"helpGroup": "GLOBAL",
|
|
2136
|
+
"name": "json",
|
|
2137
|
+
"allowNo": false,
|
|
2138
|
+
"type": "boolean"
|
|
2139
|
+
},
|
|
2140
|
+
"quiet": {
|
|
2141
|
+
"description": "Suppress diagnostic output.",
|
|
2142
|
+
"name": "quiet",
|
|
2143
|
+
"allowNo": false,
|
|
2144
|
+
"type": "boolean"
|
|
2145
|
+
},
|
|
2146
|
+
"api-key": {
|
|
2147
|
+
"description": "API key override.",
|
|
2148
|
+
"helpGroup": "GLOBAL",
|
|
2149
|
+
"name": "api-key",
|
|
2150
|
+
"hasDynamicHelp": false,
|
|
2151
|
+
"multiple": false,
|
|
2152
|
+
"type": "option"
|
|
2153
|
+
},
|
|
2154
|
+
"base-url": {
|
|
2155
|
+
"description": "Base URL override.",
|
|
2156
|
+
"helpGroup": "GLOBAL",
|
|
2157
|
+
"name": "base-url",
|
|
2158
|
+
"hasDynamicHelp": false,
|
|
2159
|
+
"multiple": false,
|
|
2160
|
+
"type": "option"
|
|
2161
|
+
},
|
|
2162
|
+
"timeout": {
|
|
2163
|
+
"description": "Request timeout in seconds.",
|
|
2164
|
+
"helpGroup": "GLOBAL",
|
|
2165
|
+
"name": "timeout",
|
|
2166
|
+
"default": 300,
|
|
2167
|
+
"hasDynamicHelp": false,
|
|
2168
|
+
"multiple": false,
|
|
2169
|
+
"type": "option"
|
|
2170
|
+
},
|
|
2171
|
+
"describe": {
|
|
2172
|
+
"description": "Emit compact machine-readable command description.",
|
|
2173
|
+
"helpGroup": "GLOBAL",
|
|
2174
|
+
"name": "describe",
|
|
2175
|
+
"allowNo": false,
|
|
2176
|
+
"type": "boolean"
|
|
2177
|
+
},
|
|
2178
|
+
"schema": {
|
|
2179
|
+
"description": "Emit full machine-readable command schema.",
|
|
2180
|
+
"helpGroup": "GLOBAL",
|
|
2181
|
+
"name": "schema",
|
|
2182
|
+
"allowNo": false,
|
|
2183
|
+
"type": "boolean"
|
|
2184
|
+
},
|
|
2185
|
+
"version": {
|
|
2186
|
+
"char": "v",
|
|
2187
|
+
"description": "Emit version envelope.",
|
|
2188
|
+
"helpGroup": "GLOBAL",
|
|
2189
|
+
"name": "version",
|
|
2190
|
+
"allowNo": false,
|
|
2191
|
+
"type": "boolean"
|
|
2192
|
+
}
|
|
2193
|
+
},
|
|
2194
|
+
"hasDynamicHelp": false,
|
|
2195
|
+
"hiddenAliases": [],
|
|
2196
|
+
"id": "auth:status",
|
|
2197
|
+
"pluginAlias": "@eightstate/escli",
|
|
2198
|
+
"pluginName": "@eightstate/escli",
|
|
2199
|
+
"pluginType": "core",
|
|
2200
|
+
"strict": true,
|
|
2201
|
+
"summary": "Show current profile and auth state",
|
|
2202
|
+
"enableJsonFlag": true,
|
|
2203
|
+
"emitsJsonEnvelope": false,
|
|
2204
|
+
"errors": [
|
|
2205
|
+
"auth.required"
|
|
2206
|
+
],
|
|
2207
|
+
"isESM": true,
|
|
2208
|
+
"relativePath": [
|
|
2209
|
+
"dist",
|
|
2210
|
+
"commands",
|
|
2211
|
+
"auth",
|
|
2212
|
+
"status.js"
|
|
2213
|
+
]
|
|
2214
|
+
},
|
|
2215
|
+
"auth:switch": {
|
|
2216
|
+
"aliases": [
|
|
2217
|
+
"auth:use"
|
|
2218
|
+
],
|
|
2219
|
+
"args": {
|
|
2220
|
+
"profile": {
|
|
2221
|
+
"description": "Profile name.",
|
|
2222
|
+
"name": "profile",
|
|
2223
|
+
"required": true
|
|
2224
|
+
}
|
|
2225
|
+
},
|
|
2226
|
+
"description": "Switch the active auth profile.",
|
|
2227
|
+
"examples": [
|
|
2228
|
+
"<%= config.bin %> auth switch work",
|
|
2229
|
+
"<%= config.bin %> auth use work"
|
|
2230
|
+
],
|
|
2231
|
+
"flags": {
|
|
2232
|
+
"json": {
|
|
2233
|
+
"description": "Format output as json.",
|
|
2234
|
+
"helpGroup": "GLOBAL",
|
|
2235
|
+
"name": "json",
|
|
2236
|
+
"allowNo": false,
|
|
2237
|
+
"type": "boolean"
|
|
2238
|
+
},
|
|
2239
|
+
"quiet": {
|
|
2240
|
+
"description": "Suppress diagnostic output.",
|
|
2241
|
+
"name": "quiet",
|
|
2242
|
+
"allowNo": false,
|
|
2243
|
+
"type": "boolean"
|
|
2244
|
+
},
|
|
2245
|
+
"api-key": {
|
|
2246
|
+
"description": "API key override.",
|
|
2247
|
+
"helpGroup": "GLOBAL",
|
|
2248
|
+
"name": "api-key",
|
|
2249
|
+
"hasDynamicHelp": false,
|
|
2250
|
+
"multiple": false,
|
|
2251
|
+
"type": "option"
|
|
2252
|
+
},
|
|
2253
|
+
"base-url": {
|
|
2254
|
+
"description": "Base URL override.",
|
|
2255
|
+
"helpGroup": "GLOBAL",
|
|
2256
|
+
"name": "base-url",
|
|
2257
|
+
"hasDynamicHelp": false,
|
|
2258
|
+
"multiple": false,
|
|
2259
|
+
"type": "option"
|
|
2260
|
+
},
|
|
2261
|
+
"timeout": {
|
|
2262
|
+
"description": "Request timeout in seconds.",
|
|
2263
|
+
"helpGroup": "GLOBAL",
|
|
2264
|
+
"name": "timeout",
|
|
2265
|
+
"default": 300,
|
|
2266
|
+
"hasDynamicHelp": false,
|
|
2267
|
+
"multiple": false,
|
|
2268
|
+
"type": "option"
|
|
2269
|
+
},
|
|
2270
|
+
"describe": {
|
|
2271
|
+
"description": "Emit compact machine-readable command description.",
|
|
2272
|
+
"helpGroup": "GLOBAL",
|
|
2273
|
+
"name": "describe",
|
|
2274
|
+
"allowNo": false,
|
|
2275
|
+
"type": "boolean"
|
|
2276
|
+
},
|
|
2277
|
+
"schema": {
|
|
2278
|
+
"description": "Emit full machine-readable command schema.",
|
|
2279
|
+
"helpGroup": "GLOBAL",
|
|
2280
|
+
"name": "schema",
|
|
2281
|
+
"allowNo": false,
|
|
2282
|
+
"type": "boolean"
|
|
2283
|
+
},
|
|
2284
|
+
"version": {
|
|
2285
|
+
"char": "v",
|
|
2286
|
+
"description": "Emit version envelope.",
|
|
2287
|
+
"helpGroup": "GLOBAL",
|
|
2288
|
+
"name": "version",
|
|
2289
|
+
"allowNo": false,
|
|
2290
|
+
"type": "boolean"
|
|
2291
|
+
}
|
|
2292
|
+
},
|
|
2293
|
+
"hasDynamicHelp": false,
|
|
2294
|
+
"hiddenAliases": [],
|
|
2295
|
+
"id": "auth:switch",
|
|
2296
|
+
"pluginAlias": "@eightstate/escli",
|
|
2297
|
+
"pluginName": "@eightstate/escli",
|
|
2298
|
+
"pluginType": "core",
|
|
2299
|
+
"strict": true,
|
|
2300
|
+
"summary": "Switch the active profile",
|
|
2301
|
+
"enableJsonFlag": true,
|
|
2302
|
+
"emitsJsonEnvelope": false,
|
|
2303
|
+
"errors": [
|
|
2304
|
+
"auth.profile_not_found",
|
|
2305
|
+
"usage.required"
|
|
2306
|
+
],
|
|
2307
|
+
"isESM": true,
|
|
2308
|
+
"relativePath": [
|
|
2309
|
+
"dist",
|
|
2310
|
+
"commands",
|
|
2311
|
+
"auth",
|
|
2312
|
+
"switch.js"
|
|
2313
|
+
]
|
|
2314
|
+
},
|
|
2315
|
+
"docs:fetch": {
|
|
2316
|
+
"aliases": [
|
|
2317
|
+
"docs:f",
|
|
2318
|
+
"d:fetch",
|
|
2319
|
+
"d:f"
|
|
2320
|
+
],
|
|
2321
|
+
"args": {
|
|
2322
|
+
"library-id": {
|
|
2323
|
+
"description": "Library ID (for example /facebook/react).",
|
|
2324
|
+
"name": "library-id",
|
|
2325
|
+
"required": true
|
|
2326
|
+
},
|
|
2327
|
+
"query": {
|
|
2328
|
+
"description": "Documentation query.",
|
|
2329
|
+
"name": "query",
|
|
2330
|
+
"required": true
|
|
2331
|
+
}
|
|
2332
|
+
},
|
|
2333
|
+
"description": "Fetch Context7 documentation by exact library ID.",
|
|
2334
|
+
"examples": [
|
|
2335
|
+
"<%= config.bin %> docs fetch /facebook/react hooks",
|
|
2336
|
+
"<%= config.bin %> docs fetch /vercel/next.js actions --tokens 5000",
|
|
2337
|
+
"<%= config.bin %> d f /facebook/react hooks"
|
|
2338
|
+
],
|
|
2339
|
+
"flags": {
|
|
2340
|
+
"json": {
|
|
2341
|
+
"description": "Format output as json.",
|
|
2342
|
+
"helpGroup": "GLOBAL",
|
|
2343
|
+
"name": "json",
|
|
2344
|
+
"allowNo": false,
|
|
2345
|
+
"type": "boolean"
|
|
2346
|
+
},
|
|
2347
|
+
"quiet": {
|
|
2348
|
+
"description": "Suppress diagnostic output.",
|
|
2349
|
+
"name": "quiet",
|
|
2350
|
+
"allowNo": false,
|
|
2351
|
+
"type": "boolean"
|
|
2352
|
+
},
|
|
2353
|
+
"api-key": {
|
|
2354
|
+
"description": "API key override.",
|
|
2355
|
+
"helpGroup": "GLOBAL",
|
|
2356
|
+
"name": "api-key",
|
|
2357
|
+
"hasDynamicHelp": false,
|
|
2358
|
+
"multiple": false,
|
|
2359
|
+
"type": "option"
|
|
2360
|
+
},
|
|
2361
|
+
"base-url": {
|
|
2362
|
+
"description": "Base URL override.",
|
|
2363
|
+
"helpGroup": "GLOBAL",
|
|
2364
|
+
"name": "base-url",
|
|
2365
|
+
"hasDynamicHelp": false,
|
|
2366
|
+
"multiple": false,
|
|
2367
|
+
"type": "option"
|
|
2368
|
+
},
|
|
2369
|
+
"timeout": {
|
|
2370
|
+
"description": "Request timeout in seconds.",
|
|
2371
|
+
"helpGroup": "GLOBAL",
|
|
2372
|
+
"name": "timeout",
|
|
2373
|
+
"default": 300,
|
|
2374
|
+
"hasDynamicHelp": false,
|
|
2375
|
+
"multiple": false,
|
|
2376
|
+
"type": "option"
|
|
2377
|
+
},
|
|
2378
|
+
"describe": {
|
|
2379
|
+
"description": "Emit compact machine-readable command description.",
|
|
2380
|
+
"helpGroup": "GLOBAL",
|
|
2381
|
+
"name": "describe",
|
|
2382
|
+
"allowNo": false,
|
|
2383
|
+
"type": "boolean"
|
|
2384
|
+
},
|
|
2385
|
+
"schema": {
|
|
2386
|
+
"description": "Emit full machine-readable command schema.",
|
|
2387
|
+
"helpGroup": "GLOBAL",
|
|
2388
|
+
"name": "schema",
|
|
2389
|
+
"allowNo": false,
|
|
2390
|
+
"type": "boolean"
|
|
2391
|
+
},
|
|
2392
|
+
"version": {
|
|
2393
|
+
"char": "v",
|
|
2394
|
+
"description": "Emit version envelope.",
|
|
2395
|
+
"helpGroup": "GLOBAL",
|
|
2396
|
+
"name": "version",
|
|
2397
|
+
"allowNo": false,
|
|
2398
|
+
"type": "boolean"
|
|
2399
|
+
},
|
|
2400
|
+
"tokens": {
|
|
2401
|
+
"description": "Max tokens to return.",
|
|
2402
|
+
"name": "tokens",
|
|
2403
|
+
"hasDynamicHelp": false,
|
|
2404
|
+
"multiple": false,
|
|
2405
|
+
"type": "option"
|
|
2406
|
+
},
|
|
2407
|
+
"page": {
|
|
2408
|
+
"description": "Page number (1-10).",
|
|
2409
|
+
"name": "page",
|
|
2410
|
+
"hasDynamicHelp": false,
|
|
2411
|
+
"multiple": false,
|
|
2412
|
+
"type": "option"
|
|
2413
|
+
},
|
|
2414
|
+
"topic": {
|
|
2415
|
+
"description": "Focus on a topic.",
|
|
2416
|
+
"name": "topic",
|
|
2417
|
+
"hasDynamicHelp": false,
|
|
2418
|
+
"multiple": false,
|
|
2419
|
+
"type": "option"
|
|
2420
|
+
},
|
|
2421
|
+
"refresh": {
|
|
2422
|
+
"description": "Bypass cache.",
|
|
2423
|
+
"name": "refresh",
|
|
2424
|
+
"allowNo": false,
|
|
2425
|
+
"type": "boolean"
|
|
2426
|
+
}
|
|
2427
|
+
},
|
|
2428
|
+
"hasDynamicHelp": false,
|
|
2429
|
+
"hiddenAliases": [],
|
|
2430
|
+
"id": "docs:fetch",
|
|
2431
|
+
"pluginAlias": "@eightstate/escli",
|
|
2432
|
+
"pluginName": "@eightstate/escli",
|
|
2433
|
+
"pluginType": "core",
|
|
2434
|
+
"strict": true,
|
|
2435
|
+
"summary": "Fetch docs by exact library ID",
|
|
2436
|
+
"enableJsonFlag": true,
|
|
2437
|
+
"emitsJsonEnvelope": false,
|
|
2438
|
+
"errors": [
|
|
2439
|
+
"api.unauthorized",
|
|
2440
|
+
"api.forbidden",
|
|
2441
|
+
"api.rate_limited",
|
|
2442
|
+
"gate.invalid_response",
|
|
2443
|
+
"network.error",
|
|
2444
|
+
"network.timeout",
|
|
2445
|
+
"service.unavailable",
|
|
2446
|
+
"docs.library_not_found",
|
|
2447
|
+
"docs.fetch_failed"
|
|
2448
|
+
],
|
|
2449
|
+
"isESM": true,
|
|
2450
|
+
"relativePath": [
|
|
2451
|
+
"dist",
|
|
2452
|
+
"commands",
|
|
2453
|
+
"docs",
|
|
2454
|
+
"fetch.js"
|
|
2455
|
+
]
|
|
2456
|
+
},
|
|
2457
|
+
"docs:get": {
|
|
2458
|
+
"aliases": [
|
|
2459
|
+
"docs:g",
|
|
2460
|
+
"d:get",
|
|
2461
|
+
"d:g"
|
|
2462
|
+
],
|
|
2463
|
+
"args": {
|
|
2464
|
+
"library": {
|
|
2465
|
+
"description": "Library name.",
|
|
2466
|
+
"name": "library",
|
|
2467
|
+
"required": true
|
|
2468
|
+
},
|
|
2469
|
+
"query": {
|
|
2470
|
+
"description": "Documentation query.",
|
|
2471
|
+
"name": "query",
|
|
2472
|
+
"required": true
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"description": "Resolve a library name to a Context7 library ID, then fetch documentation.",
|
|
2476
|
+
"examples": [
|
|
2477
|
+
"<%= config.bin %> docs get react hooks",
|
|
2478
|
+
"<%= config.bin %> docs get next.js \"app router\" --tokens 5000",
|
|
2479
|
+
"<%= config.bin %> d g react \"useEffect cleanup\""
|
|
2480
|
+
],
|
|
2481
|
+
"flags": {
|
|
2482
|
+
"json": {
|
|
2483
|
+
"description": "Format output as json.",
|
|
2484
|
+
"helpGroup": "GLOBAL",
|
|
2485
|
+
"name": "json",
|
|
2486
|
+
"allowNo": false,
|
|
2487
|
+
"type": "boolean"
|
|
2488
|
+
},
|
|
2489
|
+
"quiet": {
|
|
2490
|
+
"description": "Suppress diagnostic output.",
|
|
2491
|
+
"name": "quiet",
|
|
2492
|
+
"allowNo": false,
|
|
2493
|
+
"type": "boolean"
|
|
2494
|
+
},
|
|
2495
|
+
"api-key": {
|
|
2496
|
+
"description": "API key override.",
|
|
2497
|
+
"helpGroup": "GLOBAL",
|
|
2498
|
+
"name": "api-key",
|
|
2499
|
+
"hasDynamicHelp": false,
|
|
2500
|
+
"multiple": false,
|
|
2501
|
+
"type": "option"
|
|
2502
|
+
},
|
|
2503
|
+
"base-url": {
|
|
2504
|
+
"description": "Base URL override.",
|
|
2505
|
+
"helpGroup": "GLOBAL",
|
|
2506
|
+
"name": "base-url",
|
|
2507
|
+
"hasDynamicHelp": false,
|
|
2508
|
+
"multiple": false,
|
|
2509
|
+
"type": "option"
|
|
2510
|
+
},
|
|
2511
|
+
"timeout": {
|
|
2512
|
+
"description": "Request timeout in seconds.",
|
|
2513
|
+
"helpGroup": "GLOBAL",
|
|
2514
|
+
"name": "timeout",
|
|
2515
|
+
"default": 300,
|
|
2516
|
+
"hasDynamicHelp": false,
|
|
2517
|
+
"multiple": false,
|
|
2518
|
+
"type": "option"
|
|
2519
|
+
},
|
|
2520
|
+
"describe": {
|
|
2521
|
+
"description": "Emit compact machine-readable command description.",
|
|
2522
|
+
"helpGroup": "GLOBAL",
|
|
2523
|
+
"name": "describe",
|
|
2524
|
+
"allowNo": false,
|
|
2525
|
+
"type": "boolean"
|
|
2526
|
+
},
|
|
2527
|
+
"schema": {
|
|
2528
|
+
"description": "Emit full machine-readable command schema.",
|
|
2529
|
+
"helpGroup": "GLOBAL",
|
|
2530
|
+
"name": "schema",
|
|
2531
|
+
"allowNo": false,
|
|
2532
|
+
"type": "boolean"
|
|
2533
|
+
},
|
|
2534
|
+
"version": {
|
|
2535
|
+
"char": "v",
|
|
2536
|
+
"description": "Emit version envelope.",
|
|
2537
|
+
"helpGroup": "GLOBAL",
|
|
2538
|
+
"name": "version",
|
|
2539
|
+
"allowNo": false,
|
|
2540
|
+
"type": "boolean"
|
|
2541
|
+
},
|
|
2542
|
+
"tokens": {
|
|
2543
|
+
"description": "Max tokens to return.",
|
|
2544
|
+
"name": "tokens",
|
|
2545
|
+
"hasDynamicHelp": false,
|
|
2546
|
+
"multiple": false,
|
|
2547
|
+
"type": "option"
|
|
2548
|
+
},
|
|
2549
|
+
"page": {
|
|
2550
|
+
"description": "Page number (1-10).",
|
|
2551
|
+
"name": "page",
|
|
2552
|
+
"hasDynamicHelp": false,
|
|
2553
|
+
"multiple": false,
|
|
2554
|
+
"type": "option"
|
|
2555
|
+
},
|
|
2556
|
+
"topic": {
|
|
2557
|
+
"description": "Focus on a topic.",
|
|
2558
|
+
"name": "topic",
|
|
2559
|
+
"hasDynamicHelp": false,
|
|
2560
|
+
"multiple": false,
|
|
2561
|
+
"type": "option"
|
|
2562
|
+
},
|
|
2563
|
+
"refresh": {
|
|
2564
|
+
"description": "Bypass cache.",
|
|
2565
|
+
"name": "refresh",
|
|
2566
|
+
"allowNo": false,
|
|
2567
|
+
"type": "boolean"
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2570
|
+
"hasDynamicHelp": false,
|
|
2571
|
+
"hiddenAliases": [],
|
|
2572
|
+
"id": "docs:get",
|
|
2573
|
+
"pluginAlias": "@eightstate/escli",
|
|
2574
|
+
"pluginName": "@eightstate/escli",
|
|
2575
|
+
"pluginType": "core",
|
|
2576
|
+
"strict": true,
|
|
2577
|
+
"summary": "Resolve a library and fetch docs in one shot",
|
|
2578
|
+
"enableJsonFlag": true,
|
|
2579
|
+
"emitsJsonEnvelope": false,
|
|
2580
|
+
"errors": [
|
|
2581
|
+
"api.unauthorized",
|
|
2582
|
+
"api.forbidden",
|
|
2583
|
+
"api.rate_limited",
|
|
2584
|
+
"gate.invalid_response",
|
|
2585
|
+
"network.error",
|
|
2586
|
+
"network.timeout",
|
|
2587
|
+
"service.unavailable",
|
|
2588
|
+
"docs.library_not_found",
|
|
2589
|
+
"docs.no_results",
|
|
2590
|
+
"docs.fetch_failed"
|
|
2591
|
+
],
|
|
2592
|
+
"isESM": true,
|
|
2593
|
+
"relativePath": [
|
|
2594
|
+
"dist",
|
|
2595
|
+
"commands",
|
|
2596
|
+
"docs",
|
|
2597
|
+
"get.js"
|
|
2598
|
+
]
|
|
2599
|
+
},
|
|
2600
|
+
"docs": {
|
|
2601
|
+
"aliases": [
|
|
2602
|
+
"d"
|
|
2603
|
+
],
|
|
2604
|
+
"args": {},
|
|
2605
|
+
"description": "Use docs search, docs get, or docs fetch.",
|
|
2606
|
+
"examples": [
|
|
2607
|
+
"<%= config.bin %> docs search react",
|
|
2608
|
+
"<%= config.bin %> docs get react hooks",
|
|
2609
|
+
"<%= config.bin %> docs fetch /facebook/react hooks"
|
|
2610
|
+
],
|
|
2611
|
+
"flags": {
|
|
2612
|
+
"json": {
|
|
2613
|
+
"description": "Format output as json.",
|
|
2614
|
+
"helpGroup": "GLOBAL",
|
|
2615
|
+
"name": "json",
|
|
2616
|
+
"allowNo": false,
|
|
2617
|
+
"type": "boolean"
|
|
2618
|
+
},
|
|
2619
|
+
"quiet": {
|
|
2620
|
+
"description": "Suppress diagnostic output.",
|
|
2621
|
+
"name": "quiet",
|
|
2622
|
+
"allowNo": false,
|
|
2623
|
+
"type": "boolean"
|
|
2624
|
+
},
|
|
2625
|
+
"api-key": {
|
|
2626
|
+
"description": "API key override.",
|
|
2627
|
+
"helpGroup": "GLOBAL",
|
|
2628
|
+
"name": "api-key",
|
|
2629
|
+
"hasDynamicHelp": false,
|
|
2630
|
+
"multiple": false,
|
|
2631
|
+
"type": "option"
|
|
2632
|
+
},
|
|
2633
|
+
"base-url": {
|
|
2634
|
+
"description": "Base URL override.",
|
|
2635
|
+
"helpGroup": "GLOBAL",
|
|
2636
|
+
"name": "base-url",
|
|
2637
|
+
"hasDynamicHelp": false,
|
|
2638
|
+
"multiple": false,
|
|
2639
|
+
"type": "option"
|
|
2640
|
+
},
|
|
2641
|
+
"timeout": {
|
|
2642
|
+
"description": "Request timeout in seconds.",
|
|
2643
|
+
"helpGroup": "GLOBAL",
|
|
2644
|
+
"name": "timeout",
|
|
2645
|
+
"default": 300,
|
|
2646
|
+
"hasDynamicHelp": false,
|
|
2647
|
+
"multiple": false,
|
|
2648
|
+
"type": "option"
|
|
2649
|
+
},
|
|
2650
|
+
"describe": {
|
|
2651
|
+
"description": "Emit compact machine-readable command description.",
|
|
2652
|
+
"helpGroup": "GLOBAL",
|
|
2653
|
+
"name": "describe",
|
|
2654
|
+
"allowNo": false,
|
|
2655
|
+
"type": "boolean"
|
|
2656
|
+
},
|
|
2657
|
+
"schema": {
|
|
2658
|
+
"description": "Emit full machine-readable command schema.",
|
|
2659
|
+
"helpGroup": "GLOBAL",
|
|
2660
|
+
"name": "schema",
|
|
2661
|
+
"allowNo": false,
|
|
2662
|
+
"type": "boolean"
|
|
2663
|
+
},
|
|
2664
|
+
"version": {
|
|
2665
|
+
"char": "v",
|
|
2666
|
+
"description": "Emit version envelope.",
|
|
2667
|
+
"helpGroup": "GLOBAL",
|
|
2668
|
+
"name": "version",
|
|
2669
|
+
"allowNo": false,
|
|
2670
|
+
"type": "boolean"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
"hasDynamicHelp": false,
|
|
2674
|
+
"hiddenAliases": [],
|
|
2675
|
+
"id": "docs",
|
|
2676
|
+
"pluginAlias": "@eightstate/escli",
|
|
2677
|
+
"pluginName": "@eightstate/escli",
|
|
2678
|
+
"pluginType": "core",
|
|
2679
|
+
"strict": true,
|
|
2680
|
+
"summary": "Search and fetch library documentation",
|
|
2681
|
+
"enableJsonFlag": true,
|
|
2682
|
+
"emitsJsonEnvelope": false,
|
|
2683
|
+
"errors": [
|
|
2684
|
+
"usage.invalid"
|
|
2685
|
+
],
|
|
2686
|
+
"isESM": true,
|
|
2687
|
+
"relativePath": [
|
|
2688
|
+
"dist",
|
|
2689
|
+
"commands",
|
|
2690
|
+
"docs",
|
|
2691
|
+
"index.js"
|
|
2692
|
+
]
|
|
2693
|
+
},
|
|
2694
|
+
"docs:search": {
|
|
2695
|
+
"aliases": [
|
|
2696
|
+
"docs:s",
|
|
2697
|
+
"d:search",
|
|
2698
|
+
"d:s"
|
|
2699
|
+
],
|
|
2700
|
+
"args": {
|
|
2701
|
+
"library": {
|
|
2702
|
+
"description": "Library name.",
|
|
2703
|
+
"name": "library",
|
|
2704
|
+
"required": true
|
|
2705
|
+
},
|
|
2706
|
+
"query": {
|
|
2707
|
+
"description": "Optional search query.",
|
|
2708
|
+
"name": "query",
|
|
2709
|
+
"required": false
|
|
2710
|
+
}
|
|
2711
|
+
},
|
|
2712
|
+
"description": "Search Context7 for library documentation IDs.",
|
|
2713
|
+
"examples": [
|
|
2714
|
+
"<%= config.bin %> docs search react",
|
|
2715
|
+
"<%= config.bin %> docs search react hooks --limit 2",
|
|
2716
|
+
"<%= config.bin %> d s next.js"
|
|
2717
|
+
],
|
|
2718
|
+
"flags": {
|
|
2719
|
+
"json": {
|
|
2720
|
+
"description": "Format output as json.",
|
|
2721
|
+
"helpGroup": "GLOBAL",
|
|
2722
|
+
"name": "json",
|
|
2723
|
+
"allowNo": false,
|
|
2724
|
+
"type": "boolean"
|
|
2725
|
+
},
|
|
2726
|
+
"quiet": {
|
|
2727
|
+
"description": "Suppress diagnostic output.",
|
|
2728
|
+
"name": "quiet",
|
|
2729
|
+
"allowNo": false,
|
|
2730
|
+
"type": "boolean"
|
|
2731
|
+
},
|
|
2732
|
+
"api-key": {
|
|
2733
|
+
"description": "API key override.",
|
|
2734
|
+
"helpGroup": "GLOBAL",
|
|
2735
|
+
"name": "api-key",
|
|
2736
|
+
"hasDynamicHelp": false,
|
|
2737
|
+
"multiple": false,
|
|
2738
|
+
"type": "option"
|
|
2739
|
+
},
|
|
2740
|
+
"base-url": {
|
|
2741
|
+
"description": "Base URL override.",
|
|
2742
|
+
"helpGroup": "GLOBAL",
|
|
2743
|
+
"name": "base-url",
|
|
2744
|
+
"hasDynamicHelp": false,
|
|
2745
|
+
"multiple": false,
|
|
2746
|
+
"type": "option"
|
|
2747
|
+
},
|
|
2748
|
+
"timeout": {
|
|
2749
|
+
"description": "Request timeout in seconds.",
|
|
2750
|
+
"helpGroup": "GLOBAL",
|
|
2751
|
+
"name": "timeout",
|
|
2752
|
+
"default": 300,
|
|
2753
|
+
"hasDynamicHelp": false,
|
|
2754
|
+
"multiple": false,
|
|
2755
|
+
"type": "option"
|
|
2756
|
+
},
|
|
2757
|
+
"describe": {
|
|
2758
|
+
"description": "Emit compact machine-readable command description.",
|
|
2759
|
+
"helpGroup": "GLOBAL",
|
|
2760
|
+
"name": "describe",
|
|
2761
|
+
"allowNo": false,
|
|
2762
|
+
"type": "boolean"
|
|
2763
|
+
},
|
|
2764
|
+
"schema": {
|
|
2765
|
+
"description": "Emit full machine-readable command schema.",
|
|
2766
|
+
"helpGroup": "GLOBAL",
|
|
2767
|
+
"name": "schema",
|
|
2768
|
+
"allowNo": false,
|
|
2769
|
+
"type": "boolean"
|
|
2770
|
+
},
|
|
2771
|
+
"version": {
|
|
2772
|
+
"char": "v",
|
|
2773
|
+
"description": "Emit version envelope.",
|
|
2774
|
+
"helpGroup": "GLOBAL",
|
|
2775
|
+
"name": "version",
|
|
2776
|
+
"allowNo": false,
|
|
2777
|
+
"type": "boolean"
|
|
2778
|
+
},
|
|
2779
|
+
"limit": {
|
|
2780
|
+
"description": "Max results.",
|
|
2781
|
+
"name": "limit",
|
|
2782
|
+
"default": 10,
|
|
2783
|
+
"hasDynamicHelp": false,
|
|
2784
|
+
"multiple": false,
|
|
2785
|
+
"type": "option"
|
|
2786
|
+
},
|
|
2787
|
+
"refresh": {
|
|
2788
|
+
"description": "Bypass cache.",
|
|
2789
|
+
"name": "refresh",
|
|
2790
|
+
"allowNo": false,
|
|
2791
|
+
"type": "boolean"
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2794
|
+
"hasDynamicHelp": false,
|
|
2795
|
+
"hiddenAliases": [],
|
|
2796
|
+
"id": "docs:search",
|
|
2797
|
+
"pluginAlias": "@eightstate/escli",
|
|
2798
|
+
"pluginName": "@eightstate/escli",
|
|
2799
|
+
"pluginType": "core",
|
|
2800
|
+
"strict": true,
|
|
2801
|
+
"summary": "Search for libraries by name",
|
|
2802
|
+
"enableJsonFlag": true,
|
|
2803
|
+
"emitsJsonEnvelope": false,
|
|
2804
|
+
"errors": [
|
|
2805
|
+
"api.unauthorized",
|
|
2806
|
+
"api.forbidden",
|
|
2807
|
+
"api.rate_limited",
|
|
2808
|
+
"gate.invalid_response",
|
|
2809
|
+
"network.error",
|
|
2810
|
+
"network.timeout",
|
|
2811
|
+
"service.unavailable",
|
|
2812
|
+
"docs.library_not_found",
|
|
2813
|
+
"docs.fetch_failed"
|
|
2814
|
+
],
|
|
2815
|
+
"isESM": true,
|
|
2816
|
+
"relativePath": [
|
|
2817
|
+
"dist",
|
|
2818
|
+
"commands",
|
|
2819
|
+
"docs",
|
|
2820
|
+
"search.js"
|
|
2821
|
+
]
|
|
2822
|
+
},
|
|
2823
|
+
"image:edit": {
|
|
2824
|
+
"aliases": [
|
|
2825
|
+
"image:e",
|
|
2826
|
+
"img:edit",
|
|
2827
|
+
"img:e",
|
|
2828
|
+
"i:edit",
|
|
2829
|
+
"i:e"
|
|
2830
|
+
],
|
|
2831
|
+
"args": {
|
|
2832
|
+
"prompt": {
|
|
2833
|
+
"description": "Edit instruction.",
|
|
2834
|
+
"multiple": true,
|
|
2835
|
+
"name": "prompt",
|
|
2836
|
+
"required": true
|
|
2837
|
+
}
|
|
2838
|
+
},
|
|
2839
|
+
"description": "Edit an existing image using a text instruction via the OpenAI-compatible image endpoint.",
|
|
2840
|
+
"examples": [
|
|
2841
|
+
"<%= config.bin %> image edit \"make it snow\" -i summer.jpg",
|
|
2842
|
+
"<%= config.bin %> image edit \"make it blue\" -i input.png -o output.png",
|
|
2843
|
+
"<%= config.bin %> --json --quiet image edit \"remove the background\" -i product.png"
|
|
2844
|
+
],
|
|
2845
|
+
"flags": {
|
|
2846
|
+
"json": {
|
|
2847
|
+
"description": "Format output as json.",
|
|
2848
|
+
"helpGroup": "GLOBAL",
|
|
2849
|
+
"name": "json",
|
|
2850
|
+
"allowNo": false,
|
|
2851
|
+
"type": "boolean"
|
|
2852
|
+
},
|
|
2853
|
+
"quiet": {
|
|
2854
|
+
"description": "Suppress diagnostic output.",
|
|
2855
|
+
"name": "quiet",
|
|
2856
|
+
"allowNo": false,
|
|
2857
|
+
"type": "boolean"
|
|
2858
|
+
},
|
|
2859
|
+
"api-key": {
|
|
2860
|
+
"description": "API key override.",
|
|
2861
|
+
"helpGroup": "GLOBAL",
|
|
2862
|
+
"name": "api-key",
|
|
2863
|
+
"hasDynamicHelp": false,
|
|
2864
|
+
"multiple": false,
|
|
2865
|
+
"type": "option"
|
|
2866
|
+
},
|
|
2867
|
+
"base-url": {
|
|
2868
|
+
"description": "Base URL override.",
|
|
2869
|
+
"helpGroup": "GLOBAL",
|
|
2870
|
+
"name": "base-url",
|
|
2871
|
+
"hasDynamicHelp": false,
|
|
2872
|
+
"multiple": false,
|
|
2873
|
+
"type": "option"
|
|
2874
|
+
},
|
|
2875
|
+
"timeout": {
|
|
2876
|
+
"description": "Request timeout in seconds.",
|
|
2877
|
+
"helpGroup": "GLOBAL",
|
|
2878
|
+
"name": "timeout",
|
|
2879
|
+
"default": 300,
|
|
2880
|
+
"hasDynamicHelp": false,
|
|
2881
|
+
"multiple": false,
|
|
2882
|
+
"type": "option"
|
|
2883
|
+
},
|
|
2884
|
+
"describe": {
|
|
2885
|
+
"description": "Emit compact machine-readable command description.",
|
|
2886
|
+
"helpGroup": "GLOBAL",
|
|
2887
|
+
"name": "describe",
|
|
2888
|
+
"allowNo": false,
|
|
2889
|
+
"type": "boolean"
|
|
2890
|
+
},
|
|
2891
|
+
"schema": {
|
|
2892
|
+
"description": "Emit full machine-readable command schema.",
|
|
2893
|
+
"helpGroup": "GLOBAL",
|
|
2894
|
+
"name": "schema",
|
|
2895
|
+
"allowNo": false,
|
|
2896
|
+
"type": "boolean"
|
|
2897
|
+
},
|
|
2898
|
+
"version": {
|
|
2899
|
+
"char": "v",
|
|
2900
|
+
"description": "Emit version envelope.",
|
|
2901
|
+
"helpGroup": "GLOBAL",
|
|
2902
|
+
"name": "version",
|
|
2903
|
+
"allowNo": false,
|
|
2904
|
+
"type": "boolean"
|
|
2905
|
+
},
|
|
2906
|
+
"input": {
|
|
2907
|
+
"char": "i",
|
|
2908
|
+
"description": "Input image path.",
|
|
2909
|
+
"name": "input",
|
|
2910
|
+
"required": true,
|
|
2911
|
+
"hasDynamicHelp": false,
|
|
2912
|
+
"multiple": false,
|
|
2913
|
+
"type": "option"
|
|
2914
|
+
},
|
|
2915
|
+
"size": {
|
|
2916
|
+
"char": "s",
|
|
2917
|
+
"description": "Size: sq|wide|tall or WxH.",
|
|
2918
|
+
"name": "size",
|
|
2919
|
+
"default": "1024x1024",
|
|
2920
|
+
"hasDynamicHelp": false,
|
|
2921
|
+
"multiple": false,
|
|
2922
|
+
"type": "option"
|
|
2923
|
+
},
|
|
2924
|
+
"quality": {
|
|
2925
|
+
"char": "q",
|
|
2926
|
+
"description": "Quality.",
|
|
2927
|
+
"name": "quality",
|
|
2928
|
+
"default": "high",
|
|
2929
|
+
"hasDynamicHelp": false,
|
|
2930
|
+
"multiple": false,
|
|
2931
|
+
"options": [
|
|
2932
|
+
"low",
|
|
2933
|
+
"medium",
|
|
2934
|
+
"high"
|
|
2935
|
+
],
|
|
2936
|
+
"type": "option"
|
|
2937
|
+
},
|
|
2938
|
+
"format": {
|
|
2939
|
+
"char": "f",
|
|
2940
|
+
"description": "Output format.",
|
|
2941
|
+
"name": "format",
|
|
2942
|
+
"default": "png",
|
|
2943
|
+
"hasDynamicHelp": false,
|
|
2944
|
+
"multiple": false,
|
|
2945
|
+
"options": [
|
|
2946
|
+
"png",
|
|
2947
|
+
"jpeg",
|
|
2948
|
+
"jpg",
|
|
2949
|
+
"webp"
|
|
2950
|
+
],
|
|
2951
|
+
"type": "option"
|
|
2952
|
+
},
|
|
2953
|
+
"model": {
|
|
2954
|
+
"char": "m",
|
|
2955
|
+
"description": "Model.",
|
|
2956
|
+
"name": "model",
|
|
2957
|
+
"default": "gpt-image-2",
|
|
2958
|
+
"hasDynamicHelp": false,
|
|
2959
|
+
"multiple": false,
|
|
2960
|
+
"type": "option"
|
|
2961
|
+
},
|
|
2962
|
+
"output": {
|
|
2963
|
+
"char": "o",
|
|
2964
|
+
"description": "Output path.",
|
|
2965
|
+
"name": "output",
|
|
2966
|
+
"hasDynamicHelp": false,
|
|
2967
|
+
"multiple": false,
|
|
2968
|
+
"type": "option"
|
|
2969
|
+
},
|
|
2970
|
+
"out-dir": {
|
|
2971
|
+
"char": "d",
|
|
2972
|
+
"description": "Output directory.",
|
|
2973
|
+
"name": "out-dir",
|
|
2974
|
+
"default": ".",
|
|
2975
|
+
"hasDynamicHelp": false,
|
|
2976
|
+
"multiple": false,
|
|
2977
|
+
"type": "option"
|
|
2978
|
+
},
|
|
2979
|
+
"open": {
|
|
2980
|
+
"description": "Open result after writing.",
|
|
2981
|
+
"name": "open",
|
|
2982
|
+
"allowNo": false,
|
|
2983
|
+
"type": "boolean"
|
|
2984
|
+
},
|
|
2985
|
+
"compression": {
|
|
2986
|
+
"description": "JPEG/WebP compression 0-100.",
|
|
2987
|
+
"name": "compression",
|
|
2988
|
+
"hasDynamicHelp": false,
|
|
2989
|
+
"multiple": false,
|
|
2990
|
+
"type": "option"
|
|
2991
|
+
},
|
|
2992
|
+
"moderation": {
|
|
2993
|
+
"description": "Moderation.",
|
|
2994
|
+
"name": "moderation",
|
|
2995
|
+
"hasDynamicHelp": false,
|
|
2996
|
+
"multiple": false,
|
|
2997
|
+
"options": [
|
|
2998
|
+
"auto",
|
|
2999
|
+
"low"
|
|
3000
|
+
],
|
|
3001
|
+
"type": "option"
|
|
3002
|
+
},
|
|
3003
|
+
"fidelity": {
|
|
3004
|
+
"description": "Fidelity to input.",
|
|
3005
|
+
"name": "fidelity",
|
|
3006
|
+
"hasDynamicHelp": false,
|
|
3007
|
+
"multiple": false,
|
|
3008
|
+
"options": [
|
|
3009
|
+
"low",
|
|
3010
|
+
"high"
|
|
3011
|
+
],
|
|
3012
|
+
"type": "option"
|
|
3013
|
+
}
|
|
3014
|
+
},
|
|
3015
|
+
"hasDynamicHelp": false,
|
|
3016
|
+
"hiddenAliases": [],
|
|
3017
|
+
"id": "image:edit",
|
|
3018
|
+
"pluginAlias": "@eightstate/escli",
|
|
3019
|
+
"pluginName": "@eightstate/escli",
|
|
3020
|
+
"pluginType": "core",
|
|
3021
|
+
"strict": true,
|
|
3022
|
+
"summary": "Edit an existing image with a text prompt",
|
|
3023
|
+
"enableJsonFlag": true,
|
|
3024
|
+
"emitsJsonEnvelope": false,
|
|
3025
|
+
"errors": [
|
|
3026
|
+
"usage.required",
|
|
3027
|
+
"usage.invalid",
|
|
3028
|
+
"usage.unknown_flag",
|
|
3029
|
+
"validation.failed",
|
|
3030
|
+
"auth.required",
|
|
3031
|
+
"gate.credential_unavailable",
|
|
3032
|
+
"api.unauthorized",
|
|
3033
|
+
"api.forbidden",
|
|
3034
|
+
"api.rate_limited",
|
|
3035
|
+
"api.error",
|
|
3036
|
+
"network.error",
|
|
3037
|
+
"network.timeout",
|
|
3038
|
+
"service.unavailable",
|
|
3039
|
+
"gate.invalid_response",
|
|
3040
|
+
"file.not_found",
|
|
3041
|
+
"file.read_failed",
|
|
3042
|
+
"file.write_failed",
|
|
3043
|
+
"image.prompt_required",
|
|
3044
|
+
"image.size_invalid",
|
|
3045
|
+
"image.edit_failed",
|
|
3046
|
+
"image.open_failed"
|
|
3047
|
+
],
|
|
3048
|
+
"isESM": true,
|
|
3049
|
+
"relativePath": [
|
|
3050
|
+
"dist",
|
|
3051
|
+
"commands",
|
|
3052
|
+
"image",
|
|
3053
|
+
"edit.js"
|
|
3054
|
+
]
|
|
3055
|
+
},
|
|
3056
|
+
"image:generate": {
|
|
3057
|
+
"aliases": [
|
|
3058
|
+
"image:gen",
|
|
3059
|
+
"image:g",
|
|
3060
|
+
"img:generate",
|
|
3061
|
+
"img:gen",
|
|
3062
|
+
"img:g",
|
|
3063
|
+
"i:generate",
|
|
3064
|
+
"i:gen",
|
|
3065
|
+
"i:g"
|
|
3066
|
+
],
|
|
3067
|
+
"args": {
|
|
3068
|
+
"prompt": {
|
|
3069
|
+
"description": "Text prompt.",
|
|
3070
|
+
"multiple": true,
|
|
3071
|
+
"name": "prompt",
|
|
3072
|
+
"required": true
|
|
3073
|
+
}
|
|
3074
|
+
},
|
|
3075
|
+
"description": "Generate an image from a text prompt via the OpenAI-compatible image endpoint.",
|
|
3076
|
+
"examples": [
|
|
3077
|
+
"<%= config.bin %> image generate \"a sunset over the ocean\"",
|
|
3078
|
+
"<%= config.bin %> image generate \"logo design\" -s wide -q high -o logo.png",
|
|
3079
|
+
"<%= config.bin %> --json --quiet image generate \"a logo\" -o /tmp/logo.png"
|
|
3080
|
+
],
|
|
3081
|
+
"flags": {
|
|
3082
|
+
"json": {
|
|
3083
|
+
"description": "Format output as json.",
|
|
3084
|
+
"helpGroup": "GLOBAL",
|
|
3085
|
+
"name": "json",
|
|
3086
|
+
"allowNo": false,
|
|
3087
|
+
"type": "boolean"
|
|
3088
|
+
},
|
|
3089
|
+
"quiet": {
|
|
3090
|
+
"description": "Suppress diagnostic output.",
|
|
3091
|
+
"name": "quiet",
|
|
3092
|
+
"allowNo": false,
|
|
3093
|
+
"type": "boolean"
|
|
3094
|
+
},
|
|
3095
|
+
"api-key": {
|
|
3096
|
+
"description": "API key override.",
|
|
3097
|
+
"helpGroup": "GLOBAL",
|
|
3098
|
+
"name": "api-key",
|
|
3099
|
+
"hasDynamicHelp": false,
|
|
3100
|
+
"multiple": false,
|
|
3101
|
+
"type": "option"
|
|
3102
|
+
},
|
|
3103
|
+
"base-url": {
|
|
3104
|
+
"description": "Base URL override.",
|
|
3105
|
+
"helpGroup": "GLOBAL",
|
|
3106
|
+
"name": "base-url",
|
|
3107
|
+
"hasDynamicHelp": false,
|
|
3108
|
+
"multiple": false,
|
|
3109
|
+
"type": "option"
|
|
3110
|
+
},
|
|
3111
|
+
"timeout": {
|
|
3112
|
+
"description": "Request timeout in seconds.",
|
|
3113
|
+
"helpGroup": "GLOBAL",
|
|
3114
|
+
"name": "timeout",
|
|
3115
|
+
"default": 300,
|
|
3116
|
+
"hasDynamicHelp": false,
|
|
3117
|
+
"multiple": false,
|
|
3118
|
+
"type": "option"
|
|
3119
|
+
},
|
|
3120
|
+
"describe": {
|
|
3121
|
+
"description": "Emit compact machine-readable command description.",
|
|
3122
|
+
"helpGroup": "GLOBAL",
|
|
3123
|
+
"name": "describe",
|
|
3124
|
+
"allowNo": false,
|
|
3125
|
+
"type": "boolean"
|
|
3126
|
+
},
|
|
3127
|
+
"schema": {
|
|
3128
|
+
"description": "Emit full machine-readable command schema.",
|
|
3129
|
+
"helpGroup": "GLOBAL",
|
|
3130
|
+
"name": "schema",
|
|
3131
|
+
"allowNo": false,
|
|
3132
|
+
"type": "boolean"
|
|
3133
|
+
},
|
|
3134
|
+
"version": {
|
|
3135
|
+
"char": "v",
|
|
3136
|
+
"description": "Emit version envelope.",
|
|
3137
|
+
"helpGroup": "GLOBAL",
|
|
3138
|
+
"name": "version",
|
|
3139
|
+
"allowNo": false,
|
|
3140
|
+
"type": "boolean"
|
|
3141
|
+
},
|
|
3142
|
+
"size": {
|
|
3143
|
+
"char": "s",
|
|
3144
|
+
"description": "Size: sq|wide|tall or WxH.",
|
|
3145
|
+
"name": "size",
|
|
3146
|
+
"default": "1024x1024",
|
|
3147
|
+
"hasDynamicHelp": false,
|
|
3148
|
+
"multiple": false,
|
|
3149
|
+
"type": "option"
|
|
3150
|
+
},
|
|
3151
|
+
"quality": {
|
|
3152
|
+
"char": "q",
|
|
3153
|
+
"description": "Quality.",
|
|
3154
|
+
"name": "quality",
|
|
3155
|
+
"default": "high",
|
|
3156
|
+
"hasDynamicHelp": false,
|
|
3157
|
+
"multiple": false,
|
|
3158
|
+
"options": [
|
|
3159
|
+
"low",
|
|
3160
|
+
"medium",
|
|
3161
|
+
"high"
|
|
3162
|
+
],
|
|
3163
|
+
"type": "option"
|
|
3164
|
+
},
|
|
3165
|
+
"format": {
|
|
3166
|
+
"char": "f",
|
|
3167
|
+
"description": "Output format.",
|
|
3168
|
+
"name": "format",
|
|
3169
|
+
"default": "png",
|
|
3170
|
+
"hasDynamicHelp": false,
|
|
3171
|
+
"multiple": false,
|
|
3172
|
+
"options": [
|
|
3173
|
+
"png",
|
|
3174
|
+
"jpeg",
|
|
3175
|
+
"jpg",
|
|
3176
|
+
"webp"
|
|
3177
|
+
],
|
|
3178
|
+
"type": "option"
|
|
3179
|
+
},
|
|
3180
|
+
"model": {
|
|
3181
|
+
"char": "m",
|
|
3182
|
+
"description": "Model.",
|
|
3183
|
+
"name": "model",
|
|
3184
|
+
"default": "gpt-image-2",
|
|
3185
|
+
"hasDynamicHelp": false,
|
|
3186
|
+
"multiple": false,
|
|
3187
|
+
"type": "option"
|
|
3188
|
+
},
|
|
3189
|
+
"output": {
|
|
3190
|
+
"char": "o",
|
|
3191
|
+
"description": "Output path.",
|
|
3192
|
+
"name": "output",
|
|
3193
|
+
"hasDynamicHelp": false,
|
|
3194
|
+
"multiple": false,
|
|
3195
|
+
"type": "option"
|
|
3196
|
+
},
|
|
3197
|
+
"out-dir": {
|
|
3198
|
+
"char": "d",
|
|
3199
|
+
"description": "Output directory.",
|
|
3200
|
+
"name": "out-dir",
|
|
3201
|
+
"default": ".",
|
|
3202
|
+
"hasDynamicHelp": false,
|
|
3203
|
+
"multiple": false,
|
|
3204
|
+
"type": "option"
|
|
3205
|
+
},
|
|
3206
|
+
"open": {
|
|
3207
|
+
"description": "Open result after writing.",
|
|
3208
|
+
"name": "open",
|
|
3209
|
+
"allowNo": false,
|
|
3210
|
+
"type": "boolean"
|
|
3211
|
+
},
|
|
3212
|
+
"compression": {
|
|
3213
|
+
"description": "JPEG/WebP compression 0-100.",
|
|
3214
|
+
"name": "compression",
|
|
3215
|
+
"hasDynamicHelp": false,
|
|
3216
|
+
"multiple": false,
|
|
3217
|
+
"type": "option"
|
|
3218
|
+
},
|
|
3219
|
+
"moderation": {
|
|
3220
|
+
"description": "Moderation.",
|
|
3221
|
+
"name": "moderation",
|
|
3222
|
+
"hasDynamicHelp": false,
|
|
3223
|
+
"multiple": false,
|
|
3224
|
+
"options": [
|
|
3225
|
+
"auto",
|
|
3226
|
+
"low"
|
|
3227
|
+
],
|
|
3228
|
+
"type": "option"
|
|
3229
|
+
},
|
|
3230
|
+
"background": {
|
|
3231
|
+
"description": "Background.",
|
|
3232
|
+
"name": "background",
|
|
3233
|
+
"hasDynamicHelp": false,
|
|
3234
|
+
"multiple": false,
|
|
3235
|
+
"options": [
|
|
3236
|
+
"auto",
|
|
3237
|
+
"transparent"
|
|
3238
|
+
],
|
|
3239
|
+
"type": "option"
|
|
3240
|
+
}
|
|
3241
|
+
},
|
|
3242
|
+
"hasDynamicHelp": false,
|
|
3243
|
+
"hiddenAliases": [],
|
|
3244
|
+
"id": "image:generate",
|
|
3245
|
+
"pluginAlias": "@eightstate/escli",
|
|
3246
|
+
"pluginName": "@eightstate/escli",
|
|
3247
|
+
"pluginType": "core",
|
|
3248
|
+
"strict": true,
|
|
3249
|
+
"summary": "Generate an image from a text prompt",
|
|
3250
|
+
"enableJsonFlag": true,
|
|
3251
|
+
"emitsJsonEnvelope": false,
|
|
3252
|
+
"errors": [
|
|
3253
|
+
"usage.required",
|
|
3254
|
+
"usage.invalid",
|
|
3255
|
+
"usage.unknown_flag",
|
|
3256
|
+
"validation.failed",
|
|
3257
|
+
"auth.required",
|
|
3258
|
+
"gate.credential_unavailable",
|
|
3259
|
+
"api.unauthorized",
|
|
3260
|
+
"api.forbidden",
|
|
3261
|
+
"api.rate_limited",
|
|
3262
|
+
"api.error",
|
|
3263
|
+
"network.error",
|
|
3264
|
+
"network.timeout",
|
|
3265
|
+
"service.unavailable",
|
|
3266
|
+
"gate.invalid_response",
|
|
3267
|
+
"file.write_failed",
|
|
3268
|
+
"image.prompt_required",
|
|
3269
|
+
"image.size_invalid",
|
|
3270
|
+
"image.generation_failed",
|
|
3271
|
+
"image.open_failed"
|
|
3272
|
+
],
|
|
3273
|
+
"isESM": true,
|
|
3274
|
+
"relativePath": [
|
|
3275
|
+
"dist",
|
|
3276
|
+
"commands",
|
|
3277
|
+
"image",
|
|
3278
|
+
"generate.js"
|
|
3279
|
+
]
|
|
3280
|
+
},
|
|
3281
|
+
"image": {
|
|
3282
|
+
"aliases": [
|
|
3283
|
+
"img",
|
|
3284
|
+
"i"
|
|
3285
|
+
],
|
|
3286
|
+
"args": {},
|
|
3287
|
+
"description": "Use image generate or image edit.",
|
|
3288
|
+
"examples": [
|
|
3289
|
+
"<%= config.bin %> image generate \"a sunset\"",
|
|
3290
|
+
"<%= config.bin %> image edit \"make it blue\" -i input.png"
|
|
3291
|
+
],
|
|
3292
|
+
"flags": {
|
|
3293
|
+
"json": {
|
|
3294
|
+
"description": "Format output as json.",
|
|
3295
|
+
"helpGroup": "GLOBAL",
|
|
3296
|
+
"name": "json",
|
|
3297
|
+
"allowNo": false,
|
|
3298
|
+
"type": "boolean"
|
|
3299
|
+
},
|
|
3300
|
+
"quiet": {
|
|
3301
|
+
"description": "Suppress diagnostic output.",
|
|
3302
|
+
"name": "quiet",
|
|
3303
|
+
"allowNo": false,
|
|
3304
|
+
"type": "boolean"
|
|
3305
|
+
},
|
|
3306
|
+
"api-key": {
|
|
3307
|
+
"description": "API key override.",
|
|
3308
|
+
"helpGroup": "GLOBAL",
|
|
3309
|
+
"name": "api-key",
|
|
3310
|
+
"hasDynamicHelp": false,
|
|
3311
|
+
"multiple": false,
|
|
3312
|
+
"type": "option"
|
|
3313
|
+
},
|
|
3314
|
+
"base-url": {
|
|
3315
|
+
"description": "Base URL override.",
|
|
3316
|
+
"helpGroup": "GLOBAL",
|
|
3317
|
+
"name": "base-url",
|
|
3318
|
+
"hasDynamicHelp": false,
|
|
3319
|
+
"multiple": false,
|
|
3320
|
+
"type": "option"
|
|
3321
|
+
},
|
|
3322
|
+
"timeout": {
|
|
3323
|
+
"description": "Request timeout in seconds.",
|
|
3324
|
+
"helpGroup": "GLOBAL",
|
|
3325
|
+
"name": "timeout",
|
|
3326
|
+
"default": 300,
|
|
3327
|
+
"hasDynamicHelp": false,
|
|
3328
|
+
"multiple": false,
|
|
3329
|
+
"type": "option"
|
|
3330
|
+
},
|
|
3331
|
+
"describe": {
|
|
3332
|
+
"description": "Emit compact machine-readable command description.",
|
|
3333
|
+
"helpGroup": "GLOBAL",
|
|
3334
|
+
"name": "describe",
|
|
3335
|
+
"allowNo": false,
|
|
3336
|
+
"type": "boolean"
|
|
3337
|
+
},
|
|
3338
|
+
"schema": {
|
|
3339
|
+
"description": "Emit full machine-readable command schema.",
|
|
3340
|
+
"helpGroup": "GLOBAL",
|
|
3341
|
+
"name": "schema",
|
|
3342
|
+
"allowNo": false,
|
|
3343
|
+
"type": "boolean"
|
|
3344
|
+
},
|
|
3345
|
+
"version": {
|
|
3346
|
+
"char": "v",
|
|
3347
|
+
"description": "Emit version envelope.",
|
|
3348
|
+
"helpGroup": "GLOBAL",
|
|
3349
|
+
"name": "version",
|
|
3350
|
+
"allowNo": false,
|
|
3351
|
+
"type": "boolean"
|
|
3352
|
+
}
|
|
3353
|
+
},
|
|
3354
|
+
"hasDynamicHelp": false,
|
|
3355
|
+
"hiddenAliases": [],
|
|
3356
|
+
"id": "image",
|
|
3357
|
+
"pluginAlias": "@eightstate/escli",
|
|
3358
|
+
"pluginName": "@eightstate/escli",
|
|
3359
|
+
"pluginType": "core",
|
|
3360
|
+
"strict": true,
|
|
3361
|
+
"summary": "Generate or edit images from prompts",
|
|
3362
|
+
"enableJsonFlag": true,
|
|
3363
|
+
"emitsJsonEnvelope": false,
|
|
3364
|
+
"errors": [
|
|
3365
|
+
"usage.invalid"
|
|
3366
|
+
],
|
|
3367
|
+
"isESM": true,
|
|
3368
|
+
"relativePath": [
|
|
3369
|
+
"dist",
|
|
3370
|
+
"commands",
|
|
3371
|
+
"image",
|
|
3372
|
+
"index.js"
|
|
3373
|
+
]
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3376
|
+
"version": "0.5.0"
|
|
3377
|
+
}
|