@hyperdrive.bot/cli 1.0.2

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.
Files changed (127) hide show
  1. package/README.md +1598 -0
  2. package/bin/dev.cmd +3 -0
  3. package/bin/dev.js +3 -0
  4. package/bin/run.cmd +3 -0
  5. package/bin/run.js +5 -0
  6. package/dist/commands/account/add.d.ts +16 -0
  7. package/dist/commands/account/add.js +185 -0
  8. package/dist/commands/account/list.d.ts +6 -0
  9. package/dist/commands/account/list.js +37 -0
  10. package/dist/commands/account/remove.d.ts +11 -0
  11. package/dist/commands/account/remove.js +57 -0
  12. package/dist/commands/auth/login.d.ts +16 -0
  13. package/dist/commands/auth/login.js +178 -0
  14. package/dist/commands/auth/logout.d.ts +6 -0
  15. package/dist/commands/auth/logout.js +39 -0
  16. package/dist/commands/auth/refresh.d.ts +6 -0
  17. package/dist/commands/auth/refresh.js +66 -0
  18. package/dist/commands/auth/status.d.ts +6 -0
  19. package/dist/commands/auth/status.js +63 -0
  20. package/dist/commands/ci/account/create.d.ts +16 -0
  21. package/dist/commands/ci/account/create.js +158 -0
  22. package/dist/commands/ci/account/delete.d.ts +14 -0
  23. package/dist/commands/ci/account/delete.js +88 -0
  24. package/dist/commands/ci/account/list.d.ts +10 -0
  25. package/dist/commands/ci/account/list.js +65 -0
  26. package/dist/commands/config/get.d.ts +9 -0
  27. package/dist/commands/config/get.js +37 -0
  28. package/dist/commands/config/set.d.ts +10 -0
  29. package/dist/commands/config/set.js +48 -0
  30. package/dist/commands/config/show.d.ts +6 -0
  31. package/dist/commands/config/show.js +10 -0
  32. package/dist/commands/deployment/create.d.ts +30 -0
  33. package/dist/commands/deployment/create.js +188 -0
  34. package/dist/commands/deployment/get.d.ts +13 -0
  35. package/dist/commands/deployment/get.js +101 -0
  36. package/dist/commands/deployment/launch.d.ts +15 -0
  37. package/dist/commands/deployment/launch.js +105 -0
  38. package/dist/commands/deployment/list.d.ts +11 -0
  39. package/dist/commands/deployment/list.js +91 -0
  40. package/dist/commands/domain/current.d.ts +6 -0
  41. package/dist/commands/domain/current.js +18 -0
  42. package/dist/commands/domain/list.d.ts +6 -0
  43. package/dist/commands/domain/list.js +42 -0
  44. package/dist/commands/domain/switch.d.ts +9 -0
  45. package/dist/commands/domain/switch.js +40 -0
  46. package/dist/commands/example.d.ts +13 -0
  47. package/dist/commands/example.js +24 -0
  48. package/dist/commands/git/connect.d.ts +10 -0
  49. package/dist/commands/git/connect.js +56 -0
  50. package/dist/commands/git/disconnect.d.ts +11 -0
  51. package/dist/commands/git/disconnect.js +93 -0
  52. package/dist/commands/git/list.d.ts +10 -0
  53. package/dist/commands/git/list.js +53 -0
  54. package/dist/commands/git/sync.d.ts +18 -0
  55. package/dist/commands/git/sync.js +235 -0
  56. package/dist/commands/init.d.ts +188 -0
  57. package/dist/commands/init.js +817 -0
  58. package/dist/commands/jira/connect.d.ts +9 -0
  59. package/dist/commands/jira/connect.js +141 -0
  60. package/dist/commands/jira/status.d.ts +9 -0
  61. package/dist/commands/jira/status.js +118 -0
  62. package/dist/commands/module/analyze.d.ts +29 -0
  63. package/dist/commands/module/analyze.js +201 -0
  64. package/dist/commands/module/create.d.ts +42 -0
  65. package/dist/commands/module/create.js +498 -0
  66. package/dist/commands/module/destroy.d.ts +11 -0
  67. package/dist/commands/module/destroy.js +77 -0
  68. package/dist/commands/module/get.d.ts +10 -0
  69. package/dist/commands/module/get.js +43 -0
  70. package/dist/commands/module/link.d.ts +15 -0
  71. package/dist/commands/module/link.js +175 -0
  72. package/dist/commands/module/list.d.ts +9 -0
  73. package/dist/commands/module/list.js +51 -0
  74. package/dist/commands/module/reanalyze.d.ts +30 -0
  75. package/dist/commands/module/reanalyze.js +206 -0
  76. package/dist/commands/module/update.d.ts +27 -0
  77. package/dist/commands/module/update.js +102 -0
  78. package/dist/commands/parameter/add.d.ts +15 -0
  79. package/dist/commands/parameter/add.js +99 -0
  80. package/dist/commands/parameter/backfill.d.ts +12 -0
  81. package/dist/commands/parameter/backfill.js +113 -0
  82. package/dist/commands/parameter/clear.d.ts +14 -0
  83. package/dist/commands/parameter/clear.js +95 -0
  84. package/dist/commands/parameter/list.d.ts +14 -0
  85. package/dist/commands/parameter/list.js +92 -0
  86. package/dist/commands/parameter/pull.d.ts +14 -0
  87. package/dist/commands/parameter/pull.js +124 -0
  88. package/dist/commands/parameter/remove.d.ts +15 -0
  89. package/dist/commands/parameter/remove.js +90 -0
  90. package/dist/commands/parameter/sync.d.ts +14 -0
  91. package/dist/commands/parameter/sync.js +153 -0
  92. package/dist/commands/parameter/update.d.ts +15 -0
  93. package/dist/commands/parameter/update.js +100 -0
  94. package/dist/commands/stage/create.d.ts +28 -0
  95. package/dist/commands/stage/create.js +312 -0
  96. package/dist/commands/stage/list.d.ts +9 -0
  97. package/dist/commands/stage/list.js +63 -0
  98. package/dist/commands/test-api.d.ts +9 -0
  99. package/dist/commands/test-api.js +40 -0
  100. package/dist/index.d.ts +1 -0
  101. package/dist/index.js +1 -0
  102. package/dist/services/auth-service.d.ts +84 -0
  103. package/dist/services/auth-service.js +240 -0
  104. package/dist/services/git.d.ts +46 -0
  105. package/dist/services/git.js +409 -0
  106. package/dist/services/hyperdrive-sigv4.d.ts +449 -0
  107. package/dist/services/hyperdrive-sigv4.js +375 -0
  108. package/dist/services/hyperdrive.d.ts +87 -0
  109. package/dist/services/hyperdrive.js +108 -0
  110. package/dist/services/log-tailer.d.ts +95 -0
  111. package/dist/services/log-tailer.js +242 -0
  112. package/dist/services/tenant-service.d.ts +106 -0
  113. package/dist/services/tenant-service.js +332 -0
  114. package/dist/utils/account-flow.d.ts +74 -0
  115. package/dist/utils/account-flow.js +228 -0
  116. package/dist/utils/auth-flow.d.ts +146 -0
  117. package/dist/utils/auth-flow.js +477 -0
  118. package/dist/utils/git-flow.d.ts +72 -0
  119. package/dist/utils/git-flow.js +232 -0
  120. package/dist/utils/jira-flow.d.ts +71 -0
  121. package/dist/utils/jira-flow.js +120 -0
  122. package/dist/utils/summary-display.d.ts +59 -0
  123. package/dist/utils/summary-display.js +140 -0
  124. package/dist/utils/validation.d.ts +15 -0
  125. package/dist/utils/validation.js +32 -0
  126. package/oclif.manifest.json +2819 -0
  127. package/package.json +112 -0
@@ -0,0 +1,2819 @@
1
+ {
2
+ "commands": {
3
+ "example": {
4
+ "aliases": [],
5
+ "args": {
6
+ "file": {
7
+ "description": "file to read",
8
+ "name": "file"
9
+ }
10
+ },
11
+ "description": "describe the command here",
12
+ "examples": [
13
+ "<%= config.bin %> <%= command.id %>"
14
+ ],
15
+ "flags": {
16
+ "force": {
17
+ "char": "f",
18
+ "name": "force",
19
+ "allowNo": false,
20
+ "type": "boolean"
21
+ },
22
+ "name": {
23
+ "char": "n",
24
+ "description": "name to print",
25
+ "name": "name",
26
+ "hasDynamicHelp": false,
27
+ "multiple": false,
28
+ "type": "option"
29
+ }
30
+ },
31
+ "hasDynamicHelp": false,
32
+ "hiddenAliases": [],
33
+ "id": "example",
34
+ "pluginAlias": "@hyperdrive.bot/cli",
35
+ "pluginName": "@hyperdrive.bot/cli",
36
+ "pluginType": "core",
37
+ "strict": true,
38
+ "enableJsonFlag": false,
39
+ "isESM": true,
40
+ "relativePath": [
41
+ "dist",
42
+ "commands",
43
+ "example.js"
44
+ ]
45
+ },
46
+ "init": {
47
+ "aliases": [],
48
+ "args": {},
49
+ "description": "Initialize Hyperdrive CLI with guided setup wizard",
50
+ "examples": [
51
+ "<%= config.bin %> <%= command.id %>"
52
+ ],
53
+ "flags": {},
54
+ "hasDynamicHelp": false,
55
+ "hiddenAliases": [],
56
+ "id": "init",
57
+ "pluginAlias": "@hyperdrive.bot/cli",
58
+ "pluginName": "@hyperdrive.bot/cli",
59
+ "pluginType": "core",
60
+ "strict": true,
61
+ "enableJsonFlag": false,
62
+ "isESM": true,
63
+ "relativePath": [
64
+ "dist",
65
+ "commands",
66
+ "init.js"
67
+ ]
68
+ },
69
+ "test-api": {
70
+ "aliases": [],
71
+ "args": {},
72
+ "description": "Test API connection with SigV4 authentication",
73
+ "examples": [
74
+ "<%= config.bin %> <%= command.id %>"
75
+ ],
76
+ "flags": {
77
+ "domain": {
78
+ "char": "d",
79
+ "description": "Tenant domain (for multi-domain setups)",
80
+ "name": "domain",
81
+ "hasDynamicHelp": false,
82
+ "multiple": false,
83
+ "type": "option"
84
+ }
85
+ },
86
+ "hasDynamicHelp": false,
87
+ "hiddenAliases": [],
88
+ "id": "test-api",
89
+ "pluginAlias": "@hyperdrive.bot/cli",
90
+ "pluginName": "@hyperdrive.bot/cli",
91
+ "pluginType": "core",
92
+ "strict": true,
93
+ "enableJsonFlag": false,
94
+ "isESM": true,
95
+ "relativePath": [
96
+ "dist",
97
+ "commands",
98
+ "test-api.js"
99
+ ]
100
+ },
101
+ "account:add": {
102
+ "aliases": [],
103
+ "args": {},
104
+ "description": "Add an AWS account to Hyperdrive for deployments",
105
+ "examples": [
106
+ "<%= config.bin %> <%= command.id %> --accountId 123456789012 --defaultRegion us-east-1",
107
+ "<%= config.bin %> <%= command.id %> --accountId 123456789012 --defaultRegion us-east-1 --name \"Production Account\"",
108
+ "<%= config.bin %> <%= command.id %> # Interactive mode"
109
+ ],
110
+ "flags": {
111
+ "accountId": {
112
+ "char": "a",
113
+ "description": "AWS Account ID (12 digits)",
114
+ "name": "accountId",
115
+ "hasDynamicHelp": false,
116
+ "multiple": false,
117
+ "type": "option"
118
+ },
119
+ "defaultRegion": {
120
+ "char": "r",
121
+ "description": "Default AWS region for deployments",
122
+ "name": "defaultRegion",
123
+ "hasDynamicHelp": false,
124
+ "multiple": false,
125
+ "type": "option"
126
+ },
127
+ "domain": {
128
+ "char": "d",
129
+ "description": "Tenant domain (for multi-domain setups)",
130
+ "name": "domain",
131
+ "hasDynamicHelp": false,
132
+ "multiple": false,
133
+ "type": "option"
134
+ },
135
+ "name": {
136
+ "char": "n",
137
+ "description": "Friendly name for the account",
138
+ "name": "name",
139
+ "hasDynamicHelp": false,
140
+ "multiple": false,
141
+ "type": "option"
142
+ },
143
+ "no-wait": {
144
+ "description": "Do not wait for role verification after opening CloudFormation",
145
+ "name": "no-wait",
146
+ "allowNo": false,
147
+ "type": "boolean"
148
+ },
149
+ "roleArn": {
150
+ "description": "Cross-account IAM role ARN (optional - will be auto-generated if not provided)",
151
+ "name": "roleArn",
152
+ "hasDynamicHelp": false,
153
+ "multiple": false,
154
+ "type": "option"
155
+ }
156
+ },
157
+ "hasDynamicHelp": false,
158
+ "hiddenAliases": [],
159
+ "id": "account:add",
160
+ "pluginAlias": "@hyperdrive.bot/cli",
161
+ "pluginName": "@hyperdrive.bot/cli",
162
+ "pluginType": "core",
163
+ "strict": true,
164
+ "enableJsonFlag": false,
165
+ "isESM": true,
166
+ "relativePath": [
167
+ "dist",
168
+ "commands",
169
+ "account",
170
+ "add.js"
171
+ ]
172
+ },
173
+ "account:list": {
174
+ "aliases": [],
175
+ "args": {},
176
+ "description": "List all AWS accounts registered with Hyperdrive",
177
+ "examples": [
178
+ "<%= config.bin %> <%= command.id %>"
179
+ ],
180
+ "flags": {},
181
+ "hasDynamicHelp": false,
182
+ "hiddenAliases": [],
183
+ "id": "account:list",
184
+ "pluginAlias": "@hyperdrive.bot/cli",
185
+ "pluginName": "@hyperdrive.bot/cli",
186
+ "pluginType": "core",
187
+ "strict": true,
188
+ "enableJsonFlag": false,
189
+ "isESM": true,
190
+ "relativePath": [
191
+ "dist",
192
+ "commands",
193
+ "account",
194
+ "list.js"
195
+ ]
196
+ },
197
+ "account:remove": {
198
+ "aliases": [],
199
+ "args": {},
200
+ "description": "Remove an AWS account from Hyperdrive",
201
+ "examples": [
202
+ "<%= config.bin %> <%= command.id %> --accountId 123456789012",
203
+ "<%= config.bin %> <%= command.id %> --accountId 123456789012 --force"
204
+ ],
205
+ "flags": {
206
+ "accountId": {
207
+ "char": "a",
208
+ "description": "AWS Account ID (12 digits)",
209
+ "name": "accountId",
210
+ "required": true,
211
+ "hasDynamicHelp": false,
212
+ "multiple": false,
213
+ "type": "option"
214
+ },
215
+ "domain": {
216
+ "char": "d",
217
+ "description": "Tenant domain (for multi-domain setups)",
218
+ "name": "domain",
219
+ "hasDynamicHelp": false,
220
+ "multiple": false,
221
+ "type": "option"
222
+ },
223
+ "force": {
224
+ "char": "f",
225
+ "description": "Skip confirmation prompt",
226
+ "name": "force",
227
+ "allowNo": false,
228
+ "type": "boolean"
229
+ }
230
+ },
231
+ "hasDynamicHelp": false,
232
+ "hiddenAliases": [],
233
+ "id": "account:remove",
234
+ "pluginAlias": "@hyperdrive.bot/cli",
235
+ "pluginName": "@hyperdrive.bot/cli",
236
+ "pluginType": "core",
237
+ "strict": true,
238
+ "enableJsonFlag": false,
239
+ "isESM": true,
240
+ "relativePath": [
241
+ "dist",
242
+ "commands",
243
+ "account",
244
+ "remove.js"
245
+ ]
246
+ },
247
+ "auth:login": {
248
+ "aliases": [],
249
+ "args": {},
250
+ "description": "Authenticate with Hyperdrive using OAuth 2.0 PKCE flow (or CI credentials)",
251
+ "examples": [
252
+ "<%= config.bin %> <%= command.id %>",
253
+ "<%= config.bin %> <%= command.id %> --domain acme.hyperdrive.bot",
254
+ "<%= config.bin %> <%= command.id %> --port 9876",
255
+ "<%= config.bin %> <%= command.id %> --ci --domain acme.hyperdrive.bot"
256
+ ],
257
+ "flags": {
258
+ "ci": {
259
+ "description": "Use CI authentication (requires HD_CI_USERNAME and HD_CI_PASSWORD env vars)",
260
+ "name": "ci",
261
+ "allowNo": false,
262
+ "type": "boolean"
263
+ },
264
+ "domain": {
265
+ "char": "d",
266
+ "description": "Tenant domain (e.g., acme.hyperdrive.bot) - allows multiple installations",
267
+ "name": "domain",
268
+ "hasDynamicHelp": false,
269
+ "multiple": false,
270
+ "type": "option"
271
+ },
272
+ "port": {
273
+ "char": "p",
274
+ "description": "Local callback server port",
275
+ "name": "port",
276
+ "default": 8765,
277
+ "hasDynamicHelp": false,
278
+ "multiple": false,
279
+ "type": "option"
280
+ },
281
+ "tenant": {
282
+ "char": "t",
283
+ "description": "[DEPRECATED] Use --domain instead",
284
+ "hidden": true,
285
+ "name": "tenant",
286
+ "hasDynamicHelp": false,
287
+ "multiple": false,
288
+ "type": "option"
289
+ }
290
+ },
291
+ "hasDynamicHelp": false,
292
+ "hiddenAliases": [],
293
+ "id": "auth:login",
294
+ "pluginAlias": "@hyperdrive.bot/cli",
295
+ "pluginName": "@hyperdrive.bot/cli",
296
+ "pluginType": "core",
297
+ "strict": true,
298
+ "enableJsonFlag": false,
299
+ "isESM": true,
300
+ "relativePath": [
301
+ "dist",
302
+ "commands",
303
+ "auth",
304
+ "login.js"
305
+ ]
306
+ },
307
+ "auth:logout": {
308
+ "aliases": [],
309
+ "args": {},
310
+ "description": "Remove stored credentials and logout",
311
+ "examples": [
312
+ "<%= config.bin %> <%= command.id %>"
313
+ ],
314
+ "flags": {},
315
+ "hasDynamicHelp": false,
316
+ "hiddenAliases": [],
317
+ "id": "auth:logout",
318
+ "pluginAlias": "@hyperdrive.bot/cli",
319
+ "pluginName": "@hyperdrive.bot/cli",
320
+ "pluginType": "core",
321
+ "strict": true,
322
+ "enableJsonFlag": false,
323
+ "isESM": true,
324
+ "relativePath": [
325
+ "dist",
326
+ "commands",
327
+ "auth",
328
+ "logout.js"
329
+ ]
330
+ },
331
+ "auth:refresh": {
332
+ "aliases": [],
333
+ "args": {},
334
+ "description": "Refresh expired AWS credentials using refresh token",
335
+ "examples": [
336
+ "<%= config.bin %> <%= command.id %>"
337
+ ],
338
+ "flags": {},
339
+ "hasDynamicHelp": false,
340
+ "hiddenAliases": [],
341
+ "id": "auth:refresh",
342
+ "pluginAlias": "@hyperdrive.bot/cli",
343
+ "pluginName": "@hyperdrive.bot/cli",
344
+ "pluginType": "core",
345
+ "strict": true,
346
+ "enableJsonFlag": false,
347
+ "isESM": true,
348
+ "relativePath": [
349
+ "dist",
350
+ "commands",
351
+ "auth",
352
+ "refresh.js"
353
+ ]
354
+ },
355
+ "auth:status": {
356
+ "aliases": [],
357
+ "args": {},
358
+ "description": "Show current authentication status",
359
+ "examples": [
360
+ "<%= config.bin %> <%= command.id %>"
361
+ ],
362
+ "flags": {},
363
+ "hasDynamicHelp": false,
364
+ "hiddenAliases": [],
365
+ "id": "auth:status",
366
+ "pluginAlias": "@hyperdrive.bot/cli",
367
+ "pluginName": "@hyperdrive.bot/cli",
368
+ "pluginType": "core",
369
+ "strict": true,
370
+ "enableJsonFlag": false,
371
+ "isESM": true,
372
+ "relativePath": [
373
+ "dist",
374
+ "commands",
375
+ "auth",
376
+ "status.js"
377
+ ]
378
+ },
379
+ "config:get": {
380
+ "aliases": [],
381
+ "args": {
382
+ "key": {
383
+ "description": "Configuration key",
384
+ "name": "key",
385
+ "options": [
386
+ "tenant-domain",
387
+ "bootstrap-url",
388
+ "api-url",
389
+ "region"
390
+ ],
391
+ "required": true
392
+ }
393
+ },
394
+ "description": "Get CLI configuration value",
395
+ "examples": [
396
+ "<%= config.bin %> <%= command.id %> tenant-domain",
397
+ "<%= config.bin %> <%= command.id %> bootstrap-url"
398
+ ],
399
+ "flags": {},
400
+ "hasDynamicHelp": false,
401
+ "hiddenAliases": [],
402
+ "id": "config:get",
403
+ "pluginAlias": "@hyperdrive.bot/cli",
404
+ "pluginName": "@hyperdrive.bot/cli",
405
+ "pluginType": "core",
406
+ "strict": true,
407
+ "enableJsonFlag": false,
408
+ "isESM": true,
409
+ "relativePath": [
410
+ "dist",
411
+ "commands",
412
+ "config",
413
+ "get.js"
414
+ ]
415
+ },
416
+ "config:set": {
417
+ "aliases": [],
418
+ "args": {
419
+ "key": {
420
+ "description": "Configuration key",
421
+ "name": "key",
422
+ "options": [
423
+ "tenant-domain",
424
+ "bootstrap-url",
425
+ "api-url",
426
+ "region"
427
+ ],
428
+ "required": true
429
+ },
430
+ "value": {
431
+ "description": "Configuration value",
432
+ "name": "value",
433
+ "required": true
434
+ }
435
+ },
436
+ "description": "Set CLI configuration values",
437
+ "examples": [
438
+ "<%= config.bin %> <%= command.id %> tenant-domain acme.hyperdrive.bot",
439
+ "<%= config.bin %> <%= command.id %> bootstrap-url https://custom-api.example.com/tenant/bootstrap",
440
+ "<%= config.bin %> <%= command.id %> api-url https://api.us-east-1.hyperdrive.bot",
441
+ "<%= config.bin %> <%= command.id %> region us-west-2"
442
+ ],
443
+ "flags": {},
444
+ "hasDynamicHelp": false,
445
+ "hiddenAliases": [],
446
+ "id": "config:set",
447
+ "pluginAlias": "@hyperdrive.bot/cli",
448
+ "pluginName": "@hyperdrive.bot/cli",
449
+ "pluginType": "core",
450
+ "strict": true,
451
+ "enableJsonFlag": false,
452
+ "isESM": true,
453
+ "relativePath": [
454
+ "dist",
455
+ "commands",
456
+ "config",
457
+ "set.js"
458
+ ]
459
+ },
460
+ "config:show": {
461
+ "aliases": [],
462
+ "args": {},
463
+ "description": "Show all CLI configuration settings",
464
+ "examples": [
465
+ "<%= config.bin %> <%= command.id %>"
466
+ ],
467
+ "flags": {},
468
+ "hasDynamicHelp": false,
469
+ "hiddenAliases": [],
470
+ "id": "config:show",
471
+ "pluginAlias": "@hyperdrive.bot/cli",
472
+ "pluginName": "@hyperdrive.bot/cli",
473
+ "pluginType": "core",
474
+ "strict": true,
475
+ "enableJsonFlag": false,
476
+ "isESM": true,
477
+ "relativePath": [
478
+ "dist",
479
+ "commands",
480
+ "config",
481
+ "show.js"
482
+ ]
483
+ },
484
+ "deployment:create": {
485
+ "aliases": [],
486
+ "args": {},
487
+ "description": "Create a new deployment with real-time log streaming",
488
+ "examples": [
489
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\" --commit=\"abc123\" --moduleSlug=\"my-api\"",
490
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\" --commit=\"abc123\" --launch",
491
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\" --commit=\"abc123\" --verbose"
492
+ ],
493
+ "flags": {
494
+ "commit": {
495
+ "char": "c",
496
+ "description": "Commit hash",
497
+ "name": "commit",
498
+ "required": true,
499
+ "hasDynamicHelp": false,
500
+ "multiple": false,
501
+ "type": "option"
502
+ },
503
+ "debug": {
504
+ "description": "Include debug-level logs (requires --verbose)",
505
+ "name": "debug",
506
+ "allowNo": false,
507
+ "type": "boolean"
508
+ },
509
+ "domain": {
510
+ "char": "d",
511
+ "description": "Tenant domain (for multi-domain setups)",
512
+ "name": "domain",
513
+ "hasDynamicHelp": false,
514
+ "multiple": false,
515
+ "type": "option"
516
+ },
517
+ "launch": {
518
+ "description": "Launch the deployment after creating it",
519
+ "name": "launch",
520
+ "allowNo": false,
521
+ "type": "boolean"
522
+ },
523
+ "moduleSlug": {
524
+ "char": "m",
525
+ "description": "Module slug",
526
+ "name": "moduleSlug",
527
+ "required": true,
528
+ "default": "",
529
+ "hasDynamicHelp": false,
530
+ "multiple": false,
531
+ "type": "option"
532
+ },
533
+ "name": {
534
+ "char": "n",
535
+ "description": "The name of the deployment",
536
+ "name": "name",
537
+ "required": false,
538
+ "default": "Deployment-2026-01-18-11-46-30",
539
+ "hasDynamicHelp": false,
540
+ "multiple": false,
541
+ "type": "option"
542
+ },
543
+ "noStream": {
544
+ "description": "Disable log streaming (use polling instead)",
545
+ "name": "noStream",
546
+ "allowNo": false,
547
+ "type": "boolean"
548
+ },
549
+ "regions": {
550
+ "char": "r",
551
+ "description": "Regions for the deployment",
552
+ "name": "regions",
553
+ "default": [],
554
+ "hasDynamicHelp": false,
555
+ "multiple": true,
556
+ "type": "option"
557
+ },
558
+ "stage": {
559
+ "char": "s",
560
+ "description": "Stage for the deployment",
561
+ "name": "stage",
562
+ "required": true,
563
+ "hasDynamicHelp": false,
564
+ "multiple": false,
565
+ "type": "option"
566
+ },
567
+ "verbose": {
568
+ "char": "v",
569
+ "description": "Show detailed build logs",
570
+ "name": "verbose",
571
+ "allowNo": false,
572
+ "type": "boolean"
573
+ }
574
+ },
575
+ "hasDynamicHelp": false,
576
+ "hiddenAliases": [],
577
+ "id": "deployment:create",
578
+ "pluginAlias": "@hyperdrive.bot/cli",
579
+ "pluginName": "@hyperdrive.bot/cli",
580
+ "pluginType": "core",
581
+ "strict": true,
582
+ "enableJsonFlag": false,
583
+ "isESM": true,
584
+ "relativePath": [
585
+ "dist",
586
+ "commands",
587
+ "deployment",
588
+ "create.js"
589
+ ]
590
+ },
591
+ "deployment:get": {
592
+ "aliases": [],
593
+ "args": {},
594
+ "description": "Get details of a specific deployment (alias for deployment check)",
595
+ "examples": [
596
+ "<%= config.bin %> <%= command.id %> --name=\"Deployment-2024-01-01\" --stage=\"dev\"",
597
+ "<%= config.bin %> <%= command.id %> --name=\"prod-release-v1\" --stage=\"prod\""
598
+ ],
599
+ "flags": {
600
+ "domain": {
601
+ "char": "d",
602
+ "description": "Tenant domain (for multi-domain setups)",
603
+ "name": "domain",
604
+ "hasDynamicHelp": false,
605
+ "multiple": false,
606
+ "type": "option"
607
+ },
608
+ "moduleSlug": {
609
+ "char": "m",
610
+ "description": "Module slug",
611
+ "name": "moduleSlug",
612
+ "required": true,
613
+ "default": "",
614
+ "hasDynamicHelp": false,
615
+ "multiple": false,
616
+ "type": "option"
617
+ },
618
+ "name": {
619
+ "char": "n",
620
+ "description": "Deployment name",
621
+ "name": "name",
622
+ "required": true,
623
+ "hasDynamicHelp": false,
624
+ "multiple": false,
625
+ "type": "option"
626
+ },
627
+ "stage": {
628
+ "char": "s",
629
+ "description": "Stage for the deployment",
630
+ "name": "stage",
631
+ "required": true,
632
+ "hasDynamicHelp": false,
633
+ "multiple": false,
634
+ "type": "option"
635
+ }
636
+ },
637
+ "hasDynamicHelp": false,
638
+ "hiddenAliases": [],
639
+ "id": "deployment:get",
640
+ "pluginAlias": "@hyperdrive.bot/cli",
641
+ "pluginName": "@hyperdrive.bot/cli",
642
+ "pluginType": "core",
643
+ "strict": true,
644
+ "enableJsonFlag": false,
645
+ "isESM": true,
646
+ "relativePath": [
647
+ "dist",
648
+ "commands",
649
+ "deployment",
650
+ "get.js"
651
+ ]
652
+ },
653
+ "deployment:launch": {
654
+ "aliases": [],
655
+ "args": {},
656
+ "description": "Launch an existing deployment",
657
+ "examples": [
658
+ "<%= config.bin %> <%= command.id %> --name=\"Deployment-2024-01-01\" --stage=\"dev\" --region=\"us-east-1\"",
659
+ "<%= config.bin %> <%= command.id %> --name=\"prod-release\" --stage=\"prod\" --region=\"us-west-2\""
660
+ ],
661
+ "flags": {
662
+ "domain": {
663
+ "char": "d",
664
+ "description": "Tenant domain (for multi-domain setups)",
665
+ "name": "domain",
666
+ "hasDynamicHelp": false,
667
+ "multiple": false,
668
+ "type": "option"
669
+ },
670
+ "force": {
671
+ "char": "f",
672
+ "description": "Force launch even if deployment is not in ready state",
673
+ "name": "force",
674
+ "allowNo": false,
675
+ "type": "boolean"
676
+ },
677
+ "moduleSlug": {
678
+ "char": "m",
679
+ "description": "Module slug",
680
+ "name": "moduleSlug",
681
+ "required": true,
682
+ "default": "",
683
+ "hasDynamicHelp": false,
684
+ "multiple": false,
685
+ "type": "option"
686
+ },
687
+ "name": {
688
+ "char": "n",
689
+ "description": "The name of the deployment to launch",
690
+ "name": "name",
691
+ "required": true,
692
+ "hasDynamicHelp": false,
693
+ "multiple": false,
694
+ "type": "option"
695
+ },
696
+ "region": {
697
+ "char": "r",
698
+ "description": "Region for the deployment",
699
+ "name": "region",
700
+ "hasDynamicHelp": false,
701
+ "multiple": false,
702
+ "type": "option"
703
+ },
704
+ "stage": {
705
+ "char": "s",
706
+ "description": "Stage for the deployment",
707
+ "name": "stage",
708
+ "required": true,
709
+ "hasDynamicHelp": false,
710
+ "multiple": false,
711
+ "type": "option"
712
+ }
713
+ },
714
+ "hasDynamicHelp": false,
715
+ "hiddenAliases": [],
716
+ "id": "deployment:launch",
717
+ "pluginAlias": "@hyperdrive.bot/cli",
718
+ "pluginName": "@hyperdrive.bot/cli",
719
+ "pluginType": "core",
720
+ "strict": true,
721
+ "enableJsonFlag": false,
722
+ "isESM": true,
723
+ "relativePath": [
724
+ "dist",
725
+ "commands",
726
+ "deployment",
727
+ "launch.js"
728
+ ]
729
+ },
730
+ "deployment:list": {
731
+ "aliases": [],
732
+ "args": {},
733
+ "description": "List all deployments for a module and stage",
734
+ "examples": [
735
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
736
+ "<%= config.bin %> <%= command.id %> --stage=\"prod\" --moduleSlug=\"my-api\""
737
+ ],
738
+ "flags": {
739
+ "domain": {
740
+ "char": "d",
741
+ "description": "Tenant domain (for multi-domain setups)",
742
+ "name": "domain",
743
+ "hasDynamicHelp": false,
744
+ "multiple": false,
745
+ "type": "option"
746
+ },
747
+ "moduleSlug": {
748
+ "char": "m",
749
+ "description": "Module slug",
750
+ "name": "moduleSlug",
751
+ "required": true,
752
+ "default": "",
753
+ "hasDynamicHelp": false,
754
+ "multiple": false,
755
+ "type": "option"
756
+ },
757
+ "stage": {
758
+ "char": "s",
759
+ "description": "Stage to list deployments for",
760
+ "name": "stage",
761
+ "required": true,
762
+ "hasDynamicHelp": false,
763
+ "multiple": false,
764
+ "type": "option"
765
+ }
766
+ },
767
+ "hasDynamicHelp": false,
768
+ "hiddenAliases": [],
769
+ "id": "deployment:list",
770
+ "pluginAlias": "@hyperdrive.bot/cli",
771
+ "pluginName": "@hyperdrive.bot/cli",
772
+ "pluginType": "core",
773
+ "strict": true,
774
+ "enableJsonFlag": false,
775
+ "isESM": true,
776
+ "relativePath": [
777
+ "dist",
778
+ "commands",
779
+ "deployment",
780
+ "list.js"
781
+ ]
782
+ },
783
+ "domain:current": {
784
+ "aliases": [],
785
+ "args": {},
786
+ "description": "Show the current default domain",
787
+ "examples": [
788
+ "<%= config.bin %> <%= command.id %>"
789
+ ],
790
+ "flags": {},
791
+ "hasDynamicHelp": false,
792
+ "hiddenAliases": [],
793
+ "id": "domain:current",
794
+ "pluginAlias": "@hyperdrive.bot/cli",
795
+ "pluginName": "@hyperdrive.bot/cli",
796
+ "pluginType": "core",
797
+ "strict": true,
798
+ "enableJsonFlag": false,
799
+ "isESM": true,
800
+ "relativePath": [
801
+ "dist",
802
+ "commands",
803
+ "domain",
804
+ "current.js"
805
+ ]
806
+ },
807
+ "domain:list": {
808
+ "aliases": [],
809
+ "args": {},
810
+ "description": "List all configured domains/installations",
811
+ "examples": [
812
+ "<%= config.bin %> <%= command.id %>"
813
+ ],
814
+ "flags": {},
815
+ "hasDynamicHelp": false,
816
+ "hiddenAliases": [],
817
+ "id": "domain:list",
818
+ "pluginAlias": "@hyperdrive.bot/cli",
819
+ "pluginName": "@hyperdrive.bot/cli",
820
+ "pluginType": "core",
821
+ "strict": true,
822
+ "enableJsonFlag": false,
823
+ "isESM": true,
824
+ "relativePath": [
825
+ "dist",
826
+ "commands",
827
+ "domain",
828
+ "list.js"
829
+ ]
830
+ },
831
+ "domain:switch": {
832
+ "aliases": [],
833
+ "args": {
834
+ "domain": {
835
+ "description": "The domain to set as default",
836
+ "name": "domain",
837
+ "required": true
838
+ }
839
+ },
840
+ "description": "Switch the default domain for CLI commands",
841
+ "examples": [
842
+ "<%= config.bin %> <%= command.id %> acme.hyperdrive.bot"
843
+ ],
844
+ "flags": {},
845
+ "hasDynamicHelp": false,
846
+ "hiddenAliases": [],
847
+ "id": "domain:switch",
848
+ "pluginAlias": "@hyperdrive.bot/cli",
849
+ "pluginName": "@hyperdrive.bot/cli",
850
+ "pluginType": "core",
851
+ "strict": true,
852
+ "enableJsonFlag": false,
853
+ "isESM": true,
854
+ "relativePath": [
855
+ "dist",
856
+ "commands",
857
+ "domain",
858
+ "switch.js"
859
+ ]
860
+ },
861
+ "git:connect": {
862
+ "aliases": [],
863
+ "args": {},
864
+ "description": "Connect a GitHub or GitLab account to Hyperdrive",
865
+ "examples": [
866
+ "<%= config.bin %> <%= command.id %> --provider=github",
867
+ "<%= config.bin %> <%= command.id %> --provider=gitlab"
868
+ ],
869
+ "flags": {
870
+ "domain": {
871
+ "char": "d",
872
+ "description": "Tenant domain (for multi-domain setups)",
873
+ "name": "domain",
874
+ "hasDynamicHelp": false,
875
+ "multiple": false,
876
+ "type": "option"
877
+ },
878
+ "provider": {
879
+ "char": "p",
880
+ "description": "Git provider to connect",
881
+ "name": "provider",
882
+ "hasDynamicHelp": false,
883
+ "multiple": false,
884
+ "options": [
885
+ "github",
886
+ "gitlab"
887
+ ],
888
+ "type": "option"
889
+ }
890
+ },
891
+ "hasDynamicHelp": false,
892
+ "hiddenAliases": [],
893
+ "id": "git:connect",
894
+ "pluginAlias": "@hyperdrive.bot/cli",
895
+ "pluginName": "@hyperdrive.bot/cli",
896
+ "pluginType": "core",
897
+ "strict": true,
898
+ "enableJsonFlag": false,
899
+ "isESM": true,
900
+ "relativePath": [
901
+ "dist",
902
+ "commands",
903
+ "git",
904
+ "connect.js"
905
+ ]
906
+ },
907
+ "git:disconnect": {
908
+ "aliases": [],
909
+ "args": {},
910
+ "description": "Disconnect a Git account from Hyperdrive",
911
+ "examples": [
912
+ "<%= config.bin %> <%= command.id %>",
913
+ "<%= config.bin %> <%= command.id %> --provider=github --installation-id=12345"
914
+ ],
915
+ "flags": {
916
+ "domain": {
917
+ "char": "d",
918
+ "description": "Tenant domain (for multi-domain setups)",
919
+ "name": "domain",
920
+ "hasDynamicHelp": false,
921
+ "multiple": false,
922
+ "type": "option"
923
+ },
924
+ "installationId": {
925
+ "char": "i",
926
+ "description": "Installation ID to disconnect",
927
+ "name": "installationId",
928
+ "hasDynamicHelp": false,
929
+ "multiple": false,
930
+ "type": "option"
931
+ },
932
+ "provider": {
933
+ "char": "p",
934
+ "description": "Git provider",
935
+ "name": "provider",
936
+ "hasDynamicHelp": false,
937
+ "multiple": false,
938
+ "options": [
939
+ "github",
940
+ "gitlab"
941
+ ],
942
+ "type": "option"
943
+ }
944
+ },
945
+ "hasDynamicHelp": false,
946
+ "hiddenAliases": [],
947
+ "id": "git:disconnect",
948
+ "pluginAlias": "@hyperdrive.bot/cli",
949
+ "pluginName": "@hyperdrive.bot/cli",
950
+ "pluginType": "core",
951
+ "strict": true,
952
+ "enableJsonFlag": false,
953
+ "isESM": true,
954
+ "relativePath": [
955
+ "dist",
956
+ "commands",
957
+ "git",
958
+ "disconnect.js"
959
+ ]
960
+ },
961
+ "git:list": {
962
+ "aliases": [],
963
+ "args": {},
964
+ "description": "List connected Git accounts",
965
+ "examples": [
966
+ "<%= config.bin %> <%= command.id %>",
967
+ "<%= config.bin %> <%= command.id %> --provider=github"
968
+ ],
969
+ "flags": {
970
+ "domain": {
971
+ "char": "d",
972
+ "description": "Tenant domain (for multi-domain setups)",
973
+ "name": "domain",
974
+ "hasDynamicHelp": false,
975
+ "multiple": false,
976
+ "type": "option"
977
+ },
978
+ "provider": {
979
+ "char": "p",
980
+ "description": "Filter by Git provider",
981
+ "name": "provider",
982
+ "hasDynamicHelp": false,
983
+ "multiple": false,
984
+ "options": [
985
+ "github",
986
+ "gitlab"
987
+ ],
988
+ "type": "option"
989
+ }
990
+ },
991
+ "hasDynamicHelp": false,
992
+ "hiddenAliases": [],
993
+ "id": "git:list",
994
+ "pluginAlias": "@hyperdrive.bot/cli",
995
+ "pluginName": "@hyperdrive.bot/cli",
996
+ "pluginType": "core",
997
+ "strict": true,
998
+ "enableJsonFlag": false,
999
+ "isESM": true,
1000
+ "relativePath": [
1001
+ "dist",
1002
+ "commands",
1003
+ "git",
1004
+ "list.js"
1005
+ ]
1006
+ },
1007
+ "git:sync": {
1008
+ "aliases": [],
1009
+ "args": {},
1010
+ "description": "Sync specific branches or all open branches with a source branch (default: master)",
1011
+ "examples": [
1012
+ "<%= config.bin %> <%= command.id %> --branch feature-branch",
1013
+ "<%= config.bin %> <%= command.id %> --branch feature-1 --branch feature-2",
1014
+ "<%= config.bin %> <%= command.id %> --all",
1015
+ "<%= config.bin %> <%= command.id %> --branch feature-branch --source-branch main",
1016
+ "<%= config.bin %> <%= command.id %> --all --remote upstream --merge-strategy no-ff"
1017
+ ],
1018
+ "flags": {
1019
+ "all": {
1020
+ "char": "a",
1021
+ "description": "Sync all remote branches",
1022
+ "name": "all",
1023
+ "allowNo": false,
1024
+ "type": "boolean"
1025
+ },
1026
+ "branch": {
1027
+ "char": "b",
1028
+ "description": "Specific branch(es) to sync (can be used multiple times)",
1029
+ "name": "branch",
1030
+ "hasDynamicHelp": false,
1031
+ "multiple": true,
1032
+ "type": "option"
1033
+ },
1034
+ "domain": {
1035
+ "char": "d",
1036
+ "description": "Tenant domain (for multi-domain setups)",
1037
+ "name": "domain",
1038
+ "hasDynamicHelp": false,
1039
+ "multiple": false,
1040
+ "type": "option"
1041
+ },
1042
+ "merge-strategy": {
1043
+ "char": "m",
1044
+ "description": "Git merge strategy",
1045
+ "name": "merge-strategy",
1046
+ "default": "no-ff",
1047
+ "hasDynamicHelp": false,
1048
+ "multiple": false,
1049
+ "options": [
1050
+ "no-ff",
1051
+ "--ff-only",
1052
+ "--no-ff",
1053
+ "--squash"
1054
+ ],
1055
+ "type": "option"
1056
+ },
1057
+ "remote": {
1058
+ "char": "r",
1059
+ "description": "Remote repository name",
1060
+ "name": "remote",
1061
+ "default": "origin",
1062
+ "hasDynamicHelp": false,
1063
+ "multiple": false,
1064
+ "type": "option"
1065
+ },
1066
+ "source-branch": {
1067
+ "char": "s",
1068
+ "description": "Source branch to merge from",
1069
+ "name": "source-branch",
1070
+ "default": "master",
1071
+ "hasDynamicHelp": false,
1072
+ "multiple": false,
1073
+ "type": "option"
1074
+ },
1075
+ "verbose": {
1076
+ "char": "v",
1077
+ "description": "Show detailed progress information",
1078
+ "name": "verbose",
1079
+ "allowNo": false,
1080
+ "type": "boolean"
1081
+ }
1082
+ },
1083
+ "hasDynamicHelp": false,
1084
+ "hiddenAliases": [],
1085
+ "id": "git:sync",
1086
+ "pluginAlias": "@hyperdrive.bot/cli",
1087
+ "pluginName": "@hyperdrive.bot/cli",
1088
+ "pluginType": "core",
1089
+ "strict": true,
1090
+ "enableJsonFlag": false,
1091
+ "isESM": true,
1092
+ "relativePath": [
1093
+ "dist",
1094
+ "commands",
1095
+ "git",
1096
+ "sync.js"
1097
+ ]
1098
+ },
1099
+ "jira:connect": {
1100
+ "aliases": [],
1101
+ "args": {},
1102
+ "description": "Register your Jira instance with Hyperdrive (run BEFORE installing the Forge app)",
1103
+ "examples": [
1104
+ "<%= config.bin %> <%= command.id %>",
1105
+ "<%= config.bin %> <%= command.id %> --domain dev-squad.atlassian.net"
1106
+ ],
1107
+ "flags": {
1108
+ "domain": {
1109
+ "char": "d",
1110
+ "description": "Your Jira domain (e.g., dev-squad.atlassian.net)",
1111
+ "name": "domain",
1112
+ "hasDynamicHelp": false,
1113
+ "multiple": false,
1114
+ "type": "option"
1115
+ }
1116
+ },
1117
+ "hasDynamicHelp": false,
1118
+ "hiddenAliases": [],
1119
+ "id": "jira:connect",
1120
+ "pluginAlias": "@hyperdrive.bot/cli",
1121
+ "pluginName": "@hyperdrive.bot/cli",
1122
+ "pluginType": "core",
1123
+ "strict": true,
1124
+ "enableJsonFlag": false,
1125
+ "isESM": true,
1126
+ "relativePath": [
1127
+ "dist",
1128
+ "commands",
1129
+ "jira",
1130
+ "connect.js"
1131
+ ]
1132
+ },
1133
+ "jira:status": {
1134
+ "aliases": [],
1135
+ "args": {},
1136
+ "description": "Check the status of your Jira integration",
1137
+ "examples": [
1138
+ "<%= config.bin %> <%= command.id %>"
1139
+ ],
1140
+ "flags": {
1141
+ "domain": {
1142
+ "char": "d",
1143
+ "description": "Tenant domain (for multi-domain setups)",
1144
+ "name": "domain",
1145
+ "hasDynamicHelp": false,
1146
+ "multiple": false,
1147
+ "type": "option"
1148
+ }
1149
+ },
1150
+ "hasDynamicHelp": false,
1151
+ "hiddenAliases": [],
1152
+ "id": "jira:status",
1153
+ "pluginAlias": "@hyperdrive.bot/cli",
1154
+ "pluginName": "@hyperdrive.bot/cli",
1155
+ "pluginType": "core",
1156
+ "strict": true,
1157
+ "enableJsonFlag": false,
1158
+ "isESM": true,
1159
+ "relativePath": [
1160
+ "dist",
1161
+ "commands",
1162
+ "jira",
1163
+ "status.js"
1164
+ ]
1165
+ },
1166
+ "module:analyze": {
1167
+ "aliases": [],
1168
+ "args": {},
1169
+ "description": "Analyze a module and generate an optimized Dockerfile using AI",
1170
+ "examples": [
1171
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\"",
1172
+ "<%= config.bin %> <%= command.id %>",
1173
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --verbose"
1174
+ ],
1175
+ "flags": {
1176
+ "domain": {
1177
+ "char": "d",
1178
+ "description": "Tenant domain (for multi-domain setups)",
1179
+ "name": "domain",
1180
+ "hasDynamicHelp": false,
1181
+ "multiple": false,
1182
+ "type": "option"
1183
+ },
1184
+ "save": {
1185
+ "description": "Save generated Dockerfile to current directory",
1186
+ "name": "save",
1187
+ "allowNo": false,
1188
+ "type": "boolean"
1189
+ },
1190
+ "slug": {
1191
+ "char": "s",
1192
+ "description": "Module slug to analyze",
1193
+ "name": "slug",
1194
+ "required": true,
1195
+ "default": "",
1196
+ "hasDynamicHelp": false,
1197
+ "multiple": false,
1198
+ "type": "option"
1199
+ },
1200
+ "verbose": {
1201
+ "char": "v",
1202
+ "description": "Show detailed analysis progress and real-time logs",
1203
+ "name": "verbose",
1204
+ "allowNo": false,
1205
+ "type": "boolean"
1206
+ },
1207
+ "wait": {
1208
+ "char": "w",
1209
+ "description": "Wait for analysis to complete and show results",
1210
+ "name": "wait",
1211
+ "allowNo": false,
1212
+ "type": "boolean"
1213
+ }
1214
+ },
1215
+ "hasDynamicHelp": false,
1216
+ "hiddenAliases": [],
1217
+ "id": "module:analyze",
1218
+ "pluginAlias": "@hyperdrive.bot/cli",
1219
+ "pluginName": "@hyperdrive.bot/cli",
1220
+ "pluginType": "core",
1221
+ "strict": true,
1222
+ "enableJsonFlag": false,
1223
+ "isESM": true,
1224
+ "relativePath": [
1225
+ "dist",
1226
+ "commands",
1227
+ "module",
1228
+ "analyze.js"
1229
+ ]
1230
+ },
1231
+ "module:create": {
1232
+ "aliases": [],
1233
+ "args": {},
1234
+ "description": "Create a new project",
1235
+ "examples": [
1236
+ "<%= config.bin %> <%= command.id %> --name=\"New Project\" --slug=\"project-slug\"",
1237
+ "<%= config.bin %> <%= command.id %> --name=\"API Service\" --framework=\"Serverless Framework\""
1238
+ ],
1239
+ "flags": {
1240
+ "buildCommand": {
1241
+ "description": "Build command",
1242
+ "name": "buildCommand",
1243
+ "hasDynamicHelp": false,
1244
+ "multiple": false,
1245
+ "type": "option"
1246
+ },
1247
+ "buildDirectory": {
1248
+ "description": "Build output directory (e.g., dist, build, .next) - where compiled artifacts are output",
1249
+ "name": "buildDirectory",
1250
+ "hasDynamicHelp": false,
1251
+ "multiple": false,
1252
+ "type": "option"
1253
+ },
1254
+ "buildFolder": {
1255
+ "description": "Build folder",
1256
+ "name": "buildFolder",
1257
+ "hasDynamicHelp": false,
1258
+ "multiple": false,
1259
+ "type": "option"
1260
+ },
1261
+ "buildRuntime": {
1262
+ "description": "Build runtime for Dockerfile template selection",
1263
+ "name": "buildRuntime",
1264
+ "hasDynamicHelp": false,
1265
+ "multiple": false,
1266
+ "options": [
1267
+ "nodejs",
1268
+ "python",
1269
+ "go",
1270
+ "rust",
1271
+ "java",
1272
+ "dotnet",
1273
+ "ruby"
1274
+ ],
1275
+ "type": "option"
1276
+ },
1277
+ "buildRuntimeVersion": {
1278
+ "description": "Build runtime version (e.g., 20 for Node, 3.12 for Python)",
1279
+ "name": "buildRuntimeVersion",
1280
+ "hasDynamicHelp": false,
1281
+ "multiple": false,
1282
+ "type": "option"
1283
+ },
1284
+ "ciService": {
1285
+ "description": "CI service used",
1286
+ "name": "ciService",
1287
+ "hasDynamicHelp": false,
1288
+ "multiple": false,
1289
+ "options": [
1290
+ "github-actions",
1291
+ "gitlab-ci",
1292
+ "circle-ci",
1293
+ "jenkins"
1294
+ ],
1295
+ "type": "option"
1296
+ },
1297
+ "defaultBranch": {
1298
+ "description": "Default git branch to branch from (e.g., main, master)",
1299
+ "name": "defaultBranch",
1300
+ "hasDynamicHelp": false,
1301
+ "multiple": false,
1302
+ "type": "option"
1303
+ },
1304
+ "domain": {
1305
+ "char": "d",
1306
+ "description": "Tenant domain (for multi-domain setups)",
1307
+ "name": "domain",
1308
+ "hasDynamicHelp": false,
1309
+ "multiple": false,
1310
+ "type": "option"
1311
+ },
1312
+ "framework": {
1313
+ "description": "Framework used",
1314
+ "name": "framework",
1315
+ "hasDynamicHelp": false,
1316
+ "multiple": false,
1317
+ "options": [
1318
+ "express",
1319
+ "fastify",
1320
+ "koa",
1321
+ "nextjs",
1322
+ "react",
1323
+ "vue",
1324
+ "angular",
1325
+ "svelte",
1326
+ "flask",
1327
+ "django",
1328
+ "fastapi",
1329
+ "gin",
1330
+ "actix",
1331
+ "spring",
1332
+ "aspnet",
1333
+ "rails",
1334
+ "other"
1335
+ ],
1336
+ "type": "option"
1337
+ },
1338
+ "installCommand": {
1339
+ "description": "Install command",
1340
+ "name": "installCommand",
1341
+ "hasDynamicHelp": false,
1342
+ "multiple": false,
1343
+ "type": "option"
1344
+ },
1345
+ "name": {
1346
+ "description": "Name of the project",
1347
+ "name": "name",
1348
+ "hasDynamicHelp": false,
1349
+ "multiple": false,
1350
+ "type": "option"
1351
+ },
1352
+ "runCommand": {
1353
+ "description": "Run command",
1354
+ "name": "runCommand",
1355
+ "hasDynamicHelp": false,
1356
+ "multiple": false,
1357
+ "type": "option"
1358
+ },
1359
+ "runtime": {
1360
+ "char": "r",
1361
+ "description": "Runtime environment",
1362
+ "name": "runtime",
1363
+ "hasDynamicHelp": false,
1364
+ "multiple": false,
1365
+ "options": [
1366
+ "nodejs",
1367
+ "python",
1368
+ "go",
1369
+ "rust",
1370
+ "java",
1371
+ "dotnet",
1372
+ "ruby"
1373
+ ],
1374
+ "type": "option"
1375
+ },
1376
+ "runtimeVersion": {
1377
+ "description": "Runtime version (e.g., 20, 3.12, 1.21)",
1378
+ "name": "runtimeVersion",
1379
+ "hasDynamicHelp": false,
1380
+ "multiple": false,
1381
+ "type": "option"
1382
+ },
1383
+ "slug": {
1384
+ "description": "Slug of the project",
1385
+ "name": "slug",
1386
+ "hasDynamicHelp": false,
1387
+ "multiple": false,
1388
+ "type": "option"
1389
+ },
1390
+ "sourceDirectory": {
1391
+ "description": "Source code directory (e.g., src, lib, . for root) - default: src for Lambda, . for static",
1392
+ "name": "sourceDirectory",
1393
+ "hasDynamicHelp": false,
1394
+ "multiple": false,
1395
+ "type": "option"
1396
+ },
1397
+ "sourceLocation": {
1398
+ "description": "Source location of the project",
1399
+ "name": "sourceLocation",
1400
+ "hasDynamicHelp": false,
1401
+ "multiple": false,
1402
+ "type": "option"
1403
+ }
1404
+ },
1405
+ "hasDynamicHelp": false,
1406
+ "hiddenAliases": [],
1407
+ "id": "module:create",
1408
+ "pluginAlias": "@hyperdrive.bot/cli",
1409
+ "pluginName": "@hyperdrive.bot/cli",
1410
+ "pluginType": "core",
1411
+ "strict": true,
1412
+ "enableJsonFlag": false,
1413
+ "isESM": true,
1414
+ "relativePath": [
1415
+ "dist",
1416
+ "commands",
1417
+ "module",
1418
+ "create.js"
1419
+ ]
1420
+ },
1421
+ "module:destroy": {
1422
+ "aliases": [],
1423
+ "args": {},
1424
+ "description": "Destroy/delete a module permanently",
1425
+ "examples": [
1426
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\"",
1427
+ "<%= config.bin %> <%= command.id %> --slug=\"old-project\" --force"
1428
+ ],
1429
+ "flags": {
1430
+ "domain": {
1431
+ "char": "d",
1432
+ "description": "Tenant domain (for multi-domain setups)",
1433
+ "name": "domain",
1434
+ "hasDynamicHelp": false,
1435
+ "multiple": false,
1436
+ "type": "option"
1437
+ },
1438
+ "force": {
1439
+ "char": "f",
1440
+ "description": "Skip confirmation prompt (DANGEROUS)",
1441
+ "name": "force",
1442
+ "allowNo": false,
1443
+ "type": "boolean"
1444
+ },
1445
+ "slug": {
1446
+ "char": "s",
1447
+ "description": "Module slug to destroy",
1448
+ "name": "slug",
1449
+ "required": true,
1450
+ "default": "",
1451
+ "hasDynamicHelp": false,
1452
+ "multiple": false,
1453
+ "type": "option"
1454
+ }
1455
+ },
1456
+ "hasDynamicHelp": false,
1457
+ "hiddenAliases": [],
1458
+ "id": "module:destroy",
1459
+ "pluginAlias": "@hyperdrive.bot/cli",
1460
+ "pluginName": "@hyperdrive.bot/cli",
1461
+ "pluginType": "core",
1462
+ "strict": true,
1463
+ "enableJsonFlag": false,
1464
+ "isESM": true,
1465
+ "relativePath": [
1466
+ "dist",
1467
+ "commands",
1468
+ "module",
1469
+ "destroy.js"
1470
+ ]
1471
+ },
1472
+ "module:get": {
1473
+ "aliases": [],
1474
+ "args": {},
1475
+ "description": "Get details of a specific module/project",
1476
+ "examples": [
1477
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\"",
1478
+ "<%= config.bin %> <%= command.id %>"
1479
+ ],
1480
+ "flags": {
1481
+ "domain": {
1482
+ "char": "d",
1483
+ "description": "Tenant domain (for multi-domain setups)",
1484
+ "name": "domain",
1485
+ "hasDynamicHelp": false,
1486
+ "multiple": false,
1487
+ "type": "option"
1488
+ },
1489
+ "slug": {
1490
+ "char": "s",
1491
+ "description": "Module slug to get details for",
1492
+ "name": "slug",
1493
+ "required": true,
1494
+ "default": "",
1495
+ "hasDynamicHelp": false,
1496
+ "multiple": false,
1497
+ "type": "option"
1498
+ }
1499
+ },
1500
+ "hasDynamicHelp": false,
1501
+ "hiddenAliases": [],
1502
+ "id": "module:get",
1503
+ "pluginAlias": "@hyperdrive.bot/cli",
1504
+ "pluginName": "@hyperdrive.bot/cli",
1505
+ "pluginType": "core",
1506
+ "strict": true,
1507
+ "enableJsonFlag": false,
1508
+ "isESM": true,
1509
+ "relativePath": [
1510
+ "dist",
1511
+ "commands",
1512
+ "module",
1513
+ "get.js"
1514
+ ]
1515
+ },
1516
+ "module:link": {
1517
+ "aliases": [],
1518
+ "args": {},
1519
+ "description": "Links two modules using specified environment variables as connectors",
1520
+ "examples": [
1521
+ "<%= config.bin %> <%= command.id %> --originSlug=\"vixting-integration\" --targetSlug=\"vixting-api\" --parameter=\"VLOW_API_ENDPOINT_PREFIX\""
1522
+ ],
1523
+ "flags": {
1524
+ "domain": {
1525
+ "char": "d",
1526
+ "description": "Tenant domain (for multi-domain setups)",
1527
+ "name": "domain",
1528
+ "hasDynamicHelp": false,
1529
+ "multiple": false,
1530
+ "type": "option"
1531
+ },
1532
+ "originSlug": {
1533
+ "description": "Slug of the origin module (the one that depends on another)",
1534
+ "name": "originSlug",
1535
+ "required": true,
1536
+ "hasDynamicHelp": false,
1537
+ "multiple": false,
1538
+ "type": "option"
1539
+ },
1540
+ "parameter": {
1541
+ "description": "Environment variable to link (e.g., API_URL)",
1542
+ "name": "parameter",
1543
+ "required": true,
1544
+ "hasDynamicHelp": false,
1545
+ "multiple": true,
1546
+ "type": "option"
1547
+ },
1548
+ "targetSlug": {
1549
+ "description": "Slug of the target module (the dependency)",
1550
+ "name": "targetSlug",
1551
+ "required": true,
1552
+ "hasDynamicHelp": false,
1553
+ "multiple": false,
1554
+ "type": "option"
1555
+ }
1556
+ },
1557
+ "hasDynamicHelp": false,
1558
+ "hiddenAliases": [],
1559
+ "id": "module:link",
1560
+ "pluginAlias": "@hyperdrive.bot/cli",
1561
+ "pluginName": "@hyperdrive.bot/cli",
1562
+ "pluginType": "core",
1563
+ "strict": true,
1564
+ "enableJsonFlag": false,
1565
+ "isESM": true,
1566
+ "relativePath": [
1567
+ "dist",
1568
+ "commands",
1569
+ "module",
1570
+ "link.js"
1571
+ ]
1572
+ },
1573
+ "module:list": {
1574
+ "aliases": [],
1575
+ "args": {},
1576
+ "description": "List all modules/projects",
1577
+ "examples": [
1578
+ "<%= config.bin %> <%= command.id %>"
1579
+ ],
1580
+ "flags": {
1581
+ "domain": {
1582
+ "char": "d",
1583
+ "description": "Tenant domain (for multi-domain setups)",
1584
+ "name": "domain",
1585
+ "hasDynamicHelp": false,
1586
+ "multiple": false,
1587
+ "type": "option"
1588
+ }
1589
+ },
1590
+ "hasDynamicHelp": false,
1591
+ "hiddenAliases": [],
1592
+ "id": "module:list",
1593
+ "pluginAlias": "@hyperdrive.bot/cli",
1594
+ "pluginName": "@hyperdrive.bot/cli",
1595
+ "pluginType": "core",
1596
+ "strict": true,
1597
+ "enableJsonFlag": false,
1598
+ "isESM": true,
1599
+ "relativePath": [
1600
+ "dist",
1601
+ "commands",
1602
+ "module",
1603
+ "list.js"
1604
+ ]
1605
+ },
1606
+ "module:reanalyze": {
1607
+ "aliases": [],
1608
+ "args": {},
1609
+ "description": "Reanalyze a module's Dockerfile with custom instructions",
1610
+ "examples": [
1611
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --prompt=\"Use Node.js 18 instead of 20\"",
1612
+ "<%= config.bin %> <%= command.id %> --prompt=\"Fix the build - missing Python dependency\"",
1613
+ "<%= config.bin %> <%= command.id %> -s my-module -p \"Exclude source maps from S3 upload\" --verbose"
1614
+ ],
1615
+ "flags": {
1616
+ "domain": {
1617
+ "char": "d",
1618
+ "description": "Tenant domain (for multi-domain setups)",
1619
+ "name": "domain",
1620
+ "hasDynamicHelp": false,
1621
+ "multiple": false,
1622
+ "type": "option"
1623
+ },
1624
+ "prompt": {
1625
+ "char": "p",
1626
+ "description": "Custom instructions for Dockerfile regeneration",
1627
+ "name": "prompt",
1628
+ "required": true,
1629
+ "hasDynamicHelp": false,
1630
+ "multiple": false,
1631
+ "type": "option"
1632
+ },
1633
+ "save": {
1634
+ "description": "Save generated Dockerfile to current directory",
1635
+ "name": "save",
1636
+ "allowNo": false,
1637
+ "type": "boolean"
1638
+ },
1639
+ "slug": {
1640
+ "char": "s",
1641
+ "description": "Module slug to reanalyze",
1642
+ "name": "slug",
1643
+ "required": true,
1644
+ "default": "",
1645
+ "hasDynamicHelp": false,
1646
+ "multiple": false,
1647
+ "type": "option"
1648
+ },
1649
+ "verbose": {
1650
+ "char": "v",
1651
+ "description": "Show detailed analysis progress and real-time logs",
1652
+ "name": "verbose",
1653
+ "allowNo": false,
1654
+ "type": "boolean"
1655
+ },
1656
+ "wait": {
1657
+ "char": "w",
1658
+ "description": "Wait for reanalysis to complete and show results",
1659
+ "name": "wait",
1660
+ "allowNo": false,
1661
+ "type": "boolean"
1662
+ }
1663
+ },
1664
+ "hasDynamicHelp": false,
1665
+ "hiddenAliases": [],
1666
+ "id": "module:reanalyze",
1667
+ "pluginAlias": "@hyperdrive.bot/cli",
1668
+ "pluginName": "@hyperdrive.bot/cli",
1669
+ "pluginType": "core",
1670
+ "strict": true,
1671
+ "enableJsonFlag": false,
1672
+ "isESM": true,
1673
+ "relativePath": [
1674
+ "dist",
1675
+ "commands",
1676
+ "module",
1677
+ "reanalyze.js"
1678
+ ]
1679
+ },
1680
+ "module:update": {
1681
+ "aliases": [],
1682
+ "args": {},
1683
+ "description": "Update a module/project configuration",
1684
+ "examples": [
1685
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --runtimeVersion=\"12\"",
1686
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --buildCommand=\"npm run build:prod\"",
1687
+ "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --name=\"New Name\" --framework=\"React.js\""
1688
+ ],
1689
+ "flags": {
1690
+ "buildCommand": {
1691
+ "description": "Build command",
1692
+ "name": "buildCommand",
1693
+ "hasDynamicHelp": false,
1694
+ "multiple": false,
1695
+ "type": "option"
1696
+ },
1697
+ "buildDirectory": {
1698
+ "description": "Build output directory (e.g., dist, build, .next) - where compiled artifacts are output",
1699
+ "name": "buildDirectory",
1700
+ "hasDynamicHelp": false,
1701
+ "multiple": false,
1702
+ "type": "option"
1703
+ },
1704
+ "buildFolder": {
1705
+ "description": "Build folder",
1706
+ "name": "buildFolder",
1707
+ "hasDynamicHelp": false,
1708
+ "multiple": false,
1709
+ "type": "option"
1710
+ },
1711
+ "buildRuntime": {
1712
+ "description": "Build runtime for Dockerfile template selection",
1713
+ "name": "buildRuntime",
1714
+ "hasDynamicHelp": false,
1715
+ "multiple": false,
1716
+ "options": [
1717
+ "nodejs",
1718
+ "python",
1719
+ "go",
1720
+ "rust",
1721
+ "java",
1722
+ "dotnet",
1723
+ "ruby"
1724
+ ],
1725
+ "type": "option"
1726
+ },
1727
+ "buildRuntimeVersion": {
1728
+ "description": "Build runtime version (e.g., 20 for Node, 3.12 for Python)",
1729
+ "name": "buildRuntimeVersion",
1730
+ "hasDynamicHelp": false,
1731
+ "multiple": false,
1732
+ "type": "option"
1733
+ },
1734
+ "ciService": {
1735
+ "description": "CI service used",
1736
+ "name": "ciService",
1737
+ "hasDynamicHelp": false,
1738
+ "multiple": false,
1739
+ "options": [
1740
+ "github-actions",
1741
+ "gitlab-ci",
1742
+ "circle-ci",
1743
+ "jenkins"
1744
+ ],
1745
+ "type": "option"
1746
+ },
1747
+ "defaultBranch": {
1748
+ "description": "Default git branch to branch from (e.g., main, master)",
1749
+ "name": "defaultBranch",
1750
+ "hasDynamicHelp": false,
1751
+ "multiple": false,
1752
+ "type": "option"
1753
+ },
1754
+ "deploymentStrategy": {
1755
+ "description": "Deployment strategy: \"serverless\" for Serverless Framework deployment to Lambda",
1756
+ "name": "deploymentStrategy",
1757
+ "hasDynamicHelp": false,
1758
+ "multiple": false,
1759
+ "options": [
1760
+ "serverless"
1761
+ ],
1762
+ "type": "option"
1763
+ },
1764
+ "domain": {
1765
+ "char": "d",
1766
+ "description": "Tenant domain (for multi-domain setups)",
1767
+ "name": "domain",
1768
+ "hasDynamicHelp": false,
1769
+ "multiple": false,
1770
+ "type": "option"
1771
+ },
1772
+ "framework": {
1773
+ "description": "Framework used",
1774
+ "name": "framework",
1775
+ "hasDynamicHelp": false,
1776
+ "multiple": false,
1777
+ "options": [
1778
+ "express",
1779
+ "fastify",
1780
+ "koa",
1781
+ "nextjs",
1782
+ "react",
1783
+ "vue",
1784
+ "angular",
1785
+ "svelte",
1786
+ "flask",
1787
+ "django",
1788
+ "fastapi",
1789
+ "gin",
1790
+ "actix",
1791
+ "spring",
1792
+ "aspnet",
1793
+ "rails",
1794
+ "other"
1795
+ ],
1796
+ "type": "option"
1797
+ },
1798
+ "installCommand": {
1799
+ "description": "Install command",
1800
+ "name": "installCommand",
1801
+ "hasDynamicHelp": false,
1802
+ "multiple": false,
1803
+ "type": "option"
1804
+ },
1805
+ "name": {
1806
+ "description": "Name of the project",
1807
+ "name": "name",
1808
+ "hasDynamicHelp": false,
1809
+ "multiple": false,
1810
+ "type": "option"
1811
+ },
1812
+ "routeDiscovery": {
1813
+ "description": "Enable AI-powered route discovery for per-route Lambda functions",
1814
+ "name": "routeDiscovery",
1815
+ "allowNo": true,
1816
+ "type": "boolean"
1817
+ },
1818
+ "runCommand": {
1819
+ "description": "Run command",
1820
+ "name": "runCommand",
1821
+ "hasDynamicHelp": false,
1822
+ "multiple": false,
1823
+ "type": "option"
1824
+ },
1825
+ "runtime": {
1826
+ "char": "r",
1827
+ "description": "Runtime environment",
1828
+ "name": "runtime",
1829
+ "hasDynamicHelp": false,
1830
+ "multiple": false,
1831
+ "options": [
1832
+ "nodejs",
1833
+ "python",
1834
+ "go",
1835
+ "rust",
1836
+ "java",
1837
+ "dotnet",
1838
+ "ruby"
1839
+ ],
1840
+ "type": "option"
1841
+ },
1842
+ "runtimeVersion": {
1843
+ "char": "v",
1844
+ "description": "Runtime version (e.g., 20, 3.12, 1.21)",
1845
+ "name": "runtimeVersion",
1846
+ "hasDynamicHelp": false,
1847
+ "multiple": false,
1848
+ "type": "option"
1849
+ },
1850
+ "slug": {
1851
+ "char": "s",
1852
+ "description": "Module slug to update (required)",
1853
+ "name": "slug",
1854
+ "required": true,
1855
+ "hasDynamicHelp": false,
1856
+ "multiple": false,
1857
+ "type": "option"
1858
+ },
1859
+ "sourceDirectory": {
1860
+ "description": "Source code directory (e.g., src, lib, . for root) - default: src for Lambda, . for static",
1861
+ "name": "sourceDirectory",
1862
+ "hasDynamicHelp": false,
1863
+ "multiple": false,
1864
+ "type": "option"
1865
+ },
1866
+ "sourceLocation": {
1867
+ "description": "Source location of the project",
1868
+ "name": "sourceLocation",
1869
+ "hasDynamicHelp": false,
1870
+ "multiple": false,
1871
+ "type": "option"
1872
+ }
1873
+ },
1874
+ "hasDynamicHelp": false,
1875
+ "hiddenAliases": [],
1876
+ "id": "module:update",
1877
+ "pluginAlias": "@hyperdrive.bot/cli",
1878
+ "pluginName": "@hyperdrive.bot/cli",
1879
+ "pluginType": "core",
1880
+ "strict": true,
1881
+ "enableJsonFlag": false,
1882
+ "isESM": true,
1883
+ "relativePath": [
1884
+ "dist",
1885
+ "commands",
1886
+ "module",
1887
+ "update.js"
1888
+ ]
1889
+ },
1890
+ "parameter:add": {
1891
+ "aliases": [],
1892
+ "args": {},
1893
+ "description": "Add a new parameter to SSM Parameter Store",
1894
+ "examples": [
1895
+ "<%= config.bin %> <%= command.id %> --key=\"API_URL\" --value=\"https://api.example.com\" --stage=\"dev\"",
1896
+ "<%= config.bin %> <%= command.id %> --key=\"DB_HOST\" --value=\"localhost\" --specific",
1897
+ "<%= config.bin %> <%= command.id %> --key=\"PORT\" --value=\"3000\""
1898
+ ],
1899
+ "flags": {
1900
+ "accountId": {
1901
+ "description": "AWS Account ID",
1902
+ "env": "AWS_ACCOUNT_ID",
1903
+ "name": "accountId",
1904
+ "required": true,
1905
+ "hasDynamicHelp": false,
1906
+ "multiple": false,
1907
+ "type": "option"
1908
+ },
1909
+ "domain": {
1910
+ "char": "d",
1911
+ "description": "Tenant domain (for multi-domain setups)",
1912
+ "name": "domain",
1913
+ "hasDynamicHelp": false,
1914
+ "multiple": false,
1915
+ "type": "option"
1916
+ },
1917
+ "key": {
1918
+ "char": "k",
1919
+ "description": "Parameter key/name",
1920
+ "name": "key",
1921
+ "required": true,
1922
+ "hasDynamicHelp": false,
1923
+ "multiple": false,
1924
+ "type": "option"
1925
+ },
1926
+ "moduleSlug": {
1927
+ "char": "m",
1928
+ "description": "Module slug",
1929
+ "name": "moduleSlug",
1930
+ "required": true,
1931
+ "default": "",
1932
+ "hasDynamicHelp": false,
1933
+ "multiple": false,
1934
+ "type": "option"
1935
+ },
1936
+ "specific": {
1937
+ "description": "Make parameter specific to this project (default: global)",
1938
+ "name": "specific",
1939
+ "allowNo": false,
1940
+ "type": "boolean"
1941
+ },
1942
+ "stage": {
1943
+ "char": "s",
1944
+ "description": "Stage for the parameter (default: all stages)",
1945
+ "name": "stage",
1946
+ "default": "all",
1947
+ "hasDynamicHelp": false,
1948
+ "multiple": false,
1949
+ "type": "option"
1950
+ },
1951
+ "value": {
1952
+ "char": "v",
1953
+ "description": "Parameter value",
1954
+ "name": "value",
1955
+ "required": true,
1956
+ "hasDynamicHelp": false,
1957
+ "multiple": false,
1958
+ "type": "option"
1959
+ }
1960
+ },
1961
+ "hasDynamicHelp": false,
1962
+ "hiddenAliases": [],
1963
+ "id": "parameter:add",
1964
+ "pluginAlias": "@hyperdrive.bot/cli",
1965
+ "pluginName": "@hyperdrive.bot/cli",
1966
+ "pluginType": "core",
1967
+ "strict": true,
1968
+ "enableJsonFlag": false,
1969
+ "isESM": true,
1970
+ "relativePath": [
1971
+ "dist",
1972
+ "commands",
1973
+ "parameter",
1974
+ "add.js"
1975
+ ]
1976
+ },
1977
+ "parameter:backfill": {
1978
+ "aliases": [],
1979
+ "args": {},
1980
+ "description": "Backfill existing SSM parameters to DynamoDB (one-time migration)",
1981
+ "examples": [
1982
+ "<%= config.bin %> <%= command.id %> --accountId=\"123456789012\" --dry-run",
1983
+ "<%= config.bin %> <%= command.id %> --accountId=\"123456789012\""
1984
+ ],
1985
+ "flags": {
1986
+ "accountId": {
1987
+ "description": "AWS Account ID to backfill from",
1988
+ "env": "AWS_ACCOUNT_ID",
1989
+ "name": "accountId",
1990
+ "required": true,
1991
+ "hasDynamicHelp": false,
1992
+ "multiple": false,
1993
+ "type": "option"
1994
+ },
1995
+ "domain": {
1996
+ "char": "d",
1997
+ "description": "Tenant domain (for multi-domain setups)",
1998
+ "name": "domain",
1999
+ "hasDynamicHelp": false,
2000
+ "multiple": false,
2001
+ "type": "option"
2002
+ },
2003
+ "dry-run": {
2004
+ "description": "Preview what would be imported without making changes (default: true)",
2005
+ "name": "dry-run",
2006
+ "allowNo": false,
2007
+ "type": "boolean"
2008
+ },
2009
+ "no-dry-run": {
2010
+ "description": "Actually perform the backfill (writes to DynamoDB)",
2011
+ "name": "no-dry-run",
2012
+ "allowNo": false,
2013
+ "type": "boolean"
2014
+ }
2015
+ },
2016
+ "hasDynamicHelp": false,
2017
+ "hiddenAliases": [],
2018
+ "id": "parameter:backfill",
2019
+ "pluginAlias": "@hyperdrive.bot/cli",
2020
+ "pluginName": "@hyperdrive.bot/cli",
2021
+ "pluginType": "core",
2022
+ "strict": true,
2023
+ "enableJsonFlag": false,
2024
+ "isESM": true,
2025
+ "relativePath": [
2026
+ "dist",
2027
+ "commands",
2028
+ "parameter",
2029
+ "backfill.js"
2030
+ ]
2031
+ },
2032
+ "parameter:clear": {
2033
+ "aliases": [],
2034
+ "args": {},
2035
+ "description": "Clear all parameters for a project and stage (DANGEROUS)",
2036
+ "examples": [
2037
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2038
+ "<%= config.bin %> <%= command.id %> --stage=\"prod\" --specific --force"
2039
+ ],
2040
+ "flags": {
2041
+ "accountId": {
2042
+ "description": "AWS Account ID",
2043
+ "env": "AWS_ACCOUNT_ID",
2044
+ "name": "accountId",
2045
+ "required": true,
2046
+ "hasDynamicHelp": false,
2047
+ "multiple": false,
2048
+ "type": "option"
2049
+ },
2050
+ "domain": {
2051
+ "char": "d",
2052
+ "description": "Tenant domain (for multi-domain setups)",
2053
+ "name": "domain",
2054
+ "hasDynamicHelp": false,
2055
+ "multiple": false,
2056
+ "type": "option"
2057
+ },
2058
+ "force": {
2059
+ "char": "f",
2060
+ "description": "Skip confirmation prompt (DANGEROUS)",
2061
+ "name": "force",
2062
+ "allowNo": false,
2063
+ "type": "boolean"
2064
+ },
2065
+ "moduleSlug": {
2066
+ "char": "m",
2067
+ "description": "Module slug",
2068
+ "name": "moduleSlug",
2069
+ "required": true,
2070
+ "default": "",
2071
+ "hasDynamicHelp": false,
2072
+ "multiple": false,
2073
+ "type": "option"
2074
+ },
2075
+ "specific": {
2076
+ "description": "Clear only project-specific parameters (default: global)",
2077
+ "name": "specific",
2078
+ "allowNo": false,
2079
+ "type": "boolean"
2080
+ },
2081
+ "stage": {
2082
+ "char": "s",
2083
+ "description": "Stage to clear parameters for",
2084
+ "name": "stage",
2085
+ "default": "all",
2086
+ "hasDynamicHelp": false,
2087
+ "multiple": false,
2088
+ "type": "option"
2089
+ }
2090
+ },
2091
+ "hasDynamicHelp": false,
2092
+ "hiddenAliases": [],
2093
+ "id": "parameter:clear",
2094
+ "pluginAlias": "@hyperdrive.bot/cli",
2095
+ "pluginName": "@hyperdrive.bot/cli",
2096
+ "pluginType": "core",
2097
+ "strict": true,
2098
+ "enableJsonFlag": false,
2099
+ "isESM": true,
2100
+ "relativePath": [
2101
+ "dist",
2102
+ "commands",
2103
+ "parameter",
2104
+ "clear.js"
2105
+ ]
2106
+ },
2107
+ "parameter:list": {
2108
+ "aliases": [],
2109
+ "args": {},
2110
+ "description": "List all parameters for a project and stage",
2111
+ "examples": [
2112
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2113
+ "<%= config.bin %> <%= command.id %> --stage=\"prod\" --specific",
2114
+ "<%= config.bin %> <%= command.id %> --all-stages"
2115
+ ],
2116
+ "flags": {
2117
+ "accountId": {
2118
+ "description": "AWS Account ID",
2119
+ "env": "AWS_ACCOUNT_ID",
2120
+ "name": "accountId",
2121
+ "required": true,
2122
+ "hasDynamicHelp": false,
2123
+ "multiple": false,
2124
+ "type": "option"
2125
+ },
2126
+ "all-stages": {
2127
+ "description": "List parameters from all stages",
2128
+ "name": "all-stages",
2129
+ "allowNo": false,
2130
+ "type": "boolean"
2131
+ },
2132
+ "domain": {
2133
+ "char": "d",
2134
+ "description": "Tenant domain (for multi-domain setups)",
2135
+ "name": "domain",
2136
+ "hasDynamicHelp": false,
2137
+ "multiple": false,
2138
+ "type": "option"
2139
+ },
2140
+ "moduleSlug": {
2141
+ "char": "m",
2142
+ "description": "Module slug",
2143
+ "name": "moduleSlug",
2144
+ "required": true,
2145
+ "default": "",
2146
+ "hasDynamicHelp": false,
2147
+ "multiple": false,
2148
+ "type": "option"
2149
+ },
2150
+ "specific": {
2151
+ "description": "List only project-specific parameters",
2152
+ "name": "specific",
2153
+ "allowNo": false,
2154
+ "type": "boolean"
2155
+ },
2156
+ "stage": {
2157
+ "char": "s",
2158
+ "description": "Stage to list parameters for",
2159
+ "name": "stage",
2160
+ "default": "all",
2161
+ "hasDynamicHelp": false,
2162
+ "multiple": false,
2163
+ "type": "option"
2164
+ }
2165
+ },
2166
+ "hasDynamicHelp": false,
2167
+ "hiddenAliases": [],
2168
+ "id": "parameter:list",
2169
+ "pluginAlias": "@hyperdrive.bot/cli",
2170
+ "pluginName": "@hyperdrive.bot/cli",
2171
+ "pluginType": "core",
2172
+ "strict": true,
2173
+ "enableJsonFlag": false,
2174
+ "isESM": true,
2175
+ "relativePath": [
2176
+ "dist",
2177
+ "commands",
2178
+ "parameter",
2179
+ "list.js"
2180
+ ]
2181
+ },
2182
+ "parameter:pull": {
2183
+ "aliases": [],
2184
+ "args": {},
2185
+ "description": "Pull parameters from SSM Parameter Store to a .env file",
2186
+ "examples": [
2187
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2188
+ "<%= config.bin %> <%= command.id %> --stage=\"prod\" --file=\".env.prod\"",
2189
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\" --no-backup"
2190
+ ],
2191
+ "flags": {
2192
+ "accountId": {
2193
+ "description": "AWS Account ID",
2194
+ "env": "AWS_ACCOUNT_ID",
2195
+ "name": "accountId",
2196
+ "required": true,
2197
+ "hasDynamicHelp": false,
2198
+ "multiple": false,
2199
+ "type": "option"
2200
+ },
2201
+ "backup": {
2202
+ "description": "Create .env.backup before overwriting (default: true)",
2203
+ "name": "backup",
2204
+ "allowNo": true,
2205
+ "type": "boolean"
2206
+ },
2207
+ "domain": {
2208
+ "char": "d",
2209
+ "description": "Tenant domain (for multi-domain setups)",
2210
+ "name": "domain",
2211
+ "hasDynamicHelp": false,
2212
+ "multiple": false,
2213
+ "type": "option"
2214
+ },
2215
+ "file": {
2216
+ "char": "f",
2217
+ "description": "Output file path",
2218
+ "name": "file",
2219
+ "default": ".env",
2220
+ "hasDynamicHelp": false,
2221
+ "multiple": false,
2222
+ "type": "option"
2223
+ },
2224
+ "moduleSlug": {
2225
+ "char": "m",
2226
+ "description": "Module slug",
2227
+ "name": "moduleSlug",
2228
+ "required": true,
2229
+ "default": "",
2230
+ "hasDynamicHelp": false,
2231
+ "multiple": false,
2232
+ "type": "option"
2233
+ },
2234
+ "stage": {
2235
+ "char": "s",
2236
+ "description": "Stage to pull parameters from",
2237
+ "name": "stage",
2238
+ "required": true,
2239
+ "hasDynamicHelp": false,
2240
+ "multiple": false,
2241
+ "type": "option"
2242
+ }
2243
+ },
2244
+ "hasDynamicHelp": false,
2245
+ "hiddenAliases": [],
2246
+ "id": "parameter:pull",
2247
+ "pluginAlias": "@hyperdrive.bot/cli",
2248
+ "pluginName": "@hyperdrive.bot/cli",
2249
+ "pluginType": "core",
2250
+ "strict": true,
2251
+ "enableJsonFlag": false,
2252
+ "isESM": true,
2253
+ "relativePath": [
2254
+ "dist",
2255
+ "commands",
2256
+ "parameter",
2257
+ "pull.js"
2258
+ ]
2259
+ },
2260
+ "parameter:remove": {
2261
+ "aliases": [],
2262
+ "args": {},
2263
+ "description": "Remove a parameter from SSM Parameter Store",
2264
+ "examples": [
2265
+ "<%= config.bin %> <%= command.id %> --key=\"API_URL\" --stage=\"dev\"",
2266
+ "<%= config.bin %> <%= command.id %> --key=\"DB_HOST\" --specific --stage=\"prod\"",
2267
+ "<%= config.bin %> <%= command.id %> --key=\"PORT\" --force"
2268
+ ],
2269
+ "flags": {
2270
+ "accountId": {
2271
+ "description": "AWS Account ID",
2272
+ "env": "AWS_ACCOUNT_ID",
2273
+ "name": "accountId",
2274
+ "required": true,
2275
+ "hasDynamicHelp": false,
2276
+ "multiple": false,
2277
+ "type": "option"
2278
+ },
2279
+ "domain": {
2280
+ "char": "d",
2281
+ "description": "Tenant domain (for multi-domain setups)",
2282
+ "name": "domain",
2283
+ "hasDynamicHelp": false,
2284
+ "multiple": false,
2285
+ "type": "option"
2286
+ },
2287
+ "force": {
2288
+ "char": "f",
2289
+ "description": "Skip confirmation prompt",
2290
+ "name": "force",
2291
+ "allowNo": false,
2292
+ "type": "boolean"
2293
+ },
2294
+ "key": {
2295
+ "char": "k",
2296
+ "description": "Parameter key/name to remove",
2297
+ "name": "key",
2298
+ "required": true,
2299
+ "hasDynamicHelp": false,
2300
+ "multiple": false,
2301
+ "type": "option"
2302
+ },
2303
+ "moduleSlug": {
2304
+ "char": "m",
2305
+ "description": "Module slug",
2306
+ "name": "moduleSlug",
2307
+ "required": true,
2308
+ "default": "",
2309
+ "hasDynamicHelp": false,
2310
+ "multiple": false,
2311
+ "type": "option"
2312
+ },
2313
+ "specific": {
2314
+ "description": "Remove from project-specific parameters (default: global)",
2315
+ "name": "specific",
2316
+ "allowNo": false,
2317
+ "type": "boolean"
2318
+ },
2319
+ "stage": {
2320
+ "char": "s",
2321
+ "description": "Stage for the parameter (default: all stages)",
2322
+ "name": "stage",
2323
+ "default": "all",
2324
+ "hasDynamicHelp": false,
2325
+ "multiple": false,
2326
+ "type": "option"
2327
+ }
2328
+ },
2329
+ "hasDynamicHelp": false,
2330
+ "hiddenAliases": [],
2331
+ "id": "parameter:remove",
2332
+ "pluginAlias": "@hyperdrive.bot/cli",
2333
+ "pluginName": "@hyperdrive.bot/cli",
2334
+ "pluginType": "core",
2335
+ "strict": true,
2336
+ "enableJsonFlag": false,
2337
+ "isESM": true,
2338
+ "relativePath": [
2339
+ "dist",
2340
+ "commands",
2341
+ "parameter",
2342
+ "remove.js"
2343
+ ]
2344
+ },
2345
+ "parameter:sync": {
2346
+ "aliases": [],
2347
+ "args": {},
2348
+ "description": "Synchronize environment variables from a .env file to Hyperdrive",
2349
+ "examples": [
2350
+ "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2351
+ "<%= config.bin %> <%= command.id %> --file=\".env.production\" --stage=\"prod\"",
2352
+ "<%= config.bin %> <%= command.id %> --no-specific --stage=\"all\""
2353
+ ],
2354
+ "flags": {
2355
+ "accountId": {
2356
+ "description": "AWS Account ID",
2357
+ "env": "AWS_ACCOUNT_ID",
2358
+ "name": "accountId",
2359
+ "required": true,
2360
+ "hasDynamicHelp": false,
2361
+ "multiple": false,
2362
+ "type": "option"
2363
+ },
2364
+ "domain": {
2365
+ "char": "d",
2366
+ "description": "Tenant domain (for multi-domain setups)",
2367
+ "name": "domain",
2368
+ "hasDynamicHelp": false,
2369
+ "multiple": false,
2370
+ "type": "option"
2371
+ },
2372
+ "file": {
2373
+ "char": "f",
2374
+ "description": "Path to the .env file",
2375
+ "name": "file",
2376
+ "default": ".env",
2377
+ "hasDynamicHelp": false,
2378
+ "multiple": false,
2379
+ "type": "option"
2380
+ },
2381
+ "moduleSlug": {
2382
+ "char": "m",
2383
+ "description": "Module slug",
2384
+ "name": "moduleSlug",
2385
+ "required": true,
2386
+ "default": "",
2387
+ "hasDynamicHelp": false,
2388
+ "multiple": false,
2389
+ "type": "option"
2390
+ },
2391
+ "specific": {
2392
+ "char": "s",
2393
+ "description": "Whether the env vars are project-specific (default: true)",
2394
+ "name": "specific",
2395
+ "allowNo": true,
2396
+ "type": "boolean"
2397
+ },
2398
+ "stage": {
2399
+ "char": "t",
2400
+ "description": "Stage for the env vars (default: all stages)",
2401
+ "name": "stage",
2402
+ "default": "all",
2403
+ "hasDynamicHelp": false,
2404
+ "multiple": false,
2405
+ "type": "option"
2406
+ }
2407
+ },
2408
+ "hasDynamicHelp": false,
2409
+ "hiddenAliases": [],
2410
+ "id": "parameter:sync",
2411
+ "pluginAlias": "@hyperdrive.bot/cli",
2412
+ "pluginName": "@hyperdrive.bot/cli",
2413
+ "pluginType": "core",
2414
+ "strict": true,
2415
+ "enableJsonFlag": false,
2416
+ "isESM": true,
2417
+ "relativePath": [
2418
+ "dist",
2419
+ "commands",
2420
+ "parameter",
2421
+ "sync.js"
2422
+ ]
2423
+ },
2424
+ "parameter:update": {
2425
+ "aliases": [],
2426
+ "args": {},
2427
+ "description": "Update an existing parameter in SSM Parameter Store",
2428
+ "examples": [
2429
+ "<%= config.bin %> <%= command.id %> --key=\"API_URL\" --value=\"https://new-api.example.com\" --stage=\"dev\"",
2430
+ "<%= config.bin %> <%= command.id %> --key=\"DB_HOST\" --value=\"new-host\" --specific"
2431
+ ],
2432
+ "flags": {
2433
+ "accountId": {
2434
+ "description": "AWS Account ID",
2435
+ "env": "AWS_ACCOUNT_ID",
2436
+ "name": "accountId",
2437
+ "required": true,
2438
+ "hasDynamicHelp": false,
2439
+ "multiple": false,
2440
+ "type": "option"
2441
+ },
2442
+ "domain": {
2443
+ "char": "d",
2444
+ "description": "Tenant domain (for multi-domain setups)",
2445
+ "name": "domain",
2446
+ "hasDynamicHelp": false,
2447
+ "multiple": false,
2448
+ "type": "option"
2449
+ },
2450
+ "key": {
2451
+ "char": "k",
2452
+ "description": "Parameter key/name to update",
2453
+ "name": "key",
2454
+ "required": true,
2455
+ "hasDynamicHelp": false,
2456
+ "multiple": false,
2457
+ "type": "option"
2458
+ },
2459
+ "moduleSlug": {
2460
+ "char": "m",
2461
+ "description": "Module slug",
2462
+ "name": "moduleSlug",
2463
+ "required": true,
2464
+ "default": "",
2465
+ "hasDynamicHelp": false,
2466
+ "multiple": false,
2467
+ "type": "option"
2468
+ },
2469
+ "specific": {
2470
+ "description": "Update project-specific parameter (default: global)",
2471
+ "name": "specific",
2472
+ "allowNo": false,
2473
+ "type": "boolean"
2474
+ },
2475
+ "stage": {
2476
+ "char": "s",
2477
+ "description": "Stage for the parameter (default: all stages)",
2478
+ "name": "stage",
2479
+ "default": "all",
2480
+ "hasDynamicHelp": false,
2481
+ "multiple": false,
2482
+ "type": "option"
2483
+ },
2484
+ "value": {
2485
+ "char": "v",
2486
+ "description": "New parameter value",
2487
+ "name": "value",
2488
+ "required": true,
2489
+ "hasDynamicHelp": false,
2490
+ "multiple": false,
2491
+ "type": "option"
2492
+ }
2493
+ },
2494
+ "hasDynamicHelp": false,
2495
+ "hiddenAliases": [],
2496
+ "id": "parameter:update",
2497
+ "pluginAlias": "@hyperdrive.bot/cli",
2498
+ "pluginName": "@hyperdrive.bot/cli",
2499
+ "pluginType": "core",
2500
+ "strict": true,
2501
+ "enableJsonFlag": false,
2502
+ "isESM": true,
2503
+ "relativePath": [
2504
+ "dist",
2505
+ "commands",
2506
+ "parameter",
2507
+ "update.js"
2508
+ ]
2509
+ },
2510
+ "stage:create": {
2511
+ "aliases": [],
2512
+ "args": {},
2513
+ "description": "Create a new stage",
2514
+ "flags": {
2515
+ "accountId": {
2516
+ "char": "a",
2517
+ "description": "AWS Account ID for deployments",
2518
+ "name": "accountId",
2519
+ "hasDynamicHelp": false,
2520
+ "multiple": false,
2521
+ "type": "option"
2522
+ },
2523
+ "autoLaunch": {
2524
+ "description": "Automatically launch deployments for this stage",
2525
+ "name": "autoLaunch",
2526
+ "allowNo": false,
2527
+ "type": "boolean"
2528
+ },
2529
+ "branchName": {
2530
+ "char": "b",
2531
+ "description": "Git branch name",
2532
+ "name": "branchName",
2533
+ "hasDynamicHelp": false,
2534
+ "multiple": false,
2535
+ "type": "option"
2536
+ },
2537
+ "defaultStage": {
2538
+ "description": "Set as default stage for fallback",
2539
+ "name": "defaultStage",
2540
+ "allowNo": false,
2541
+ "type": "boolean"
2542
+ },
2543
+ "deletionProtection": {
2544
+ "description": "Enable deletion protection",
2545
+ "name": "deletionProtection",
2546
+ "allowNo": false,
2547
+ "type": "boolean"
2548
+ },
2549
+ "domain": {
2550
+ "char": "d",
2551
+ "description": "Tenant domain (for multi-domain setups)",
2552
+ "name": "domain",
2553
+ "hasDynamicHelp": false,
2554
+ "multiple": false,
2555
+ "type": "option"
2556
+ },
2557
+ "name": {
2558
+ "char": "n",
2559
+ "description": "Name of the stage (e.g., dev, staging, production)",
2560
+ "name": "name",
2561
+ "hasDynamicHelp": false,
2562
+ "multiple": false,
2563
+ "type": "option"
2564
+ },
2565
+ "production": {
2566
+ "description": "Mark as production stage",
2567
+ "name": "production",
2568
+ "allowNo": false,
2569
+ "type": "boolean"
2570
+ },
2571
+ "project": {
2572
+ "char": "p",
2573
+ "description": "Project slugs to associate with this stage",
2574
+ "name": "project",
2575
+ "hasDynamicHelp": false,
2576
+ "multiple": true,
2577
+ "type": "option"
2578
+ },
2579
+ "provider": {
2580
+ "description": "Cloud provider",
2581
+ "name": "provider",
2582
+ "default": "aws",
2583
+ "hasDynamicHelp": false,
2584
+ "multiple": false,
2585
+ "type": "option"
2586
+ },
2587
+ "region": {
2588
+ "char": "r",
2589
+ "description": "AWS region(s) for deployment",
2590
+ "name": "region",
2591
+ "hasDynamicHelp": false,
2592
+ "multiple": true,
2593
+ "type": "option"
2594
+ }
2595
+ },
2596
+ "hasDynamicHelp": false,
2597
+ "hiddenAliases": [],
2598
+ "id": "stage:create",
2599
+ "pluginAlias": "@hyperdrive.bot/cli",
2600
+ "pluginName": "@hyperdrive.bot/cli",
2601
+ "pluginType": "core",
2602
+ "strict": true,
2603
+ "enableJsonFlag": false,
2604
+ "isESM": true,
2605
+ "relativePath": [
2606
+ "dist",
2607
+ "commands",
2608
+ "stage",
2609
+ "create.js"
2610
+ ]
2611
+ },
2612
+ "stage:list": {
2613
+ "aliases": [],
2614
+ "args": {},
2615
+ "description": "List all stages",
2616
+ "examples": [
2617
+ "<%= config.bin %> <%= command.id %>"
2618
+ ],
2619
+ "flags": {
2620
+ "domain": {
2621
+ "char": "d",
2622
+ "description": "Tenant domain (for multi-domain setups)",
2623
+ "name": "domain",
2624
+ "hasDynamicHelp": false,
2625
+ "multiple": false,
2626
+ "type": "option"
2627
+ }
2628
+ },
2629
+ "hasDynamicHelp": false,
2630
+ "hiddenAliases": [],
2631
+ "id": "stage:list",
2632
+ "pluginAlias": "@hyperdrive.bot/cli",
2633
+ "pluginName": "@hyperdrive.bot/cli",
2634
+ "pluginType": "core",
2635
+ "strict": true,
2636
+ "enableJsonFlag": false,
2637
+ "isESM": true,
2638
+ "relativePath": [
2639
+ "dist",
2640
+ "commands",
2641
+ "stage",
2642
+ "list.js"
2643
+ ]
2644
+ },
2645
+ "ci:account:create": {
2646
+ "aliases": [],
2647
+ "args": {},
2648
+ "description": "Create a CI token for non-interactive authentication in CI/CD pipelines",
2649
+ "examples": [
2650
+ "<%= config.bin %> <%= command.id %> --name=\"github-prod\" --scope=deploy --scope=module:read",
2651
+ "<%= config.bin %> <%= command.id %> --name=\"gitlab-staging\" --scope=deploy --scope=parameter:read"
2652
+ ],
2653
+ "flags": {
2654
+ "description": {
2655
+ "description": "Optional description for the CI account",
2656
+ "name": "description",
2657
+ "hasDynamicHelp": false,
2658
+ "multiple": false,
2659
+ "type": "option"
2660
+ },
2661
+ "domain": {
2662
+ "char": "d",
2663
+ "description": "Tenant domain",
2664
+ "name": "domain",
2665
+ "hasDynamicHelp": false,
2666
+ "multiple": false,
2667
+ "type": "option"
2668
+ },
2669
+ "name": {
2670
+ "char": "n",
2671
+ "description": "Name for the CI account (e.g., github-prod, gitlab-staging)",
2672
+ "name": "name",
2673
+ "hasDynamicHelp": false,
2674
+ "multiple": false,
2675
+ "type": "option"
2676
+ },
2677
+ "project": {
2678
+ "description": "Restrict to specific project slugs (can be specified multiple times)",
2679
+ "name": "project",
2680
+ "hasDynamicHelp": false,
2681
+ "multiple": true,
2682
+ "type": "option"
2683
+ },
2684
+ "scope": {
2685
+ "char": "s",
2686
+ "description": "Scopes to grant (can be specified multiple times)",
2687
+ "name": "scope",
2688
+ "hasDynamicHelp": false,
2689
+ "multiple": true,
2690
+ "options": [
2691
+ "deploy",
2692
+ "deploy:create",
2693
+ "deploy:launch",
2694
+ "module:read",
2695
+ "module:write",
2696
+ "parameter:read",
2697
+ "parameter:write",
2698
+ "stage:read",
2699
+ "stage:write"
2700
+ ],
2701
+ "type": "option"
2702
+ },
2703
+ "stage": {
2704
+ "description": "Restrict to specific stages (can be specified multiple times)",
2705
+ "name": "stage",
2706
+ "hasDynamicHelp": false,
2707
+ "multiple": true,
2708
+ "type": "option"
2709
+ }
2710
+ },
2711
+ "hasDynamicHelp": false,
2712
+ "hiddenAliases": [],
2713
+ "id": "ci:account:create",
2714
+ "pluginAlias": "@hyperdrive.bot/cli",
2715
+ "pluginName": "@hyperdrive.bot/cli",
2716
+ "pluginType": "core",
2717
+ "strict": true,
2718
+ "enableJsonFlag": false,
2719
+ "isESM": true,
2720
+ "relativePath": [
2721
+ "dist",
2722
+ "commands",
2723
+ "ci",
2724
+ "account",
2725
+ "create.js"
2726
+ ]
2727
+ },
2728
+ "ci:account:delete": {
2729
+ "aliases": [],
2730
+ "args": {
2731
+ "accountId": {
2732
+ "description": "CI token ID to delete",
2733
+ "name": "accountId",
2734
+ "required": false
2735
+ }
2736
+ },
2737
+ "description": "Delete (revoke) a CI token",
2738
+ "examples": [
2739
+ "<%= config.bin %> <%= command.id %> <account-id>",
2740
+ "<%= config.bin %> <%= command.id %> <account-id> --force"
2741
+ ],
2742
+ "flags": {
2743
+ "domain": {
2744
+ "char": "d",
2745
+ "description": "Tenant domain",
2746
+ "name": "domain",
2747
+ "hasDynamicHelp": false,
2748
+ "multiple": false,
2749
+ "type": "option"
2750
+ },
2751
+ "force": {
2752
+ "char": "f",
2753
+ "description": "Skip confirmation prompt",
2754
+ "name": "force",
2755
+ "allowNo": false,
2756
+ "type": "boolean"
2757
+ }
2758
+ },
2759
+ "hasDynamicHelp": false,
2760
+ "hiddenAliases": [],
2761
+ "id": "ci:account:delete",
2762
+ "pluginAlias": "@hyperdrive.bot/cli",
2763
+ "pluginName": "@hyperdrive.bot/cli",
2764
+ "pluginType": "core",
2765
+ "strict": true,
2766
+ "enableJsonFlag": false,
2767
+ "isESM": true,
2768
+ "relativePath": [
2769
+ "dist",
2770
+ "commands",
2771
+ "ci",
2772
+ "account",
2773
+ "delete.js"
2774
+ ]
2775
+ },
2776
+ "ci:account:list": {
2777
+ "aliases": [],
2778
+ "args": {},
2779
+ "description": "List all CI tokens",
2780
+ "examples": [
2781
+ "<%= config.bin %> <%= command.id %>",
2782
+ "<%= config.bin %> <%= command.id %> --json"
2783
+ ],
2784
+ "flags": {
2785
+ "domain": {
2786
+ "char": "d",
2787
+ "description": "Tenant domain",
2788
+ "name": "domain",
2789
+ "hasDynamicHelp": false,
2790
+ "multiple": false,
2791
+ "type": "option"
2792
+ },
2793
+ "json": {
2794
+ "description": "Output as JSON",
2795
+ "name": "json",
2796
+ "allowNo": false,
2797
+ "type": "boolean"
2798
+ }
2799
+ },
2800
+ "hasDynamicHelp": false,
2801
+ "hiddenAliases": [],
2802
+ "id": "ci:account:list",
2803
+ "pluginAlias": "@hyperdrive.bot/cli",
2804
+ "pluginName": "@hyperdrive.bot/cli",
2805
+ "pluginType": "core",
2806
+ "strict": true,
2807
+ "enableJsonFlag": false,
2808
+ "isESM": true,
2809
+ "relativePath": [
2810
+ "dist",
2811
+ "commands",
2812
+ "ci",
2813
+ "account",
2814
+ "list.js"
2815
+ ]
2816
+ }
2817
+ },
2818
+ "version": "1.0.2"
2819
+ }