@hyperdrive.bot/cli 1.0.13 → 1.0.16

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 (157) hide show
  1. package/README.md +1495 -474
  2. package/dist/commands/deploy.d.ts +18 -0
  3. package/dist/commands/deploy.js +239 -0
  4. package/dist/commands/deployment/create.js +10 -2
  5. package/dist/commands/domain/{switch.d.ts → set-production.d.ts} +1 -1
  6. package/dist/commands/domain/set-production.js +27 -0
  7. package/dist/commands/git/list-open-prs.d.ts +12 -0
  8. package/dist/commands/git/list-open-prs.js +87 -0
  9. package/dist/commands/hook/add.d.ts +22 -0
  10. package/dist/commands/hook/add.js +299 -0
  11. package/dist/commands/hook/list.d.ts +11 -0
  12. package/dist/commands/hook/list.js +111 -0
  13. package/dist/commands/hook/logs.d.ts +13 -0
  14. package/dist/commands/hook/logs.js +124 -0
  15. package/dist/commands/hook/remove.d.ts +12 -0
  16. package/dist/commands/hook/remove.js +115 -0
  17. package/dist/commands/hook/toggle.d.ts +12 -0
  18. package/dist/commands/hook/toggle.js +125 -0
  19. package/dist/commands/init.d.ts +1 -1
  20. package/dist/commands/init.js +49 -9
  21. package/dist/commands/module/bindings.d.ts +14 -0
  22. package/dist/commands/module/bindings.js +125 -0
  23. package/dist/commands/module/create.d.ts +3 -0
  24. package/dist/commands/module/create.js +156 -78
  25. package/dist/commands/module/list.d.ts +1 -0
  26. package/dist/commands/module/list.js +22 -1
  27. package/dist/commands/module/sync.d.ts +29 -0
  28. package/dist/commands/module/sync.js +409 -0
  29. package/dist/commands/module/unlink.d.ts +11 -0
  30. package/dist/commands/module/unlink.js +77 -0
  31. package/dist/commands/module/update.d.ts +10 -0
  32. package/dist/commands/module/update.js +168 -5
  33. package/dist/commands/network/discover.d.ts +12 -0
  34. package/dist/commands/network/discover.js +210 -0
  35. package/dist/commands/network/get.d.ts +13 -0
  36. package/dist/commands/network/get.js +90 -0
  37. package/dist/commands/{auth/logout.d.ts → network/list.d.ts} +2 -9
  38. package/dist/commands/network/list.js +71 -0
  39. package/dist/commands/network/register.d.ts +16 -0
  40. package/dist/commands/network/register.js +144 -0
  41. package/dist/commands/parameter/sync.d.ts +13 -0
  42. package/dist/commands/parameter/sync.js +69 -1
  43. package/dist/commands/project/sync.d.ts +5 -11
  44. package/dist/commands/project/sync.js +12 -381
  45. package/dist/commands/seed.d.ts +93 -0
  46. package/dist/commands/seed.js +324 -0
  47. package/dist/commands/service/backup.d.ts +17 -0
  48. package/dist/commands/service/backup.js +156 -0
  49. package/dist/commands/service/backups.d.ts +14 -0
  50. package/dist/commands/service/backups.js +110 -0
  51. package/dist/commands/service/bind.d.ts +16 -0
  52. package/dist/commands/service/bind.js +106 -0
  53. package/dist/commands/service/bindings.d.ts +13 -0
  54. package/dist/commands/service/bindings.js +78 -0
  55. package/dist/commands/service/clone.d.ts +19 -0
  56. package/dist/commands/service/clone.js +153 -0
  57. package/dist/commands/service/create.d.ts +16 -0
  58. package/dist/commands/service/create.js +212 -0
  59. package/dist/commands/service/get.d.ts +13 -0
  60. package/dist/commands/service/get.js +97 -0
  61. package/dist/commands/service/list.d.ts +12 -0
  62. package/dist/commands/service/list.js +86 -0
  63. package/dist/commands/service/register.d.ts +21 -0
  64. package/dist/commands/service/register.js +215 -0
  65. package/dist/commands/service/restore.d.ts +19 -0
  66. package/dist/commands/service/restore.js +158 -0
  67. package/dist/commands/service/seed.d.ts +17 -0
  68. package/dist/commands/service/seed.js +173 -0
  69. package/dist/commands/service/templates.d.ts +10 -0
  70. package/dist/commands/service/templates.js +66 -0
  71. package/dist/commands/service/unbind.d.ts +15 -0
  72. package/dist/commands/service/unbind.js +74 -0
  73. package/dist/commands/stage/create.d.ts +23 -0
  74. package/dist/commands/stage/create.js +145 -6
  75. package/dist/commands/stage/delete.d.ts +11 -0
  76. package/dist/commands/stage/delete.js +85 -0
  77. package/dist/commands/stage/deploy.d.ts +34 -0
  78. package/dist/commands/stage/deploy.js +294 -0
  79. package/dist/commands/stage/ensure-branches.d.ts +23 -0
  80. package/dist/commands/stage/ensure-branches.js +101 -0
  81. package/dist/commands/stage/list.js +4 -0
  82. package/dist/commands/stage/status.d.ts +14 -0
  83. package/dist/commands/stage/status.js +100 -0
  84. package/dist/commands/{jira → tracker}/connect.js +32 -23
  85. package/dist/commands/tracker/hook/add.d.ts +25 -0
  86. package/dist/commands/tracker/hook/add.js +284 -0
  87. package/dist/commands/{jira → tracker}/hook/list.js +20 -11
  88. package/dist/commands/{jira/hook/add.d.ts → tracker/hook/logs.d.ts} +2 -3
  89. package/dist/commands/tracker/hook/logs.js +126 -0
  90. package/dist/commands/{jira → tracker}/hook/remove.js +9 -8
  91. package/dist/commands/{jira → tracker}/hook/toggle.js +14 -12
  92. package/dist/commands/tracker/project/init.d.ts +17 -0
  93. package/dist/commands/tracker/project/init.js +178 -0
  94. package/dist/commands/tracker/project/link-module.d.ts +17 -0
  95. package/dist/commands/tracker/project/link-module.js +287 -0
  96. package/dist/commands/tracker/project/list-modules.d.ts +11 -0
  97. package/dist/commands/tracker/project/list-modules.js +117 -0
  98. package/dist/commands/tracker/project/list.d.ts +10 -0
  99. package/dist/commands/tracker/project/list.js +90 -0
  100. package/dist/commands/tracker/project/status.d.ts +13 -0
  101. package/dist/commands/tracker/project/status.js +168 -0
  102. package/dist/commands/tracker/project/unlink-module.d.ts +13 -0
  103. package/dist/commands/tracker/project/unlink-module.js +251 -0
  104. package/dist/commands/{jira → tracker}/status.js +3 -3
  105. package/dist/lib/ensure-branches.d.ts +53 -0
  106. package/dist/lib/ensure-branches.js +149 -0
  107. package/dist/lib/git-providers/github.d.ts +16 -0
  108. package/dist/lib/git-providers/github.js +157 -0
  109. package/dist/lib/git-providers/gitlab.d.ts +16 -0
  110. package/dist/lib/git-providers/gitlab.js +148 -0
  111. package/dist/lib/git-providers/index.d.ts +67 -0
  112. package/dist/lib/git-providers/index.js +39 -0
  113. package/dist/lib/lambda-warmer.d.ts +106 -0
  114. package/dist/lib/lambda-warmer.js +189 -0
  115. package/dist/services/hyperdrive-sigv4.d.ts +359 -5
  116. package/dist/services/hyperdrive-sigv4.js +177 -12
  117. package/dist/utils/hook-flow.d.ts +60 -3
  118. package/dist/utils/hook-flow.js +437 -2
  119. package/dist/utils/hook-normalize.d.ts +6 -0
  120. package/dist/utils/hook-normalize.js +33 -0
  121. package/dist/utils/lifecycle-poller.d.ts +32 -0
  122. package/dist/utils/lifecycle-poller.js +72 -0
  123. package/dist/utils/retry.d.ts +43 -0
  124. package/dist/utils/retry.js +88 -0
  125. package/dist/utils/summary-display.js +1 -1
  126. package/dist/utils/tracker-project-flow.d.ts +84 -0
  127. package/dist/utils/tracker-project-flow.js +564 -0
  128. package/package.json +35 -7
  129. package/dist/commands/auth/login.d.ts +0 -16
  130. package/dist/commands/auth/login.js +0 -179
  131. package/dist/commands/auth/logout.js +0 -116
  132. package/dist/commands/auth/refresh.d.ts +0 -6
  133. package/dist/commands/auth/refresh.js +0 -66
  134. package/dist/commands/auth/status.d.ts +0 -6
  135. package/dist/commands/auth/status.js +0 -63
  136. package/dist/commands/config/get.d.ts +0 -9
  137. package/dist/commands/config/get.js +0 -37
  138. package/dist/commands/config/set.d.ts +0 -10
  139. package/dist/commands/config/set.js +0 -48
  140. package/dist/commands/config/show.d.ts +0 -6
  141. package/dist/commands/config/show.js +0 -10
  142. package/dist/commands/domain/current.d.ts +0 -6
  143. package/dist/commands/domain/current.js +0 -18
  144. package/dist/commands/domain/list.d.ts +0 -6
  145. package/dist/commands/domain/list.js +0 -42
  146. package/dist/commands/domain/switch.js +0 -40
  147. package/dist/commands/jira/hook/add.js +0 -147
  148. package/dist/services/tenant-service.d.ts +0 -127
  149. package/dist/services/tenant-service.js +0 -396
  150. package/dist/utils/auth-flow.d.ts +0 -147
  151. package/dist/utils/auth-flow.js +0 -479
  152. package/oclif.manifest.json +0 -3519
  153. /package/dist/commands/{jira → tracker}/connect.d.ts +0 -0
  154. /package/dist/commands/{jira → tracker}/hook/list.d.ts +0 -0
  155. /package/dist/commands/{jira → tracker}/hook/remove.d.ts +0 -0
  156. /package/dist/commands/{jira → tracker}/hook/toggle.d.ts +0 -0
  157. /package/dist/commands/{jira → tracker}/status.d.ts +0 -0
@@ -1,3519 +0,0 @@
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
- "domain": {
182
- "char": "d",
183
- "description": "Tenant domain (for multi-domain setups)",
184
- "name": "domain",
185
- "hasDynamicHelp": false,
186
- "multiple": false,
187
- "type": "option"
188
- }
189
- },
190
- "hasDynamicHelp": false,
191
- "hiddenAliases": [],
192
- "id": "account:list",
193
- "pluginAlias": "@hyperdrive.bot/cli",
194
- "pluginName": "@hyperdrive.bot/cli",
195
- "pluginType": "core",
196
- "strict": true,
197
- "enableJsonFlag": false,
198
- "isESM": true,
199
- "relativePath": [
200
- "dist",
201
- "commands",
202
- "account",
203
- "list.js"
204
- ]
205
- },
206
- "account:remove": {
207
- "aliases": [],
208
- "args": {},
209
- "description": "Remove an AWS account from Hyperdrive",
210
- "examples": [
211
- "<%= config.bin %> <%= command.id %> --accountId 123456789012",
212
- "<%= config.bin %> <%= command.id %> --accountId 123456789012 --force"
213
- ],
214
- "flags": {
215
- "accountId": {
216
- "char": "a",
217
- "description": "AWS Account ID (12 digits)",
218
- "name": "accountId",
219
- "required": true,
220
- "hasDynamicHelp": false,
221
- "multiple": false,
222
- "type": "option"
223
- },
224
- "domain": {
225
- "char": "d",
226
- "description": "Tenant domain (for multi-domain setups)",
227
- "name": "domain",
228
- "hasDynamicHelp": false,
229
- "multiple": false,
230
- "type": "option"
231
- },
232
- "force": {
233
- "char": "f",
234
- "description": "Skip confirmation prompt",
235
- "name": "force",
236
- "allowNo": false,
237
- "type": "boolean"
238
- }
239
- },
240
- "hasDynamicHelp": false,
241
- "hiddenAliases": [],
242
- "id": "account:remove",
243
- "pluginAlias": "@hyperdrive.bot/cli",
244
- "pluginName": "@hyperdrive.bot/cli",
245
- "pluginType": "core",
246
- "strict": true,
247
- "enableJsonFlag": false,
248
- "isESM": true,
249
- "relativePath": [
250
- "dist",
251
- "commands",
252
- "account",
253
- "remove.js"
254
- ]
255
- },
256
- "auth:login": {
257
- "aliases": [],
258
- "args": {},
259
- "description": "Authenticate with Hyperdrive using OAuth 2.0 PKCE flow (or CI credentials)",
260
- "examples": [
261
- "<%= config.bin %> <%= command.id %>",
262
- "<%= config.bin %> <%= command.id %> --domain acme.hyperdrive.bot",
263
- "<%= config.bin %> <%= command.id %> --port 9876",
264
- "<%= config.bin %> <%= command.id %> --ci --domain acme.hyperdrive.bot"
265
- ],
266
- "flags": {
267
- "ci": {
268
- "description": "Use CI authentication (requires HD_CI_USERNAME and HD_CI_PASSWORD env vars)",
269
- "name": "ci",
270
- "allowNo": false,
271
- "type": "boolean"
272
- },
273
- "domain": {
274
- "char": "d",
275
- "description": "Tenant domain (e.g., acme.hyperdrive.bot) - allows multiple installations",
276
- "name": "domain",
277
- "hasDynamicHelp": false,
278
- "multiple": false,
279
- "type": "option"
280
- },
281
- "port": {
282
- "char": "p",
283
- "description": "Local callback server port",
284
- "name": "port",
285
- "default": 8765,
286
- "hasDynamicHelp": false,
287
- "multiple": false,
288
- "type": "option"
289
- },
290
- "tenant": {
291
- "char": "t",
292
- "description": "[DEPRECATED] Use --domain instead",
293
- "hidden": true,
294
- "name": "tenant",
295
- "hasDynamicHelp": false,
296
- "multiple": false,
297
- "type": "option"
298
- }
299
- },
300
- "hasDynamicHelp": false,
301
- "hiddenAliases": [],
302
- "id": "auth:login",
303
- "pluginAlias": "@hyperdrive.bot/cli",
304
- "pluginName": "@hyperdrive.bot/cli",
305
- "pluginType": "core",
306
- "strict": true,
307
- "enableJsonFlag": false,
308
- "isESM": true,
309
- "relativePath": [
310
- "dist",
311
- "commands",
312
- "auth",
313
- "login.js"
314
- ]
315
- },
316
- "auth:logout": {
317
- "aliases": [],
318
- "args": {},
319
- "description": "Remove stored credentials and logout. Use --domain to logout from a single domain. Without flags, removes all credentials and stored configuration.",
320
- "examples": [
321
- "<%= config.bin %> <%= command.id %>",
322
- "<%= config.bin %> <%= command.id %> --domain acme.hyperdrive.bot"
323
- ],
324
- "flags": {
325
- "domain": {
326
- "char": "d",
327
- "description": "Logout from a specific domain only (keeps other domains and config intact)",
328
- "name": "domain",
329
- "hasDynamicHelp": false,
330
- "multiple": false,
331
- "type": "option"
332
- }
333
- },
334
- "hasDynamicHelp": false,
335
- "hiddenAliases": [],
336
- "id": "auth:logout",
337
- "pluginAlias": "@hyperdrive.bot/cli",
338
- "pluginName": "@hyperdrive.bot/cli",
339
- "pluginType": "core",
340
- "strict": true,
341
- "enableJsonFlag": false,
342
- "isESM": true,
343
- "relativePath": [
344
- "dist",
345
- "commands",
346
- "auth",
347
- "logout.js"
348
- ]
349
- },
350
- "auth:refresh": {
351
- "aliases": [],
352
- "args": {},
353
- "description": "Refresh expired AWS credentials using refresh token",
354
- "examples": [
355
- "<%= config.bin %> <%= command.id %>"
356
- ],
357
- "flags": {},
358
- "hasDynamicHelp": false,
359
- "hiddenAliases": [],
360
- "id": "auth:refresh",
361
- "pluginAlias": "@hyperdrive.bot/cli",
362
- "pluginName": "@hyperdrive.bot/cli",
363
- "pluginType": "core",
364
- "strict": true,
365
- "enableJsonFlag": false,
366
- "isESM": true,
367
- "relativePath": [
368
- "dist",
369
- "commands",
370
- "auth",
371
- "refresh.js"
372
- ]
373
- },
374
- "auth:status": {
375
- "aliases": [],
376
- "args": {},
377
- "description": "Show current authentication status",
378
- "examples": [
379
- "<%= config.bin %> <%= command.id %>"
380
- ],
381
- "flags": {},
382
- "hasDynamicHelp": false,
383
- "hiddenAliases": [],
384
- "id": "auth:status",
385
- "pluginAlias": "@hyperdrive.bot/cli",
386
- "pluginName": "@hyperdrive.bot/cli",
387
- "pluginType": "core",
388
- "strict": true,
389
- "enableJsonFlag": false,
390
- "isESM": true,
391
- "relativePath": [
392
- "dist",
393
- "commands",
394
- "auth",
395
- "status.js"
396
- ]
397
- },
398
- "config:get": {
399
- "aliases": [],
400
- "args": {
401
- "key": {
402
- "description": "Configuration key",
403
- "name": "key",
404
- "options": [
405
- "tenant-domain",
406
- "bootstrap-url",
407
- "api-url",
408
- "region"
409
- ],
410
- "required": true
411
- }
412
- },
413
- "description": "Get CLI configuration value",
414
- "examples": [
415
- "<%= config.bin %> <%= command.id %> tenant-domain",
416
- "<%= config.bin %> <%= command.id %> bootstrap-url"
417
- ],
418
- "flags": {},
419
- "hasDynamicHelp": false,
420
- "hiddenAliases": [],
421
- "id": "config:get",
422
- "pluginAlias": "@hyperdrive.bot/cli",
423
- "pluginName": "@hyperdrive.bot/cli",
424
- "pluginType": "core",
425
- "strict": true,
426
- "enableJsonFlag": false,
427
- "isESM": true,
428
- "relativePath": [
429
- "dist",
430
- "commands",
431
- "config",
432
- "get.js"
433
- ]
434
- },
435
- "config:set": {
436
- "aliases": [],
437
- "args": {
438
- "key": {
439
- "description": "Configuration key",
440
- "name": "key",
441
- "options": [
442
- "tenant-domain",
443
- "bootstrap-url",
444
- "api-url",
445
- "region"
446
- ],
447
- "required": true
448
- },
449
- "value": {
450
- "description": "Configuration value",
451
- "name": "value",
452
- "required": true
453
- }
454
- },
455
- "description": "Set CLI configuration values",
456
- "examples": [
457
- "<%= config.bin %> <%= command.id %> tenant-domain acme.hyperdrive.bot",
458
- "<%= config.bin %> <%= command.id %> bootstrap-url https://custom-api.example.com/tenant/bootstrap",
459
- "<%= config.bin %> <%= command.id %> api-url https://api.us-east-1.hyperdrive.bot",
460
- "<%= config.bin %> <%= command.id %> region us-west-2"
461
- ],
462
- "flags": {},
463
- "hasDynamicHelp": false,
464
- "hiddenAliases": [],
465
- "id": "config:set",
466
- "pluginAlias": "@hyperdrive.bot/cli",
467
- "pluginName": "@hyperdrive.bot/cli",
468
- "pluginType": "core",
469
- "strict": true,
470
- "enableJsonFlag": false,
471
- "isESM": true,
472
- "relativePath": [
473
- "dist",
474
- "commands",
475
- "config",
476
- "set.js"
477
- ]
478
- },
479
- "config:show": {
480
- "aliases": [],
481
- "args": {},
482
- "description": "Show all CLI configuration settings",
483
- "examples": [
484
- "<%= config.bin %> <%= command.id %>"
485
- ],
486
- "flags": {},
487
- "hasDynamicHelp": false,
488
- "hiddenAliases": [],
489
- "id": "config:show",
490
- "pluginAlias": "@hyperdrive.bot/cli",
491
- "pluginName": "@hyperdrive.bot/cli",
492
- "pluginType": "core",
493
- "strict": true,
494
- "enableJsonFlag": false,
495
- "isESM": true,
496
- "relativePath": [
497
- "dist",
498
- "commands",
499
- "config",
500
- "show.js"
501
- ]
502
- },
503
- "deployment:create": {
504
- "aliases": [],
505
- "args": {},
506
- "description": "Create a new deployment with real-time log streaming",
507
- "examples": [
508
- "<%= config.bin %> <%= command.id %> --stage=\"dev\" --commit=\"abc123\" --moduleSlug=\"my-api\"",
509
- "<%= config.bin %> <%= command.id %> --stage=\"dev\" --commit=\"abc123\" --launch",
510
- "<%= config.bin %> <%= command.id %> --stage=\"dev\" --commit=\"abc123\" --verbose"
511
- ],
512
- "flags": {
513
- "commit": {
514
- "char": "c",
515
- "description": "Commit hash",
516
- "name": "commit",
517
- "required": true,
518
- "hasDynamicHelp": false,
519
- "multiple": false,
520
- "type": "option"
521
- },
522
- "debug": {
523
- "description": "Include debug-level logs (requires --verbose)",
524
- "name": "debug",
525
- "allowNo": false,
526
- "type": "boolean"
527
- },
528
- "domain": {
529
- "char": "d",
530
- "description": "Tenant domain (for multi-domain setups)",
531
- "name": "domain",
532
- "hasDynamicHelp": false,
533
- "multiple": false,
534
- "type": "option"
535
- },
536
- "launch": {
537
- "description": "Launch the deployment after creating it",
538
- "name": "launch",
539
- "allowNo": false,
540
- "type": "boolean"
541
- },
542
- "moduleSlug": {
543
- "char": "m",
544
- "description": "Module slug",
545
- "name": "moduleSlug",
546
- "required": true,
547
- "default": "",
548
- "hasDynamicHelp": false,
549
- "multiple": false,
550
- "type": "option"
551
- },
552
- "name": {
553
- "char": "n",
554
- "description": "The name of the deployment",
555
- "name": "name",
556
- "required": false,
557
- "default": "Deployment-2026-02-09-20-44-58",
558
- "hasDynamicHelp": false,
559
- "multiple": false,
560
- "type": "option"
561
- },
562
- "noStream": {
563
- "description": "Disable log streaming (use polling instead)",
564
- "name": "noStream",
565
- "allowNo": false,
566
- "type": "boolean"
567
- },
568
- "regions": {
569
- "char": "r",
570
- "description": "Regions for the deployment",
571
- "name": "regions",
572
- "default": [],
573
- "hasDynamicHelp": false,
574
- "multiple": true,
575
- "type": "option"
576
- },
577
- "stage": {
578
- "char": "s",
579
- "description": "Stage for the deployment",
580
- "name": "stage",
581
- "required": true,
582
- "hasDynamicHelp": false,
583
- "multiple": false,
584
- "type": "option"
585
- },
586
- "verbose": {
587
- "char": "v",
588
- "description": "Show detailed build logs",
589
- "name": "verbose",
590
- "allowNo": false,
591
- "type": "boolean"
592
- }
593
- },
594
- "hasDynamicHelp": false,
595
- "hiddenAliases": [],
596
- "id": "deployment:create",
597
- "pluginAlias": "@hyperdrive.bot/cli",
598
- "pluginName": "@hyperdrive.bot/cli",
599
- "pluginType": "core",
600
- "strict": true,
601
- "enableJsonFlag": false,
602
- "isESM": true,
603
- "relativePath": [
604
- "dist",
605
- "commands",
606
- "deployment",
607
- "create.js"
608
- ]
609
- },
610
- "deployment:get": {
611
- "aliases": [],
612
- "args": {},
613
- "description": "Get details of a specific deployment (alias for deployment check)",
614
- "examples": [
615
- "<%= config.bin %> <%= command.id %> --name=\"Deployment-2024-01-01\" --stage=\"dev\"",
616
- "<%= config.bin %> <%= command.id %> --name=\"prod-release-v1\" --stage=\"prod\""
617
- ],
618
- "flags": {
619
- "domain": {
620
- "char": "d",
621
- "description": "Tenant domain (for multi-domain setups)",
622
- "name": "domain",
623
- "hasDynamicHelp": false,
624
- "multiple": false,
625
- "type": "option"
626
- },
627
- "moduleSlug": {
628
- "char": "m",
629
- "description": "Module slug",
630
- "name": "moduleSlug",
631
- "required": true,
632
- "default": "",
633
- "hasDynamicHelp": false,
634
- "multiple": false,
635
- "type": "option"
636
- },
637
- "name": {
638
- "char": "n",
639
- "description": "Deployment name",
640
- "name": "name",
641
- "required": true,
642
- "hasDynamicHelp": false,
643
- "multiple": false,
644
- "type": "option"
645
- },
646
- "stage": {
647
- "char": "s",
648
- "description": "Stage for the deployment",
649
- "name": "stage",
650
- "required": true,
651
- "hasDynamicHelp": false,
652
- "multiple": false,
653
- "type": "option"
654
- }
655
- },
656
- "hasDynamicHelp": false,
657
- "hiddenAliases": [],
658
- "id": "deployment:get",
659
- "pluginAlias": "@hyperdrive.bot/cli",
660
- "pluginName": "@hyperdrive.bot/cli",
661
- "pluginType": "core",
662
- "strict": true,
663
- "enableJsonFlag": false,
664
- "isESM": true,
665
- "relativePath": [
666
- "dist",
667
- "commands",
668
- "deployment",
669
- "get.js"
670
- ]
671
- },
672
- "deployment:launch": {
673
- "aliases": [],
674
- "args": {},
675
- "description": "Launch an existing deployment",
676
- "examples": [
677
- "<%= config.bin %> <%= command.id %> --name=\"Deployment-2024-01-01\" --stage=\"dev\" --region=\"us-east-1\"",
678
- "<%= config.bin %> <%= command.id %> --name=\"prod-release\" --stage=\"prod\" --region=\"us-west-2\""
679
- ],
680
- "flags": {
681
- "domain": {
682
- "char": "d",
683
- "description": "Tenant domain (for multi-domain setups)",
684
- "name": "domain",
685
- "hasDynamicHelp": false,
686
- "multiple": false,
687
- "type": "option"
688
- },
689
- "force": {
690
- "char": "f",
691
- "description": "Force launch even if deployment is not in ready state",
692
- "name": "force",
693
- "allowNo": false,
694
- "type": "boolean"
695
- },
696
- "moduleSlug": {
697
- "char": "m",
698
- "description": "Module slug",
699
- "name": "moduleSlug",
700
- "required": true,
701
- "default": "",
702
- "hasDynamicHelp": false,
703
- "multiple": false,
704
- "type": "option"
705
- },
706
- "name": {
707
- "char": "n",
708
- "description": "The name of the deployment to launch",
709
- "name": "name",
710
- "required": true,
711
- "hasDynamicHelp": false,
712
- "multiple": false,
713
- "type": "option"
714
- },
715
- "region": {
716
- "char": "r",
717
- "description": "Region for the deployment",
718
- "name": "region",
719
- "hasDynamicHelp": false,
720
- "multiple": false,
721
- "type": "option"
722
- },
723
- "stage": {
724
- "char": "s",
725
- "description": "Stage for the deployment",
726
- "name": "stage",
727
- "required": true,
728
- "hasDynamicHelp": false,
729
- "multiple": false,
730
- "type": "option"
731
- }
732
- },
733
- "hasDynamicHelp": false,
734
- "hiddenAliases": [],
735
- "id": "deployment:launch",
736
- "pluginAlias": "@hyperdrive.bot/cli",
737
- "pluginName": "@hyperdrive.bot/cli",
738
- "pluginType": "core",
739
- "strict": true,
740
- "enableJsonFlag": false,
741
- "isESM": true,
742
- "relativePath": [
743
- "dist",
744
- "commands",
745
- "deployment",
746
- "launch.js"
747
- ]
748
- },
749
- "deployment:list": {
750
- "aliases": [],
751
- "args": {},
752
- "description": "List all deployments for a module and stage",
753
- "examples": [
754
- "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
755
- "<%= config.bin %> <%= command.id %> --stage=\"prod\" --moduleSlug=\"my-api\""
756
- ],
757
- "flags": {
758
- "domain": {
759
- "char": "d",
760
- "description": "Tenant domain (for multi-domain setups)",
761
- "name": "domain",
762
- "hasDynamicHelp": false,
763
- "multiple": false,
764
- "type": "option"
765
- },
766
- "moduleSlug": {
767
- "char": "m",
768
- "description": "Module slug",
769
- "name": "moduleSlug",
770
- "required": true,
771
- "default": "",
772
- "hasDynamicHelp": false,
773
- "multiple": false,
774
- "type": "option"
775
- },
776
- "stage": {
777
- "char": "s",
778
- "description": "Stage to list deployments for",
779
- "name": "stage",
780
- "required": true,
781
- "hasDynamicHelp": false,
782
- "multiple": false,
783
- "type": "option"
784
- }
785
- },
786
- "hasDynamicHelp": false,
787
- "hiddenAliases": [],
788
- "id": "deployment:list",
789
- "pluginAlias": "@hyperdrive.bot/cli",
790
- "pluginName": "@hyperdrive.bot/cli",
791
- "pluginType": "core",
792
- "strict": true,
793
- "enableJsonFlag": false,
794
- "isESM": true,
795
- "relativePath": [
796
- "dist",
797
- "commands",
798
- "deployment",
799
- "list.js"
800
- ]
801
- },
802
- "domain:current": {
803
- "aliases": [],
804
- "args": {},
805
- "description": "Show the current default domain",
806
- "examples": [
807
- "<%= config.bin %> <%= command.id %>"
808
- ],
809
- "flags": {},
810
- "hasDynamicHelp": false,
811
- "hiddenAliases": [],
812
- "id": "domain:current",
813
- "pluginAlias": "@hyperdrive.bot/cli",
814
- "pluginName": "@hyperdrive.bot/cli",
815
- "pluginType": "core",
816
- "strict": true,
817
- "enableJsonFlag": false,
818
- "isESM": true,
819
- "relativePath": [
820
- "dist",
821
- "commands",
822
- "domain",
823
- "current.js"
824
- ]
825
- },
826
- "domain:list": {
827
- "aliases": [],
828
- "args": {},
829
- "description": "List all configured domains/installations",
830
- "examples": [
831
- "<%= config.bin %> <%= command.id %>"
832
- ],
833
- "flags": {},
834
- "hasDynamicHelp": false,
835
- "hiddenAliases": [],
836
- "id": "domain:list",
837
- "pluginAlias": "@hyperdrive.bot/cli",
838
- "pluginName": "@hyperdrive.bot/cli",
839
- "pluginType": "core",
840
- "strict": true,
841
- "enableJsonFlag": false,
842
- "isESM": true,
843
- "relativePath": [
844
- "dist",
845
- "commands",
846
- "domain",
847
- "list.js"
848
- ]
849
- },
850
- "domain:switch": {
851
- "aliases": [],
852
- "args": {
853
- "domain": {
854
- "description": "The domain to set as default",
855
- "name": "domain",
856
- "required": true
857
- }
858
- },
859
- "description": "Switch the default domain for CLI commands",
860
- "examples": [
861
- "<%= config.bin %> <%= command.id %> acme.hyperdrive.bot"
862
- ],
863
- "flags": {},
864
- "hasDynamicHelp": false,
865
- "hiddenAliases": [],
866
- "id": "domain:switch",
867
- "pluginAlias": "@hyperdrive.bot/cli",
868
- "pluginName": "@hyperdrive.bot/cli",
869
- "pluginType": "core",
870
- "strict": true,
871
- "enableJsonFlag": false,
872
- "isESM": true,
873
- "relativePath": [
874
- "dist",
875
- "commands",
876
- "domain",
877
- "switch.js"
878
- ]
879
- },
880
- "git:connect": {
881
- "aliases": [],
882
- "args": {},
883
- "description": "Connect a GitHub or GitLab account to Hyperdrive",
884
- "examples": [
885
- "<%= config.bin %> <%= command.id %> --provider=github",
886
- "<%= config.bin %> <%= command.id %> --provider=gitlab"
887
- ],
888
- "flags": {
889
- "domain": {
890
- "char": "d",
891
- "description": "Tenant domain (for multi-domain setups)",
892
- "name": "domain",
893
- "hasDynamicHelp": false,
894
- "multiple": false,
895
- "type": "option"
896
- },
897
- "provider": {
898
- "char": "p",
899
- "description": "Git provider to connect",
900
- "name": "provider",
901
- "hasDynamicHelp": false,
902
- "multiple": false,
903
- "options": [
904
- "github",
905
- "gitlab"
906
- ],
907
- "type": "option"
908
- }
909
- },
910
- "hasDynamicHelp": false,
911
- "hiddenAliases": [],
912
- "id": "git:connect",
913
- "pluginAlias": "@hyperdrive.bot/cli",
914
- "pluginName": "@hyperdrive.bot/cli",
915
- "pluginType": "core",
916
- "strict": true,
917
- "enableJsonFlag": false,
918
- "isESM": true,
919
- "relativePath": [
920
- "dist",
921
- "commands",
922
- "git",
923
- "connect.js"
924
- ]
925
- },
926
- "git:disconnect": {
927
- "aliases": [],
928
- "args": {},
929
- "description": "Disconnect a Git account from Hyperdrive",
930
- "examples": [
931
- "<%= config.bin %> <%= command.id %>",
932
- "<%= config.bin %> <%= command.id %> --provider=github --installation-id=12345"
933
- ],
934
- "flags": {
935
- "domain": {
936
- "char": "d",
937
- "description": "Tenant domain (for multi-domain setups)",
938
- "name": "domain",
939
- "hasDynamicHelp": false,
940
- "multiple": false,
941
- "type": "option"
942
- },
943
- "installationId": {
944
- "char": "i",
945
- "description": "Installation ID to disconnect",
946
- "name": "installationId",
947
- "hasDynamicHelp": false,
948
- "multiple": false,
949
- "type": "option"
950
- },
951
- "provider": {
952
- "char": "p",
953
- "description": "Git provider",
954
- "name": "provider",
955
- "hasDynamicHelp": false,
956
- "multiple": false,
957
- "options": [
958
- "github",
959
- "gitlab"
960
- ],
961
- "type": "option"
962
- }
963
- },
964
- "hasDynamicHelp": false,
965
- "hiddenAliases": [],
966
- "id": "git:disconnect",
967
- "pluginAlias": "@hyperdrive.bot/cli",
968
- "pluginName": "@hyperdrive.bot/cli",
969
- "pluginType": "core",
970
- "strict": true,
971
- "enableJsonFlag": false,
972
- "isESM": true,
973
- "relativePath": [
974
- "dist",
975
- "commands",
976
- "git",
977
- "disconnect.js"
978
- ]
979
- },
980
- "git:list": {
981
- "aliases": [],
982
- "args": {},
983
- "description": "List connected Git accounts",
984
- "examples": [
985
- "<%= config.bin %> <%= command.id %>",
986
- "<%= config.bin %> <%= command.id %> --provider=github"
987
- ],
988
- "flags": {
989
- "domain": {
990
- "char": "d",
991
- "description": "Tenant domain (for multi-domain setups)",
992
- "name": "domain",
993
- "hasDynamicHelp": false,
994
- "multiple": false,
995
- "type": "option"
996
- },
997
- "provider": {
998
- "char": "p",
999
- "description": "Filter by Git provider",
1000
- "name": "provider",
1001
- "hasDynamicHelp": false,
1002
- "multiple": false,
1003
- "options": [
1004
- "github",
1005
- "gitlab"
1006
- ],
1007
- "type": "option"
1008
- }
1009
- },
1010
- "hasDynamicHelp": false,
1011
- "hiddenAliases": [],
1012
- "id": "git:list",
1013
- "pluginAlias": "@hyperdrive.bot/cli",
1014
- "pluginName": "@hyperdrive.bot/cli",
1015
- "pluginType": "core",
1016
- "strict": true,
1017
- "enableJsonFlag": false,
1018
- "isESM": true,
1019
- "relativePath": [
1020
- "dist",
1021
- "commands",
1022
- "git",
1023
- "list.js"
1024
- ]
1025
- },
1026
- "git:sync": {
1027
- "aliases": [],
1028
- "args": {},
1029
- "description": "Sync specific branches or all open branches with a source branch (default: master)",
1030
- "examples": [
1031
- "<%= config.bin %> <%= command.id %> --branch feature-branch",
1032
- "<%= config.bin %> <%= command.id %> --branch feature-1 --branch feature-2",
1033
- "<%= config.bin %> <%= command.id %> --all",
1034
- "<%= config.bin %> <%= command.id %> --branch feature-branch --source-branch main",
1035
- "<%= config.bin %> <%= command.id %> --all --remote upstream --merge-strategy no-ff"
1036
- ],
1037
- "flags": {
1038
- "all": {
1039
- "char": "a",
1040
- "description": "Sync all remote branches",
1041
- "name": "all",
1042
- "allowNo": false,
1043
- "type": "boolean"
1044
- },
1045
- "branch": {
1046
- "char": "b",
1047
- "description": "Specific branch(es) to sync (can be used multiple times)",
1048
- "name": "branch",
1049
- "hasDynamicHelp": false,
1050
- "multiple": true,
1051
- "type": "option"
1052
- },
1053
- "domain": {
1054
- "char": "d",
1055
- "description": "Tenant domain (for multi-domain setups)",
1056
- "name": "domain",
1057
- "hasDynamicHelp": false,
1058
- "multiple": false,
1059
- "type": "option"
1060
- },
1061
- "merge-strategy": {
1062
- "char": "m",
1063
- "description": "Git merge strategy",
1064
- "name": "merge-strategy",
1065
- "default": "no-ff",
1066
- "hasDynamicHelp": false,
1067
- "multiple": false,
1068
- "options": [
1069
- "no-ff",
1070
- "--ff-only",
1071
- "--no-ff",
1072
- "--squash"
1073
- ],
1074
- "type": "option"
1075
- },
1076
- "remote": {
1077
- "char": "r",
1078
- "description": "Remote repository name",
1079
- "name": "remote",
1080
- "default": "origin",
1081
- "hasDynamicHelp": false,
1082
- "multiple": false,
1083
- "type": "option"
1084
- },
1085
- "source-branch": {
1086
- "char": "s",
1087
- "description": "Source branch to merge from",
1088
- "name": "source-branch",
1089
- "default": "master",
1090
- "hasDynamicHelp": false,
1091
- "multiple": false,
1092
- "type": "option"
1093
- },
1094
- "verbose": {
1095
- "char": "v",
1096
- "description": "Show detailed progress information",
1097
- "name": "verbose",
1098
- "allowNo": false,
1099
- "type": "boolean"
1100
- }
1101
- },
1102
- "hasDynamicHelp": false,
1103
- "hiddenAliases": [],
1104
- "id": "git:sync",
1105
- "pluginAlias": "@hyperdrive.bot/cli",
1106
- "pluginName": "@hyperdrive.bot/cli",
1107
- "pluginType": "core",
1108
- "strict": true,
1109
- "enableJsonFlag": false,
1110
- "isESM": true,
1111
- "relativePath": [
1112
- "dist",
1113
- "commands",
1114
- "git",
1115
- "sync.js"
1116
- ]
1117
- },
1118
- "jira:connect": {
1119
- "aliases": [],
1120
- "args": {},
1121
- "description": "Register your Jira instance with Hyperdrive (run BEFORE installing the Forge app)",
1122
- "examples": [
1123
- "<%= config.bin %> <%= command.id %>",
1124
- "<%= config.bin %> <%= command.id %> --jira-domain dev-squad.atlassian.net",
1125
- "<%= config.bin %> <%= command.id %> --domain sankhya.hyperdrivebot.dev --jira-domain dev-squad.atlassian.net"
1126
- ],
1127
- "flags": {
1128
- "domain": {
1129
- "char": "d",
1130
- "description": "Tenant domain (for multi-domain setups)",
1131
- "name": "domain",
1132
- "hasDynamicHelp": false,
1133
- "multiple": false,
1134
- "type": "option"
1135
- },
1136
- "jira-domain": {
1137
- "char": "j",
1138
- "description": "Your Jira domain (e.g., dev-squad.atlassian.net)",
1139
- "name": "jira-domain",
1140
- "hasDynamicHelp": false,
1141
- "multiple": false,
1142
- "type": "option"
1143
- }
1144
- },
1145
- "hasDynamicHelp": false,
1146
- "hiddenAliases": [],
1147
- "id": "jira:connect",
1148
- "pluginAlias": "@hyperdrive.bot/cli",
1149
- "pluginName": "@hyperdrive.bot/cli",
1150
- "pluginType": "core",
1151
- "strict": true,
1152
- "enableJsonFlag": false,
1153
- "isESM": true,
1154
- "relativePath": [
1155
- "dist",
1156
- "commands",
1157
- "jira",
1158
- "connect.js"
1159
- ]
1160
- },
1161
- "jira:status": {
1162
- "aliases": [],
1163
- "args": {},
1164
- "description": "Check the status of your Jira integration",
1165
- "examples": [
1166
- "<%= config.bin %> <%= command.id %>"
1167
- ],
1168
- "flags": {
1169
- "domain": {
1170
- "char": "d",
1171
- "description": "Tenant domain (for multi-domain setups)",
1172
- "name": "domain",
1173
- "hasDynamicHelp": false,
1174
- "multiple": false,
1175
- "type": "option"
1176
- }
1177
- },
1178
- "hasDynamicHelp": false,
1179
- "hiddenAliases": [],
1180
- "id": "jira:status",
1181
- "pluginAlias": "@hyperdrive.bot/cli",
1182
- "pluginName": "@hyperdrive.bot/cli",
1183
- "pluginType": "core",
1184
- "strict": true,
1185
- "enableJsonFlag": false,
1186
- "isESM": true,
1187
- "relativePath": [
1188
- "dist",
1189
- "commands",
1190
- "jira",
1191
- "status.js"
1192
- ]
1193
- },
1194
- "module:analyze": {
1195
- "aliases": [],
1196
- "args": {},
1197
- "description": "Analyze a module and generate an optimized Dockerfile using AI",
1198
- "examples": [
1199
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\"",
1200
- "<%= config.bin %> <%= command.id %>",
1201
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --verbose"
1202
- ],
1203
- "flags": {
1204
- "domain": {
1205
- "char": "d",
1206
- "description": "Tenant domain (for multi-domain setups)",
1207
- "name": "domain",
1208
- "hasDynamicHelp": false,
1209
- "multiple": false,
1210
- "type": "option"
1211
- },
1212
- "save": {
1213
- "description": "Save generated Dockerfile to current directory",
1214
- "name": "save",
1215
- "allowNo": false,
1216
- "type": "boolean"
1217
- },
1218
- "slug": {
1219
- "char": "s",
1220
- "description": "Module slug to analyze",
1221
- "name": "slug",
1222
- "required": true,
1223
- "default": "",
1224
- "hasDynamicHelp": false,
1225
- "multiple": false,
1226
- "type": "option"
1227
- },
1228
- "verbose": {
1229
- "char": "v",
1230
- "description": "Show detailed analysis progress and real-time logs",
1231
- "name": "verbose",
1232
- "allowNo": false,
1233
- "type": "boolean"
1234
- },
1235
- "wait": {
1236
- "char": "w",
1237
- "description": "Wait for analysis to complete and show results",
1238
- "name": "wait",
1239
- "allowNo": false,
1240
- "type": "boolean"
1241
- }
1242
- },
1243
- "hasDynamicHelp": false,
1244
- "hiddenAliases": [],
1245
- "id": "module:analyze",
1246
- "pluginAlias": "@hyperdrive.bot/cli",
1247
- "pluginName": "@hyperdrive.bot/cli",
1248
- "pluginType": "core",
1249
- "strict": true,
1250
- "enableJsonFlag": false,
1251
- "isESM": true,
1252
- "relativePath": [
1253
- "dist",
1254
- "commands",
1255
- "module",
1256
- "analyze.js"
1257
- ]
1258
- },
1259
- "module:create": {
1260
- "aliases": [],
1261
- "args": {},
1262
- "description": "Create a new project",
1263
- "examples": [
1264
- "<%= config.bin %> <%= command.id %> --name=\"New Project\" --slug=\"project-slug\"",
1265
- "<%= config.bin %> <%= command.id %> --name=\"API Service\" --framework=\"Serverless Framework\""
1266
- ],
1267
- "flags": {
1268
- "buildCommand": {
1269
- "description": "Build command",
1270
- "name": "buildCommand",
1271
- "hasDynamicHelp": false,
1272
- "multiple": false,
1273
- "type": "option"
1274
- },
1275
- "buildDirectory": {
1276
- "description": "Build output directory (e.g., dist, build, .next) - where compiled artifacts are output",
1277
- "name": "buildDirectory",
1278
- "hasDynamicHelp": false,
1279
- "multiple": false,
1280
- "type": "option"
1281
- },
1282
- "buildFolder": {
1283
- "description": "Build folder",
1284
- "name": "buildFolder",
1285
- "hasDynamicHelp": false,
1286
- "multiple": false,
1287
- "type": "option"
1288
- },
1289
- "buildRuntime": {
1290
- "description": "Build runtime for Dockerfile template selection",
1291
- "name": "buildRuntime",
1292
- "hasDynamicHelp": false,
1293
- "multiple": false,
1294
- "options": [
1295
- "nodejs",
1296
- "python",
1297
- "go",
1298
- "rust",
1299
- "java",
1300
- "dotnet",
1301
- "ruby"
1302
- ],
1303
- "type": "option"
1304
- },
1305
- "buildRuntimeVersion": {
1306
- "description": "Build runtime version (e.g., 20 for Node, 3.12 for Python)",
1307
- "name": "buildRuntimeVersion",
1308
- "hasDynamicHelp": false,
1309
- "multiple": false,
1310
- "type": "option"
1311
- },
1312
- "ciService": {
1313
- "description": "CI service used",
1314
- "name": "ciService",
1315
- "hasDynamicHelp": false,
1316
- "multiple": false,
1317
- "options": [
1318
- "github-actions",
1319
- "gitlab-ci",
1320
- "circle-ci",
1321
- "jenkins"
1322
- ],
1323
- "type": "option"
1324
- },
1325
- "defaultBranch": {
1326
- "description": "Default git branch to branch from (e.g., main, master)",
1327
- "name": "defaultBranch",
1328
- "hasDynamicHelp": false,
1329
- "multiple": false,
1330
- "type": "option"
1331
- },
1332
- "domain": {
1333
- "char": "d",
1334
- "description": "Tenant domain (for multi-domain setups)",
1335
- "name": "domain",
1336
- "hasDynamicHelp": false,
1337
- "multiple": false,
1338
- "type": "option"
1339
- },
1340
- "framework": {
1341
- "description": "Framework used",
1342
- "name": "framework",
1343
- "hasDynamicHelp": false,
1344
- "multiple": false,
1345
- "options": [
1346
- "express",
1347
- "fastify",
1348
- "koa",
1349
- "nextjs",
1350
- "react",
1351
- "vue",
1352
- "angular",
1353
- "svelte",
1354
- "flask",
1355
- "django",
1356
- "fastapi",
1357
- "gin",
1358
- "actix",
1359
- "spring",
1360
- "aspnet",
1361
- "rails",
1362
- "serverless",
1363
- "serverless-express",
1364
- "serverless-nestjs",
1365
- "other"
1366
- ],
1367
- "type": "option"
1368
- },
1369
- "installCommand": {
1370
- "description": "Install command",
1371
- "name": "installCommand",
1372
- "hasDynamicHelp": false,
1373
- "multiple": false,
1374
- "type": "option"
1375
- },
1376
- "name": {
1377
- "description": "Name of the project",
1378
- "name": "name",
1379
- "hasDynamicHelp": false,
1380
- "multiple": false,
1381
- "type": "option"
1382
- },
1383
- "runCommand": {
1384
- "description": "Run command",
1385
- "name": "runCommand",
1386
- "hasDynamicHelp": false,
1387
- "multiple": false,
1388
- "type": "option"
1389
- },
1390
- "runtime": {
1391
- "char": "r",
1392
- "description": "Runtime environment",
1393
- "name": "runtime",
1394
- "hasDynamicHelp": false,
1395
- "multiple": false,
1396
- "options": [
1397
- "nodejs",
1398
- "python",
1399
- "go",
1400
- "rust",
1401
- "java",
1402
- "dotnet",
1403
- "ruby"
1404
- ],
1405
- "type": "option"
1406
- },
1407
- "runtimeVersion": {
1408
- "description": "Runtime version (e.g., 20, 3.12, 1.21)",
1409
- "name": "runtimeVersion",
1410
- "hasDynamicHelp": false,
1411
- "multiple": false,
1412
- "type": "option"
1413
- },
1414
- "slug": {
1415
- "description": "Slug of the project",
1416
- "name": "slug",
1417
- "hasDynamicHelp": false,
1418
- "multiple": false,
1419
- "type": "option"
1420
- },
1421
- "sourceDirectory": {
1422
- "description": "Source code directory (e.g., src, lib, . for root) - default: src for Lambda, . for static",
1423
- "name": "sourceDirectory",
1424
- "hasDynamicHelp": false,
1425
- "multiple": false,
1426
- "type": "option"
1427
- },
1428
- "sourceLocation": {
1429
- "description": "Source location of the project",
1430
- "name": "sourceLocation",
1431
- "hasDynamicHelp": false,
1432
- "multiple": false,
1433
- "type": "option"
1434
- }
1435
- },
1436
- "hasDynamicHelp": false,
1437
- "hiddenAliases": [],
1438
- "id": "module:create",
1439
- "pluginAlias": "@hyperdrive.bot/cli",
1440
- "pluginName": "@hyperdrive.bot/cli",
1441
- "pluginType": "core",
1442
- "strict": true,
1443
- "enableJsonFlag": false,
1444
- "isESM": true,
1445
- "relativePath": [
1446
- "dist",
1447
- "commands",
1448
- "module",
1449
- "create.js"
1450
- ]
1451
- },
1452
- "module:destroy": {
1453
- "aliases": [],
1454
- "args": {},
1455
- "description": "Destroy/delete a module permanently",
1456
- "examples": [
1457
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\"",
1458
- "<%= config.bin %> <%= command.id %> --slug=\"old-project\" --force"
1459
- ],
1460
- "flags": {
1461
- "domain": {
1462
- "char": "d",
1463
- "description": "Tenant domain (for multi-domain setups)",
1464
- "name": "domain",
1465
- "hasDynamicHelp": false,
1466
- "multiple": false,
1467
- "type": "option"
1468
- },
1469
- "force": {
1470
- "char": "f",
1471
- "description": "Skip confirmation prompt (DANGEROUS)",
1472
- "name": "force",
1473
- "allowNo": false,
1474
- "type": "boolean"
1475
- },
1476
- "slug": {
1477
- "char": "s",
1478
- "description": "Module slug to destroy",
1479
- "name": "slug",
1480
- "required": true,
1481
- "default": "",
1482
- "hasDynamicHelp": false,
1483
- "multiple": false,
1484
- "type": "option"
1485
- }
1486
- },
1487
- "hasDynamicHelp": false,
1488
- "hiddenAliases": [],
1489
- "id": "module:destroy",
1490
- "pluginAlias": "@hyperdrive.bot/cli",
1491
- "pluginName": "@hyperdrive.bot/cli",
1492
- "pluginType": "core",
1493
- "strict": true,
1494
- "enableJsonFlag": false,
1495
- "isESM": true,
1496
- "relativePath": [
1497
- "dist",
1498
- "commands",
1499
- "module",
1500
- "destroy.js"
1501
- ]
1502
- },
1503
- "module:get": {
1504
- "aliases": [],
1505
- "args": {},
1506
- "description": "Get details of a specific module/project",
1507
- "examples": [
1508
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\"",
1509
- "<%= config.bin %> <%= command.id %>"
1510
- ],
1511
- "flags": {
1512
- "domain": {
1513
- "char": "d",
1514
- "description": "Tenant domain (for multi-domain setups)",
1515
- "name": "domain",
1516
- "hasDynamicHelp": false,
1517
- "multiple": false,
1518
- "type": "option"
1519
- },
1520
- "slug": {
1521
- "char": "s",
1522
- "description": "Module slug to get details for",
1523
- "name": "slug",
1524
- "required": true,
1525
- "default": "",
1526
- "hasDynamicHelp": false,
1527
- "multiple": false,
1528
- "type": "option"
1529
- }
1530
- },
1531
- "hasDynamicHelp": false,
1532
- "hiddenAliases": [],
1533
- "id": "module:get",
1534
- "pluginAlias": "@hyperdrive.bot/cli",
1535
- "pluginName": "@hyperdrive.bot/cli",
1536
- "pluginType": "core",
1537
- "strict": true,
1538
- "enableJsonFlag": false,
1539
- "isESM": true,
1540
- "relativePath": [
1541
- "dist",
1542
- "commands",
1543
- "module",
1544
- "get.js"
1545
- ]
1546
- },
1547
- "module:link": {
1548
- "aliases": [],
1549
- "args": {},
1550
- "description": "Links two modules using specified environment variables as connectors",
1551
- "examples": [
1552
- "<%= config.bin %> <%= command.id %> --originSlug=\"vixting-integration\" --targetSlug=\"vixting-api\" --parameter=\"VLOW_API_ENDPOINT_PREFIX\""
1553
- ],
1554
- "flags": {
1555
- "domain": {
1556
- "char": "d",
1557
- "description": "Tenant domain (for multi-domain setups)",
1558
- "name": "domain",
1559
- "hasDynamicHelp": false,
1560
- "multiple": false,
1561
- "type": "option"
1562
- },
1563
- "originSlug": {
1564
- "description": "Slug of the origin module (the one that depends on another)",
1565
- "name": "originSlug",
1566
- "required": true,
1567
- "hasDynamicHelp": false,
1568
- "multiple": false,
1569
- "type": "option"
1570
- },
1571
- "parameter": {
1572
- "description": "Environment variable to link (e.g., API_URL)",
1573
- "name": "parameter",
1574
- "required": true,
1575
- "hasDynamicHelp": false,
1576
- "multiple": true,
1577
- "type": "option"
1578
- },
1579
- "targetSlug": {
1580
- "description": "Slug of the target module (the dependency)",
1581
- "name": "targetSlug",
1582
- "required": true,
1583
- "hasDynamicHelp": false,
1584
- "multiple": false,
1585
- "type": "option"
1586
- }
1587
- },
1588
- "hasDynamicHelp": false,
1589
- "hiddenAliases": [],
1590
- "id": "module:link",
1591
- "pluginAlias": "@hyperdrive.bot/cli",
1592
- "pluginName": "@hyperdrive.bot/cli",
1593
- "pluginType": "core",
1594
- "strict": true,
1595
- "enableJsonFlag": false,
1596
- "isESM": true,
1597
- "relativePath": [
1598
- "dist",
1599
- "commands",
1600
- "module",
1601
- "link.js"
1602
- ]
1603
- },
1604
- "module:list": {
1605
- "aliases": [],
1606
- "args": {},
1607
- "description": "List all modules/projects",
1608
- "examples": [
1609
- "<%= config.bin %> <%= command.id %>"
1610
- ],
1611
- "flags": {
1612
- "domain": {
1613
- "char": "d",
1614
- "description": "Tenant domain (for multi-domain setups)",
1615
- "name": "domain",
1616
- "hasDynamicHelp": false,
1617
- "multiple": false,
1618
- "type": "option"
1619
- }
1620
- },
1621
- "hasDynamicHelp": false,
1622
- "hiddenAliases": [],
1623
- "id": "module:list",
1624
- "pluginAlias": "@hyperdrive.bot/cli",
1625
- "pluginName": "@hyperdrive.bot/cli",
1626
- "pluginType": "core",
1627
- "strict": true,
1628
- "enableJsonFlag": false,
1629
- "isESM": true,
1630
- "relativePath": [
1631
- "dist",
1632
- "commands",
1633
- "module",
1634
- "list.js"
1635
- ]
1636
- },
1637
- "module:reanalyze": {
1638
- "aliases": [],
1639
- "args": {},
1640
- "description": "Reanalyze a module's Dockerfile with custom instructions",
1641
- "examples": [
1642
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --prompt=\"Use Node.js 18 instead of 20\"",
1643
- "<%= config.bin %> <%= command.id %> --prompt=\"Fix the build - missing Python dependency\"",
1644
- "<%= config.bin %> <%= command.id %> -s my-module -p \"Exclude source maps from S3 upload\" --verbose"
1645
- ],
1646
- "flags": {
1647
- "domain": {
1648
- "char": "d",
1649
- "description": "Tenant domain (for multi-domain setups)",
1650
- "name": "domain",
1651
- "hasDynamicHelp": false,
1652
- "multiple": false,
1653
- "type": "option"
1654
- },
1655
- "prompt": {
1656
- "char": "p",
1657
- "description": "Custom instructions for Dockerfile regeneration",
1658
- "name": "prompt",
1659
- "required": true,
1660
- "hasDynamicHelp": false,
1661
- "multiple": false,
1662
- "type": "option"
1663
- },
1664
- "save": {
1665
- "description": "Save generated Dockerfile to current directory",
1666
- "name": "save",
1667
- "allowNo": false,
1668
- "type": "boolean"
1669
- },
1670
- "slug": {
1671
- "char": "s",
1672
- "description": "Module slug to reanalyze",
1673
- "name": "slug",
1674
- "required": true,
1675
- "default": "",
1676
- "hasDynamicHelp": false,
1677
- "multiple": false,
1678
- "type": "option"
1679
- },
1680
- "verbose": {
1681
- "char": "v",
1682
- "description": "Show detailed analysis progress and real-time logs",
1683
- "name": "verbose",
1684
- "allowNo": false,
1685
- "type": "boolean"
1686
- },
1687
- "wait": {
1688
- "char": "w",
1689
- "description": "Wait for reanalysis to complete and show results",
1690
- "name": "wait",
1691
- "allowNo": false,
1692
- "type": "boolean"
1693
- }
1694
- },
1695
- "hasDynamicHelp": false,
1696
- "hiddenAliases": [],
1697
- "id": "module:reanalyze",
1698
- "pluginAlias": "@hyperdrive.bot/cli",
1699
- "pluginName": "@hyperdrive.bot/cli",
1700
- "pluginType": "core",
1701
- "strict": true,
1702
- "enableJsonFlag": false,
1703
- "isESM": true,
1704
- "relativePath": [
1705
- "dist",
1706
- "commands",
1707
- "module",
1708
- "reanalyze.js"
1709
- ]
1710
- },
1711
- "module:update": {
1712
- "aliases": [],
1713
- "args": {},
1714
- "description": "Update a module/project configuration",
1715
- "examples": [
1716
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --runtimeVersion=\"12\"",
1717
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --buildCommand=\"npm run build:prod\"",
1718
- "<%= config.bin %> <%= command.id %> --slug=\"my-module\" --name=\"New Name\" --framework=\"React.js\""
1719
- ],
1720
- "flags": {
1721
- "buildCommand": {
1722
- "description": "Build command",
1723
- "name": "buildCommand",
1724
- "hasDynamicHelp": false,
1725
- "multiple": false,
1726
- "type": "option"
1727
- },
1728
- "buildDirectory": {
1729
- "description": "Build output directory (e.g., dist, build, .next) - where compiled artifacts are output",
1730
- "name": "buildDirectory",
1731
- "hasDynamicHelp": false,
1732
- "multiple": false,
1733
- "type": "option"
1734
- },
1735
- "buildFolder": {
1736
- "description": "Build folder",
1737
- "name": "buildFolder",
1738
- "hasDynamicHelp": false,
1739
- "multiple": false,
1740
- "type": "option"
1741
- },
1742
- "buildRuntime": {
1743
- "description": "Build runtime for Dockerfile template selection",
1744
- "name": "buildRuntime",
1745
- "hasDynamicHelp": false,
1746
- "multiple": false,
1747
- "options": [
1748
- "nodejs",
1749
- "python",
1750
- "go",
1751
- "rust",
1752
- "java",
1753
- "dotnet",
1754
- "ruby"
1755
- ],
1756
- "type": "option"
1757
- },
1758
- "buildRuntimeVersion": {
1759
- "description": "Build runtime version (e.g., 20 for Node, 3.12 for Python)",
1760
- "name": "buildRuntimeVersion",
1761
- "hasDynamicHelp": false,
1762
- "multiple": false,
1763
- "type": "option"
1764
- },
1765
- "ciService": {
1766
- "description": "CI service used",
1767
- "name": "ciService",
1768
- "hasDynamicHelp": false,
1769
- "multiple": false,
1770
- "options": [
1771
- "github-actions",
1772
- "gitlab-ci",
1773
- "circle-ci",
1774
- "jenkins"
1775
- ],
1776
- "type": "option"
1777
- },
1778
- "defaultBranch": {
1779
- "description": "Default git branch to branch from (e.g., main, master)",
1780
- "name": "defaultBranch",
1781
- "hasDynamicHelp": false,
1782
- "multiple": false,
1783
- "type": "option"
1784
- },
1785
- "deploymentStrategy": {
1786
- "description": "Deployment strategy: \"serverless\" for Serverless Framework deployment to Lambda",
1787
- "name": "deploymentStrategy",
1788
- "hasDynamicHelp": false,
1789
- "multiple": false,
1790
- "options": [
1791
- "serverless"
1792
- ],
1793
- "type": "option"
1794
- },
1795
- "domain": {
1796
- "char": "d",
1797
- "description": "Tenant domain (for multi-domain setups)",
1798
- "name": "domain",
1799
- "hasDynamicHelp": false,
1800
- "multiple": false,
1801
- "type": "option"
1802
- },
1803
- "framework": {
1804
- "description": "Framework used",
1805
- "name": "framework",
1806
- "hasDynamicHelp": false,
1807
- "multiple": false,
1808
- "options": [
1809
- "express",
1810
- "fastify",
1811
- "koa",
1812
- "nextjs",
1813
- "react",
1814
- "vue",
1815
- "angular",
1816
- "svelte",
1817
- "flask",
1818
- "django",
1819
- "fastapi",
1820
- "gin",
1821
- "actix",
1822
- "spring",
1823
- "aspnet",
1824
- "rails",
1825
- "other"
1826
- ],
1827
- "type": "option"
1828
- },
1829
- "installCommand": {
1830
- "description": "Install command",
1831
- "name": "installCommand",
1832
- "hasDynamicHelp": false,
1833
- "multiple": false,
1834
- "type": "option"
1835
- },
1836
- "name": {
1837
- "description": "Name of the project",
1838
- "name": "name",
1839
- "hasDynamicHelp": false,
1840
- "multiple": false,
1841
- "type": "option"
1842
- },
1843
- "routeDiscovery": {
1844
- "description": "Enable AI-powered route discovery for per-route Lambda functions",
1845
- "name": "routeDiscovery",
1846
- "allowNo": true,
1847
- "type": "boolean"
1848
- },
1849
- "runCommand": {
1850
- "description": "Run command",
1851
- "name": "runCommand",
1852
- "hasDynamicHelp": false,
1853
- "multiple": false,
1854
- "type": "option"
1855
- },
1856
- "runtime": {
1857
- "char": "r",
1858
- "description": "Runtime environment",
1859
- "name": "runtime",
1860
- "hasDynamicHelp": false,
1861
- "multiple": false,
1862
- "options": [
1863
- "nodejs",
1864
- "python",
1865
- "go",
1866
- "rust",
1867
- "java",
1868
- "dotnet",
1869
- "ruby"
1870
- ],
1871
- "type": "option"
1872
- },
1873
- "runtimeVersion": {
1874
- "char": "v",
1875
- "description": "Runtime version (e.g., 20, 3.12, 1.21)",
1876
- "name": "runtimeVersion",
1877
- "hasDynamicHelp": false,
1878
- "multiple": false,
1879
- "type": "option"
1880
- },
1881
- "slug": {
1882
- "char": "s",
1883
- "description": "Module slug to update (required)",
1884
- "name": "slug",
1885
- "required": true,
1886
- "hasDynamicHelp": false,
1887
- "multiple": false,
1888
- "type": "option"
1889
- },
1890
- "sourceDirectory": {
1891
- "description": "Source code directory (e.g., src, lib, . for root) - default: src for Lambda, . for static",
1892
- "name": "sourceDirectory",
1893
- "hasDynamicHelp": false,
1894
- "multiple": false,
1895
- "type": "option"
1896
- },
1897
- "sourceLocation": {
1898
- "description": "Source location of the project",
1899
- "name": "sourceLocation",
1900
- "hasDynamicHelp": false,
1901
- "multiple": false,
1902
- "type": "option"
1903
- }
1904
- },
1905
- "hasDynamicHelp": false,
1906
- "hiddenAliases": [],
1907
- "id": "module:update",
1908
- "pluginAlias": "@hyperdrive.bot/cli",
1909
- "pluginName": "@hyperdrive.bot/cli",
1910
- "pluginType": "core",
1911
- "strict": true,
1912
- "enableJsonFlag": false,
1913
- "isESM": true,
1914
- "relativePath": [
1915
- "dist",
1916
- "commands",
1917
- "module",
1918
- "update.js"
1919
- ]
1920
- },
1921
- "parameter:add": {
1922
- "aliases": [],
1923
- "args": {},
1924
- "description": "Add a new parameter to SSM Parameter Store",
1925
- "examples": [
1926
- "<%= config.bin %> <%= command.id %> --key=\"API_URL\" --value=\"https://api.example.com\" --stage=\"dev\"",
1927
- "<%= config.bin %> <%= command.id %> --key=\"DB_HOST\" --value=\"localhost\" --specific",
1928
- "<%= config.bin %> <%= command.id %> --key=\"PORT\" --value=\"3000\""
1929
- ],
1930
- "flags": {
1931
- "accountId": {
1932
- "description": "AWS Account ID",
1933
- "env": "AWS_ACCOUNT_ID",
1934
- "name": "accountId",
1935
- "required": true,
1936
- "hasDynamicHelp": false,
1937
- "multiple": false,
1938
- "type": "option"
1939
- },
1940
- "domain": {
1941
- "char": "d",
1942
- "description": "Tenant domain (for multi-domain setups)",
1943
- "name": "domain",
1944
- "hasDynamicHelp": false,
1945
- "multiple": false,
1946
- "type": "option"
1947
- },
1948
- "key": {
1949
- "char": "k",
1950
- "description": "Parameter key/name",
1951
- "name": "key",
1952
- "required": true,
1953
- "hasDynamicHelp": false,
1954
- "multiple": false,
1955
- "type": "option"
1956
- },
1957
- "moduleSlug": {
1958
- "char": "m",
1959
- "description": "Module slug",
1960
- "name": "moduleSlug",
1961
- "required": true,
1962
- "default": "",
1963
- "hasDynamicHelp": false,
1964
- "multiple": false,
1965
- "type": "option"
1966
- },
1967
- "specific": {
1968
- "description": "Make parameter specific to this project (default: global)",
1969
- "name": "specific",
1970
- "allowNo": false,
1971
- "type": "boolean"
1972
- },
1973
- "stage": {
1974
- "char": "s",
1975
- "description": "Stage for the parameter (default: all stages)",
1976
- "name": "stage",
1977
- "default": "all",
1978
- "hasDynamicHelp": false,
1979
- "multiple": false,
1980
- "type": "option"
1981
- },
1982
- "value": {
1983
- "char": "v",
1984
- "description": "Parameter value",
1985
- "name": "value",
1986
- "required": true,
1987
- "hasDynamicHelp": false,
1988
- "multiple": false,
1989
- "type": "option"
1990
- }
1991
- },
1992
- "hasDynamicHelp": false,
1993
- "hiddenAliases": [],
1994
- "id": "parameter:add",
1995
- "pluginAlias": "@hyperdrive.bot/cli",
1996
- "pluginName": "@hyperdrive.bot/cli",
1997
- "pluginType": "core",
1998
- "strict": true,
1999
- "enableJsonFlag": false,
2000
- "isESM": true,
2001
- "relativePath": [
2002
- "dist",
2003
- "commands",
2004
- "parameter",
2005
- "add.js"
2006
- ]
2007
- },
2008
- "parameter:backfill": {
2009
- "aliases": [],
2010
- "args": {},
2011
- "description": "Backfill existing SSM parameters to DynamoDB (one-time migration)",
2012
- "examples": [
2013
- "<%= config.bin %> <%= command.id %> --accountId=\"123456789012\" --dry-run",
2014
- "<%= config.bin %> <%= command.id %> --accountId=\"123456789012\""
2015
- ],
2016
- "flags": {
2017
- "accountId": {
2018
- "description": "AWS Account ID to backfill from",
2019
- "env": "AWS_ACCOUNT_ID",
2020
- "name": "accountId",
2021
- "required": true,
2022
- "hasDynamicHelp": false,
2023
- "multiple": false,
2024
- "type": "option"
2025
- },
2026
- "domain": {
2027
- "char": "d",
2028
- "description": "Tenant domain (for multi-domain setups)",
2029
- "name": "domain",
2030
- "hasDynamicHelp": false,
2031
- "multiple": false,
2032
- "type": "option"
2033
- },
2034
- "dry-run": {
2035
- "description": "Preview what would be imported without making changes (default: true)",
2036
- "name": "dry-run",
2037
- "allowNo": false,
2038
- "type": "boolean"
2039
- },
2040
- "no-dry-run": {
2041
- "description": "Actually perform the backfill (writes to DynamoDB)",
2042
- "name": "no-dry-run",
2043
- "allowNo": false,
2044
- "type": "boolean"
2045
- }
2046
- },
2047
- "hasDynamicHelp": false,
2048
- "hiddenAliases": [],
2049
- "id": "parameter:backfill",
2050
- "pluginAlias": "@hyperdrive.bot/cli",
2051
- "pluginName": "@hyperdrive.bot/cli",
2052
- "pluginType": "core",
2053
- "strict": true,
2054
- "enableJsonFlag": false,
2055
- "isESM": true,
2056
- "relativePath": [
2057
- "dist",
2058
- "commands",
2059
- "parameter",
2060
- "backfill.js"
2061
- ]
2062
- },
2063
- "parameter:clear": {
2064
- "aliases": [],
2065
- "args": {},
2066
- "description": "Clear all parameters for a project and stage (DANGEROUS)",
2067
- "examples": [
2068
- "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2069
- "<%= config.bin %> <%= command.id %> --stage=\"prod\" --specific --force"
2070
- ],
2071
- "flags": {
2072
- "accountId": {
2073
- "description": "AWS Account ID",
2074
- "env": "AWS_ACCOUNT_ID",
2075
- "name": "accountId",
2076
- "required": true,
2077
- "hasDynamicHelp": false,
2078
- "multiple": false,
2079
- "type": "option"
2080
- },
2081
- "domain": {
2082
- "char": "d",
2083
- "description": "Tenant domain (for multi-domain setups)",
2084
- "name": "domain",
2085
- "hasDynamicHelp": false,
2086
- "multiple": false,
2087
- "type": "option"
2088
- },
2089
- "force": {
2090
- "char": "f",
2091
- "description": "Skip confirmation prompt (DANGEROUS)",
2092
- "name": "force",
2093
- "allowNo": false,
2094
- "type": "boolean"
2095
- },
2096
- "moduleSlug": {
2097
- "char": "m",
2098
- "description": "Module slug",
2099
- "name": "moduleSlug",
2100
- "required": true,
2101
- "default": "",
2102
- "hasDynamicHelp": false,
2103
- "multiple": false,
2104
- "type": "option"
2105
- },
2106
- "specific": {
2107
- "description": "Clear only project-specific parameters (default: global)",
2108
- "name": "specific",
2109
- "allowNo": false,
2110
- "type": "boolean"
2111
- },
2112
- "stage": {
2113
- "char": "s",
2114
- "description": "Stage to clear parameters for",
2115
- "name": "stage",
2116
- "default": "all",
2117
- "hasDynamicHelp": false,
2118
- "multiple": false,
2119
- "type": "option"
2120
- }
2121
- },
2122
- "hasDynamicHelp": false,
2123
- "hiddenAliases": [],
2124
- "id": "parameter:clear",
2125
- "pluginAlias": "@hyperdrive.bot/cli",
2126
- "pluginName": "@hyperdrive.bot/cli",
2127
- "pluginType": "core",
2128
- "strict": true,
2129
- "enableJsonFlag": false,
2130
- "isESM": true,
2131
- "relativePath": [
2132
- "dist",
2133
- "commands",
2134
- "parameter",
2135
- "clear.js"
2136
- ]
2137
- },
2138
- "parameter:list": {
2139
- "aliases": [],
2140
- "args": {},
2141
- "description": "List all parameters for a project and stage",
2142
- "examples": [
2143
- "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2144
- "<%= config.bin %> <%= command.id %> --stage=\"prod\" --specific",
2145
- "<%= config.bin %> <%= command.id %> --all-stages"
2146
- ],
2147
- "flags": {
2148
- "accountId": {
2149
- "description": "AWS Account ID",
2150
- "env": "AWS_ACCOUNT_ID",
2151
- "name": "accountId",
2152
- "required": true,
2153
- "hasDynamicHelp": false,
2154
- "multiple": false,
2155
- "type": "option"
2156
- },
2157
- "all-stages": {
2158
- "description": "List parameters from all stages",
2159
- "name": "all-stages",
2160
- "allowNo": false,
2161
- "type": "boolean"
2162
- },
2163
- "domain": {
2164
- "char": "d",
2165
- "description": "Tenant domain (for multi-domain setups)",
2166
- "name": "domain",
2167
- "hasDynamicHelp": false,
2168
- "multiple": false,
2169
- "type": "option"
2170
- },
2171
- "moduleSlug": {
2172
- "char": "m",
2173
- "description": "Module slug",
2174
- "name": "moduleSlug",
2175
- "required": true,
2176
- "default": "",
2177
- "hasDynamicHelp": false,
2178
- "multiple": false,
2179
- "type": "option"
2180
- },
2181
- "specific": {
2182
- "description": "List only project-specific parameters",
2183
- "name": "specific",
2184
- "allowNo": false,
2185
- "type": "boolean"
2186
- },
2187
- "stage": {
2188
- "char": "s",
2189
- "description": "Stage to list parameters for",
2190
- "name": "stage",
2191
- "default": "all",
2192
- "hasDynamicHelp": false,
2193
- "multiple": false,
2194
- "type": "option"
2195
- }
2196
- },
2197
- "hasDynamicHelp": false,
2198
- "hiddenAliases": [],
2199
- "id": "parameter:list",
2200
- "pluginAlias": "@hyperdrive.bot/cli",
2201
- "pluginName": "@hyperdrive.bot/cli",
2202
- "pluginType": "core",
2203
- "strict": true,
2204
- "enableJsonFlag": false,
2205
- "isESM": true,
2206
- "relativePath": [
2207
- "dist",
2208
- "commands",
2209
- "parameter",
2210
- "list.js"
2211
- ]
2212
- },
2213
- "parameter:pull": {
2214
- "aliases": [],
2215
- "args": {},
2216
- "description": "Pull parameters from SSM Parameter Store to a .env file",
2217
- "examples": [
2218
- "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2219
- "<%= config.bin %> <%= command.id %> --stage=\"prod\" --file=\".env.prod\"",
2220
- "<%= config.bin %> <%= command.id %> --stage=\"dev\" --no-backup"
2221
- ],
2222
- "flags": {
2223
- "accountId": {
2224
- "description": "AWS Account ID",
2225
- "env": "AWS_ACCOUNT_ID",
2226
- "name": "accountId",
2227
- "required": true,
2228
- "hasDynamicHelp": false,
2229
- "multiple": false,
2230
- "type": "option"
2231
- },
2232
- "backup": {
2233
- "description": "Create .env.backup before overwriting (default: true)",
2234
- "name": "backup",
2235
- "allowNo": true,
2236
- "type": "boolean"
2237
- },
2238
- "domain": {
2239
- "char": "d",
2240
- "description": "Tenant domain (for multi-domain setups)",
2241
- "name": "domain",
2242
- "hasDynamicHelp": false,
2243
- "multiple": false,
2244
- "type": "option"
2245
- },
2246
- "file": {
2247
- "char": "f",
2248
- "description": "Output file path",
2249
- "name": "file",
2250
- "default": ".env",
2251
- "hasDynamicHelp": false,
2252
- "multiple": false,
2253
- "type": "option"
2254
- },
2255
- "moduleSlug": {
2256
- "char": "m",
2257
- "description": "Module slug",
2258
- "name": "moduleSlug",
2259
- "required": true,
2260
- "default": "",
2261
- "hasDynamicHelp": false,
2262
- "multiple": false,
2263
- "type": "option"
2264
- },
2265
- "stage": {
2266
- "char": "s",
2267
- "description": "Stage to pull parameters from",
2268
- "name": "stage",
2269
- "required": true,
2270
- "hasDynamicHelp": false,
2271
- "multiple": false,
2272
- "type": "option"
2273
- }
2274
- },
2275
- "hasDynamicHelp": false,
2276
- "hiddenAliases": [],
2277
- "id": "parameter:pull",
2278
- "pluginAlias": "@hyperdrive.bot/cli",
2279
- "pluginName": "@hyperdrive.bot/cli",
2280
- "pluginType": "core",
2281
- "strict": true,
2282
- "enableJsonFlag": false,
2283
- "isESM": true,
2284
- "relativePath": [
2285
- "dist",
2286
- "commands",
2287
- "parameter",
2288
- "pull.js"
2289
- ]
2290
- },
2291
- "parameter:remove": {
2292
- "aliases": [],
2293
- "args": {},
2294
- "description": "Remove a parameter from SSM Parameter Store",
2295
- "examples": [
2296
- "<%= config.bin %> <%= command.id %> --key=\"API_URL\" --stage=\"dev\"",
2297
- "<%= config.bin %> <%= command.id %> --key=\"DB_HOST\" --specific --stage=\"prod\"",
2298
- "<%= config.bin %> <%= command.id %> --key=\"PORT\" --force"
2299
- ],
2300
- "flags": {
2301
- "accountId": {
2302
- "description": "AWS Account ID",
2303
- "env": "AWS_ACCOUNT_ID",
2304
- "name": "accountId",
2305
- "required": true,
2306
- "hasDynamicHelp": false,
2307
- "multiple": false,
2308
- "type": "option"
2309
- },
2310
- "domain": {
2311
- "char": "d",
2312
- "description": "Tenant domain (for multi-domain setups)",
2313
- "name": "domain",
2314
- "hasDynamicHelp": false,
2315
- "multiple": false,
2316
- "type": "option"
2317
- },
2318
- "force": {
2319
- "char": "f",
2320
- "description": "Skip confirmation prompt",
2321
- "name": "force",
2322
- "allowNo": false,
2323
- "type": "boolean"
2324
- },
2325
- "key": {
2326
- "char": "k",
2327
- "description": "Parameter key/name to remove",
2328
- "name": "key",
2329
- "required": true,
2330
- "hasDynamicHelp": false,
2331
- "multiple": false,
2332
- "type": "option"
2333
- },
2334
- "moduleSlug": {
2335
- "char": "m",
2336
- "description": "Module slug",
2337
- "name": "moduleSlug",
2338
- "required": true,
2339
- "default": "",
2340
- "hasDynamicHelp": false,
2341
- "multiple": false,
2342
- "type": "option"
2343
- },
2344
- "specific": {
2345
- "description": "Remove from project-specific parameters (default: global)",
2346
- "name": "specific",
2347
- "allowNo": false,
2348
- "type": "boolean"
2349
- },
2350
- "stage": {
2351
- "char": "s",
2352
- "description": "Stage for the parameter (default: all stages)",
2353
- "name": "stage",
2354
- "default": "all",
2355
- "hasDynamicHelp": false,
2356
- "multiple": false,
2357
- "type": "option"
2358
- }
2359
- },
2360
- "hasDynamicHelp": false,
2361
- "hiddenAliases": [],
2362
- "id": "parameter:remove",
2363
- "pluginAlias": "@hyperdrive.bot/cli",
2364
- "pluginName": "@hyperdrive.bot/cli",
2365
- "pluginType": "core",
2366
- "strict": true,
2367
- "enableJsonFlag": false,
2368
- "isESM": true,
2369
- "relativePath": [
2370
- "dist",
2371
- "commands",
2372
- "parameter",
2373
- "remove.js"
2374
- ]
2375
- },
2376
- "parameter:sync": {
2377
- "aliases": [],
2378
- "args": {},
2379
- "description": "Synchronize environment variables from a .env file to Hyperdrive",
2380
- "examples": [
2381
- "<%= config.bin %> <%= command.id %> --stage=\"dev\"",
2382
- "<%= config.bin %> <%= command.id %> --file=\".env.production\" --stage=\"prod\"",
2383
- "<%= config.bin %> <%= command.id %> --no-specific --stage=\"all\""
2384
- ],
2385
- "flags": {
2386
- "accountId": {
2387
- "description": "AWS Account ID",
2388
- "env": "AWS_ACCOUNT_ID",
2389
- "name": "accountId",
2390
- "required": true,
2391
- "hasDynamicHelp": false,
2392
- "multiple": false,
2393
- "type": "option"
2394
- },
2395
- "domain": {
2396
- "char": "d",
2397
- "description": "Tenant domain (for multi-domain setups)",
2398
- "name": "domain",
2399
- "hasDynamicHelp": false,
2400
- "multiple": false,
2401
- "type": "option"
2402
- },
2403
- "file": {
2404
- "char": "f",
2405
- "description": "Path to the .env file",
2406
- "name": "file",
2407
- "default": ".env",
2408
- "hasDynamicHelp": false,
2409
- "multiple": false,
2410
- "type": "option"
2411
- },
2412
- "moduleSlug": {
2413
- "char": "m",
2414
- "description": "Module slug",
2415
- "name": "moduleSlug",
2416
- "required": true,
2417
- "default": "",
2418
- "hasDynamicHelp": false,
2419
- "multiple": false,
2420
- "type": "option"
2421
- },
2422
- "specific": {
2423
- "char": "s",
2424
- "description": "Whether the env vars are project-specific (default: true)",
2425
- "name": "specific",
2426
- "allowNo": true,
2427
- "type": "boolean"
2428
- },
2429
- "stage": {
2430
- "char": "t",
2431
- "description": "Stage for the env vars (default: all stages)",
2432
- "name": "stage",
2433
- "default": "all",
2434
- "hasDynamicHelp": false,
2435
- "multiple": false,
2436
- "type": "option"
2437
- }
2438
- },
2439
- "hasDynamicHelp": false,
2440
- "hiddenAliases": [],
2441
- "id": "parameter:sync",
2442
- "pluginAlias": "@hyperdrive.bot/cli",
2443
- "pluginName": "@hyperdrive.bot/cli",
2444
- "pluginType": "core",
2445
- "strict": true,
2446
- "enableJsonFlag": false,
2447
- "isESM": true,
2448
- "relativePath": [
2449
- "dist",
2450
- "commands",
2451
- "parameter",
2452
- "sync.js"
2453
- ]
2454
- },
2455
- "parameter:update": {
2456
- "aliases": [],
2457
- "args": {},
2458
- "description": "Update an existing parameter in SSM Parameter Store",
2459
- "examples": [
2460
- "<%= config.bin %> <%= command.id %> --key=\"API_URL\" --value=\"https://new-api.example.com\" --stage=\"dev\"",
2461
- "<%= config.bin %> <%= command.id %> --key=\"DB_HOST\" --value=\"new-host\" --specific"
2462
- ],
2463
- "flags": {
2464
- "accountId": {
2465
- "description": "AWS Account ID",
2466
- "env": "AWS_ACCOUNT_ID",
2467
- "name": "accountId",
2468
- "required": true,
2469
- "hasDynamicHelp": false,
2470
- "multiple": false,
2471
- "type": "option"
2472
- },
2473
- "domain": {
2474
- "char": "d",
2475
- "description": "Tenant domain (for multi-domain setups)",
2476
- "name": "domain",
2477
- "hasDynamicHelp": false,
2478
- "multiple": false,
2479
- "type": "option"
2480
- },
2481
- "key": {
2482
- "char": "k",
2483
- "description": "Parameter key/name to update",
2484
- "name": "key",
2485
- "required": true,
2486
- "hasDynamicHelp": false,
2487
- "multiple": false,
2488
- "type": "option"
2489
- },
2490
- "moduleSlug": {
2491
- "char": "m",
2492
- "description": "Module slug",
2493
- "name": "moduleSlug",
2494
- "required": true,
2495
- "default": "",
2496
- "hasDynamicHelp": false,
2497
- "multiple": false,
2498
- "type": "option"
2499
- },
2500
- "specific": {
2501
- "description": "Update project-specific parameter (default: global)",
2502
- "name": "specific",
2503
- "allowNo": false,
2504
- "type": "boolean"
2505
- },
2506
- "stage": {
2507
- "char": "s",
2508
- "description": "Stage for the parameter (default: all stages)",
2509
- "name": "stage",
2510
- "default": "all",
2511
- "hasDynamicHelp": false,
2512
- "multiple": false,
2513
- "type": "option"
2514
- },
2515
- "value": {
2516
- "char": "v",
2517
- "description": "New parameter value",
2518
- "name": "value",
2519
- "required": true,
2520
- "hasDynamicHelp": false,
2521
- "multiple": false,
2522
- "type": "option"
2523
- }
2524
- },
2525
- "hasDynamicHelp": false,
2526
- "hiddenAliases": [],
2527
- "id": "parameter:update",
2528
- "pluginAlias": "@hyperdrive.bot/cli",
2529
- "pluginName": "@hyperdrive.bot/cli",
2530
- "pluginType": "core",
2531
- "strict": true,
2532
- "enableJsonFlag": false,
2533
- "isESM": true,
2534
- "relativePath": [
2535
- "dist",
2536
- "commands",
2537
- "parameter",
2538
- "update.js"
2539
- ]
2540
- },
2541
- "project:init": {
2542
- "aliases": [],
2543
- "args": {},
2544
- "description": "Initialize a project with Jira integration, repos, and status mapping",
2545
- "examples": [
2546
- "<%= config.bin %> project init",
2547
- "<%= config.bin %> project init --project my-project --jira-key PROJ",
2548
- "<%= config.bin %> project init --json --name \"My Project\" --jira-key PROJ"
2549
- ],
2550
- "flags": {
2551
- "domain": {
2552
- "char": "d",
2553
- "description": "Tenant domain (for multi-domain setups)",
2554
- "name": "domain",
2555
- "hasDynamicHelp": false,
2556
- "multiple": false,
2557
- "type": "option"
2558
- },
2559
- "jira-key": {
2560
- "description": "Jira project key (e.g., PROJ)",
2561
- "name": "jira-key",
2562
- "hasDynamicHelp": false,
2563
- "multiple": false,
2564
- "type": "option"
2565
- },
2566
- "json": {
2567
- "description": "Output result as JSON (non-interactive mode)",
2568
- "name": "json",
2569
- "allowNo": false,
2570
- "type": "boolean"
2571
- },
2572
- "name": {
2573
- "description": "Name for a new project (used with --json)",
2574
- "name": "name",
2575
- "hasDynamicHelp": false,
2576
- "multiple": false,
2577
- "type": "option"
2578
- },
2579
- "project": {
2580
- "description": "Existing project slug to configure",
2581
- "name": "project",
2582
- "hasDynamicHelp": false,
2583
- "multiple": false,
2584
- "type": "option"
2585
- },
2586
- "repo": {
2587
- "description": "Repo in format \"name|gitRemote|provider|branch\" (repeatable, used with --json)",
2588
- "name": "repo",
2589
- "hasDynamicHelp": false,
2590
- "multiple": true,
2591
- "type": "option"
2592
- },
2593
- "status-map": {
2594
- "description": "Status mapping in format \"JiraStatus=normalizedState\" (repeatable, used with --json)",
2595
- "name": "status-map",
2596
- "hasDynamicHelp": false,
2597
- "multiple": true,
2598
- "type": "option"
2599
- }
2600
- },
2601
- "hasDynamicHelp": false,
2602
- "hiddenAliases": [],
2603
- "id": "project:init",
2604
- "pluginAlias": "@hyperdrive.bot/cli",
2605
- "pluginName": "@hyperdrive.bot/cli",
2606
- "pluginType": "core",
2607
- "strict": true,
2608
- "enableJsonFlag": false,
2609
- "isESM": true,
2610
- "relativePath": [
2611
- "dist",
2612
- "commands",
2613
- "project",
2614
- "init.js"
2615
- ]
2616
- },
2617
- "project:list": {
2618
- "aliases": [],
2619
- "args": {},
2620
- "description": "List all projects with Jira configuration status",
2621
- "examples": [
2622
- "<%= config.bin %> <%= command.id %>",
2623
- "<%= config.bin %> <%= command.id %> --json",
2624
- "<%= config.bin %> <%= command.id %> --domain custom.hyperdrive.bot"
2625
- ],
2626
- "flags": {
2627
- "domain": {
2628
- "char": "d",
2629
- "description": "Tenant domain (for multi-domain setups)",
2630
- "name": "domain",
2631
- "hasDynamicHelp": false,
2632
- "multiple": false,
2633
- "type": "option"
2634
- },
2635
- "json": {
2636
- "description": "Output as JSON",
2637
- "name": "json",
2638
- "allowNo": false,
2639
- "type": "boolean"
2640
- }
2641
- },
2642
- "hasDynamicHelp": false,
2643
- "hiddenAliases": [],
2644
- "id": "project:list",
2645
- "pluginAlias": "@hyperdrive.bot/cli",
2646
- "pluginName": "@hyperdrive.bot/cli",
2647
- "pluginType": "core",
2648
- "strict": true,
2649
- "enableJsonFlag": false,
2650
- "isESM": true,
2651
- "relativePath": [
2652
- "dist",
2653
- "commands",
2654
- "project",
2655
- "list.js"
2656
- ]
2657
- },
2658
- "project:status": {
2659
- "aliases": [],
2660
- "args": {
2661
- "project": {
2662
- "description": "Project slug",
2663
- "name": "project",
2664
- "required": true
2665
- }
2666
- },
2667
- "description": "Show detailed status of a project including Jira config, repos, and hooks",
2668
- "examples": [
2669
- "<%= config.bin %> <%= command.id %> my-project",
2670
- "<%= config.bin %> <%= command.id %> my-project --json",
2671
- "<%= config.bin %> <%= command.id %> my-project --domain custom.hyperdrive.bot"
2672
- ],
2673
- "flags": {
2674
- "domain": {
2675
- "char": "d",
2676
- "description": "Tenant domain (for multi-domain setups)",
2677
- "name": "domain",
2678
- "hasDynamicHelp": false,
2679
- "multiple": false,
2680
- "type": "option"
2681
- },
2682
- "json": {
2683
- "description": "Output as JSON",
2684
- "name": "json",
2685
- "allowNo": false,
2686
- "type": "boolean"
2687
- }
2688
- },
2689
- "hasDynamicHelp": false,
2690
- "hiddenAliases": [],
2691
- "id": "project:status",
2692
- "pluginAlias": "@hyperdrive.bot/cli",
2693
- "pluginName": "@hyperdrive.bot/cli",
2694
- "pluginType": "core",
2695
- "strict": true,
2696
- "enableJsonFlag": false,
2697
- "isESM": true,
2698
- "relativePath": [
2699
- "dist",
2700
- "commands",
2701
- "project",
2702
- "status.js"
2703
- ]
2704
- },
2705
- "project:sync": {
2706
- "aliases": [],
2707
- "args": {
2708
- "project": {
2709
- "description": "Project slug or ID",
2710
- "name": "project",
2711
- "required": true
2712
- }
2713
- },
2714
- "description": "Generate architecture summaries for project repos via Claude analysis",
2715
- "examples": [
2716
- "<%= config.bin %> project sync my-project",
2717
- "<%= config.bin %> project sync my-project --repo api",
2718
- "<%= config.bin %> project sync my-project --json"
2719
- ],
2720
- "flags": {
2721
- "domain": {
2722
- "char": "d",
2723
- "description": "Tenant domain (for multi-domain setups)",
2724
- "name": "domain",
2725
- "hasDynamicHelp": false,
2726
- "multiple": false,
2727
- "type": "option"
2728
- },
2729
- "json": {
2730
- "description": "Output result as JSON",
2731
- "name": "json",
2732
- "allowNo": false,
2733
- "type": "boolean"
2734
- },
2735
- "repo": {
2736
- "description": "Sync only a specific repo by name",
2737
- "name": "repo",
2738
- "hasDynamicHelp": false,
2739
- "multiple": false,
2740
- "type": "option"
2741
- }
2742
- },
2743
- "hasDynamicHelp": false,
2744
- "hiddenAliases": [],
2745
- "id": "project:sync",
2746
- "pluginAlias": "@hyperdrive.bot/cli",
2747
- "pluginName": "@hyperdrive.bot/cli",
2748
- "pluginType": "core",
2749
- "strict": true,
2750
- "enableJsonFlag": false,
2751
- "isESM": true,
2752
- "relativePath": [
2753
- "dist",
2754
- "commands",
2755
- "project",
2756
- "sync.js"
2757
- ]
2758
- },
2759
- "stage:access": {
2760
- "aliases": [],
2761
- "args": {
2762
- "stage": {
2763
- "description": "Stage name to view access for",
2764
- "name": "stage",
2765
- "required": false
2766
- }
2767
- },
2768
- "description": "View who has access to a stage",
2769
- "examples": [
2770
- "<%= config.bin %> <%= command.id %>",
2771
- "<%= config.bin %> <%= command.id %> develop",
2772
- "<%= config.bin %> <%= command.id %> develop --format json"
2773
- ],
2774
- "flags": {
2775
- "domain": {
2776
- "char": "d",
2777
- "description": "Tenant domain (for multi-domain setups)",
2778
- "name": "domain",
2779
- "hasDynamicHelp": false,
2780
- "multiple": false,
2781
- "type": "option"
2782
- },
2783
- "format": {
2784
- "char": "f",
2785
- "description": "Output format",
2786
- "name": "format",
2787
- "default": "table",
2788
- "hasDynamicHelp": false,
2789
- "multiple": false,
2790
- "options": [
2791
- "table",
2792
- "json"
2793
- ],
2794
- "type": "option"
2795
- }
2796
- },
2797
- "hasDynamicHelp": false,
2798
- "hiddenAliases": [],
2799
- "id": "stage:access",
2800
- "pluginAlias": "@hyperdrive.bot/cli",
2801
- "pluginName": "@hyperdrive.bot/cli",
2802
- "pluginType": "core",
2803
- "strict": true,
2804
- "enableJsonFlag": false,
2805
- "isESM": true,
2806
- "relativePath": [
2807
- "dist",
2808
- "commands",
2809
- "stage",
2810
- "access.js"
2811
- ]
2812
- },
2813
- "stage:create": {
2814
- "aliases": [],
2815
- "args": {},
2816
- "description": "Create a new stage",
2817
- "flags": {
2818
- "accountId": {
2819
- "char": "a",
2820
- "description": "AWS Account ID for deployments",
2821
- "name": "accountId",
2822
- "hasDynamicHelp": false,
2823
- "multiple": false,
2824
- "type": "option"
2825
- },
2826
- "autoLaunch": {
2827
- "description": "Automatically launch deployments for this stage",
2828
- "name": "autoLaunch",
2829
- "allowNo": false,
2830
- "type": "boolean"
2831
- },
2832
- "branchName": {
2833
- "char": "b",
2834
- "description": "Git branch name",
2835
- "name": "branchName",
2836
- "hasDynamicHelp": false,
2837
- "multiple": false,
2838
- "type": "option"
2839
- },
2840
- "defaultStage": {
2841
- "description": "Set as default stage for fallback",
2842
- "name": "defaultStage",
2843
- "allowNo": false,
2844
- "type": "boolean"
2845
- },
2846
- "deletionProtection": {
2847
- "description": "Enable deletion protection",
2848
- "name": "deletionProtection",
2849
- "allowNo": false,
2850
- "type": "boolean"
2851
- },
2852
- "domain": {
2853
- "char": "d",
2854
- "description": "Tenant domain (for multi-domain setups)",
2855
- "name": "domain",
2856
- "hasDynamicHelp": false,
2857
- "multiple": false,
2858
- "type": "option"
2859
- },
2860
- "name": {
2861
- "char": "n",
2862
- "description": "Name of the stage (e.g., dev, staging, production)",
2863
- "name": "name",
2864
- "hasDynamicHelp": false,
2865
- "multiple": false,
2866
- "type": "option"
2867
- },
2868
- "production": {
2869
- "description": "Mark as production stage",
2870
- "name": "production",
2871
- "allowNo": false,
2872
- "type": "boolean"
2873
- },
2874
- "project": {
2875
- "char": "p",
2876
- "description": "Project slugs to associate with this stage",
2877
- "name": "project",
2878
- "hasDynamicHelp": false,
2879
- "multiple": true,
2880
- "type": "option"
2881
- },
2882
- "provider": {
2883
- "description": "Cloud provider",
2884
- "name": "provider",
2885
- "default": "aws",
2886
- "hasDynamicHelp": false,
2887
- "multiple": false,
2888
- "type": "option"
2889
- },
2890
- "region": {
2891
- "char": "r",
2892
- "description": "AWS region(s) for deployment",
2893
- "name": "region",
2894
- "hasDynamicHelp": false,
2895
- "multiple": true,
2896
- "type": "option"
2897
- }
2898
- },
2899
- "hasDynamicHelp": false,
2900
- "hiddenAliases": [],
2901
- "id": "stage:create",
2902
- "pluginAlias": "@hyperdrive.bot/cli",
2903
- "pluginName": "@hyperdrive.bot/cli",
2904
- "pluginType": "core",
2905
- "strict": true,
2906
- "enableJsonFlag": false,
2907
- "isESM": true,
2908
- "relativePath": [
2909
- "dist",
2910
- "commands",
2911
- "stage",
2912
- "create.js"
2913
- ]
2914
- },
2915
- "stage:list": {
2916
- "aliases": [],
2917
- "args": {},
2918
- "description": "List all stages",
2919
- "examples": [
2920
- "<%= config.bin %> <%= command.id %>"
2921
- ],
2922
- "flags": {
2923
- "domain": {
2924
- "char": "d",
2925
- "description": "Tenant domain (for multi-domain setups)",
2926
- "name": "domain",
2927
- "hasDynamicHelp": false,
2928
- "multiple": false,
2929
- "type": "option"
2930
- }
2931
- },
2932
- "hasDynamicHelp": false,
2933
- "hiddenAliases": [],
2934
- "id": "stage:list",
2935
- "pluginAlias": "@hyperdrive.bot/cli",
2936
- "pluginName": "@hyperdrive.bot/cli",
2937
- "pluginType": "core",
2938
- "strict": true,
2939
- "enableJsonFlag": false,
2940
- "isESM": true,
2941
- "relativePath": [
2942
- "dist",
2943
- "commands",
2944
- "stage",
2945
- "list.js"
2946
- ]
2947
- },
2948
- "stage:revoke": {
2949
- "aliases": [],
2950
- "args": {
2951
- "stage": {
2952
- "description": "Stage name to revoke access from",
2953
- "name": "stage",
2954
- "required": false
2955
- }
2956
- },
2957
- "description": "Revoke access from a stage for a user or CI account",
2958
- "examples": [
2959
- "<%= config.bin %> <%= command.id %>",
2960
- "<%= config.bin %> <%= command.id %> develop",
2961
- "<%= config.bin %> <%= command.id %> develop --user maria@company.com",
2962
- "<%= config.bin %> <%= command.id %> develop --ci github-actions"
2963
- ],
2964
- "flags": {
2965
- "ci": {
2966
- "char": "c",
2967
- "description": "CI account name or ID to revoke access from",
2968
- "exclusive": [
2969
- "user"
2970
- ],
2971
- "name": "ci",
2972
- "hasDynamicHelp": false,
2973
- "multiple": false,
2974
- "type": "option"
2975
- },
2976
- "domain": {
2977
- "char": "d",
2978
- "description": "Tenant domain (for multi-domain setups)",
2979
- "name": "domain",
2980
- "hasDynamicHelp": false,
2981
- "multiple": false,
2982
- "type": "option"
2983
- },
2984
- "user": {
2985
- "char": "u",
2986
- "description": "User email to revoke access from",
2987
- "exclusive": [
2988
- "ci"
2989
- ],
2990
- "name": "user",
2991
- "hasDynamicHelp": false,
2992
- "multiple": false,
2993
- "type": "option"
2994
- },
2995
- "yes": {
2996
- "char": "y",
2997
- "description": "Skip confirmation",
2998
- "name": "yes",
2999
- "allowNo": false,
3000
- "type": "boolean"
3001
- }
3002
- },
3003
- "hasDynamicHelp": false,
3004
- "hiddenAliases": [],
3005
- "id": "stage:revoke",
3006
- "pluginAlias": "@hyperdrive.bot/cli",
3007
- "pluginName": "@hyperdrive.bot/cli",
3008
- "pluginType": "core",
3009
- "strict": true,
3010
- "enableJsonFlag": false,
3011
- "isESM": true,
3012
- "relativePath": [
3013
- "dist",
3014
- "commands",
3015
- "stage",
3016
- "revoke.js"
3017
- ]
3018
- },
3019
- "stage:share": {
3020
- "aliases": [],
3021
- "args": {
3022
- "stage": {
3023
- "description": "Stage name to share access to",
3024
- "name": "stage",
3025
- "required": false
3026
- }
3027
- },
3028
- "description": "Grant access to a stage for users or CI accounts",
3029
- "examples": [
3030
- "<%= config.bin %> <%= command.id %>",
3031
- "<%= config.bin %> <%= command.id %> develop",
3032
- "<%= config.bin %> <%= command.id %> develop --user maria@company.com --role deployer",
3033
- "<%= config.bin %> <%= command.id %> develop --ci github-actions --role deployer",
3034
- "<%= config.bin %> <%= command.id %> develop --group \"CI Accounts\" --role deployer",
3035
- "<%= config.bin %> <%= command.id %> staging production --user dev@company.com --role viewer"
3036
- ],
3037
- "flags": {
3038
- "ci": {
3039
- "char": "c",
3040
- "description": "CI account name or ID to grant access to",
3041
- "exclusive": [
3042
- "user",
3043
- "group"
3044
- ],
3045
- "name": "ci",
3046
- "hasDynamicHelp": false,
3047
- "multiple": false,
3048
- "type": "option"
3049
- },
3050
- "domain": {
3051
- "char": "d",
3052
- "description": "Tenant domain (for multi-domain setups)",
3053
- "name": "domain",
3054
- "hasDynamicHelp": false,
3055
- "multiple": false,
3056
- "type": "option"
3057
- },
3058
- "group": {
3059
- "char": "g",
3060
- "description": "Group ID or name to grant access to",
3061
- "exclusive": [
3062
- "user",
3063
- "ci"
3064
- ],
3065
- "name": "group",
3066
- "hasDynamicHelp": false,
3067
- "multiple": false,
3068
- "type": "option"
3069
- },
3070
- "role": {
3071
- "char": "r",
3072
- "description": "Role to grant",
3073
- "name": "role",
3074
- "hasDynamicHelp": false,
3075
- "multiple": false,
3076
- "options": [
3077
- "viewer",
3078
- "deployer",
3079
- "manager"
3080
- ],
3081
- "type": "option"
3082
- },
3083
- "user": {
3084
- "char": "u",
3085
- "description": "User email to grant access to",
3086
- "exclusive": [
3087
- "ci",
3088
- "group"
3089
- ],
3090
- "name": "user",
3091
- "hasDynamicHelp": false,
3092
- "multiple": false,
3093
- "type": "option"
3094
- },
3095
- "yes": {
3096
- "char": "y",
3097
- "description": "Skip confirmation for production stages",
3098
- "name": "yes",
3099
- "allowNo": false,
3100
- "type": "boolean"
3101
- }
3102
- },
3103
- "hasDynamicHelp": false,
3104
- "hiddenAliases": [],
3105
- "id": "stage:share",
3106
- "pluginAlias": "@hyperdrive.bot/cli",
3107
- "pluginName": "@hyperdrive.bot/cli",
3108
- "pluginType": "core",
3109
- "strict": false,
3110
- "enableJsonFlag": false,
3111
- "isESM": true,
3112
- "relativePath": [
3113
- "dist",
3114
- "commands",
3115
- "stage",
3116
- "share.js"
3117
- ]
3118
- },
3119
- "ci:account:create": {
3120
- "aliases": [],
3121
- "args": {},
3122
- "description": "Create a CI token for non-interactive authentication in CI/CD pipelines",
3123
- "examples": [
3124
- "<%= config.bin %> <%= command.id %> --name=\"github-prod\" --scope=deploy --scope=module:read",
3125
- "<%= config.bin %> <%= command.id %> --name=\"gitlab-staging\" --scope=deploy --scope=parameter:read"
3126
- ],
3127
- "flags": {
3128
- "description": {
3129
- "description": "Optional description for the CI account",
3130
- "name": "description",
3131
- "hasDynamicHelp": false,
3132
- "multiple": false,
3133
- "type": "option"
3134
- },
3135
- "domain": {
3136
- "char": "d",
3137
- "description": "Tenant domain",
3138
- "name": "domain",
3139
- "hasDynamicHelp": false,
3140
- "multiple": false,
3141
- "type": "option"
3142
- },
3143
- "name": {
3144
- "char": "n",
3145
- "description": "Name for the CI account (e.g., github-prod, gitlab-staging)",
3146
- "name": "name",
3147
- "hasDynamicHelp": false,
3148
- "multiple": false,
3149
- "type": "option"
3150
- },
3151
- "project": {
3152
- "description": "Restrict to specific project slugs (can be specified multiple times)",
3153
- "name": "project",
3154
- "hasDynamicHelp": false,
3155
- "multiple": true,
3156
- "type": "option"
3157
- },
3158
- "scope": {
3159
- "char": "s",
3160
- "description": "Scopes to grant (can be specified multiple times)",
3161
- "name": "scope",
3162
- "hasDynamicHelp": false,
3163
- "multiple": true,
3164
- "options": [
3165
- "deploy",
3166
- "deploy:create",
3167
- "deploy:launch",
3168
- "module:read",
3169
- "module:write",
3170
- "parameter:read",
3171
- "parameter:write",
3172
- "stage:read",
3173
- "stage:write"
3174
- ],
3175
- "type": "option"
3176
- },
3177
- "stage": {
3178
- "description": "Stages to grant deployer access to (can be specified multiple times)",
3179
- "name": "stage",
3180
- "hasDynamicHelp": false,
3181
- "multiple": true,
3182
- "type": "option"
3183
- }
3184
- },
3185
- "hasDynamicHelp": false,
3186
- "hiddenAliases": [],
3187
- "id": "ci:account:create",
3188
- "pluginAlias": "@hyperdrive.bot/cli",
3189
- "pluginName": "@hyperdrive.bot/cli",
3190
- "pluginType": "core",
3191
- "strict": true,
3192
- "enableJsonFlag": false,
3193
- "isESM": true,
3194
- "relativePath": [
3195
- "dist",
3196
- "commands",
3197
- "ci",
3198
- "account",
3199
- "create.js"
3200
- ]
3201
- },
3202
- "ci:account:delete": {
3203
- "aliases": [],
3204
- "args": {
3205
- "accountId": {
3206
- "description": "CI token ID to delete",
3207
- "name": "accountId",
3208
- "required": false
3209
- }
3210
- },
3211
- "description": "Delete (revoke) a CI token",
3212
- "examples": [
3213
- "<%= config.bin %> <%= command.id %> <account-id>",
3214
- "<%= config.bin %> <%= command.id %> <account-id> --force"
3215
- ],
3216
- "flags": {
3217
- "domain": {
3218
- "char": "d",
3219
- "description": "Tenant domain",
3220
- "name": "domain",
3221
- "hasDynamicHelp": false,
3222
- "multiple": false,
3223
- "type": "option"
3224
- },
3225
- "force": {
3226
- "char": "f",
3227
- "description": "Skip confirmation prompt",
3228
- "name": "force",
3229
- "allowNo": false,
3230
- "type": "boolean"
3231
- }
3232
- },
3233
- "hasDynamicHelp": false,
3234
- "hiddenAliases": [],
3235
- "id": "ci:account:delete",
3236
- "pluginAlias": "@hyperdrive.bot/cli",
3237
- "pluginName": "@hyperdrive.bot/cli",
3238
- "pluginType": "core",
3239
- "strict": true,
3240
- "enableJsonFlag": false,
3241
- "isESM": true,
3242
- "relativePath": [
3243
- "dist",
3244
- "commands",
3245
- "ci",
3246
- "account",
3247
- "delete.js"
3248
- ]
3249
- },
3250
- "ci:account:list": {
3251
- "aliases": [],
3252
- "args": {},
3253
- "description": "List all CI tokens",
3254
- "examples": [
3255
- "<%= config.bin %> <%= command.id %>",
3256
- "<%= config.bin %> <%= command.id %> --json"
3257
- ],
3258
- "flags": {
3259
- "domain": {
3260
- "char": "d",
3261
- "description": "Tenant domain",
3262
- "name": "domain",
3263
- "hasDynamicHelp": false,
3264
- "multiple": false,
3265
- "type": "option"
3266
- },
3267
- "json": {
3268
- "description": "Output as JSON",
3269
- "name": "json",
3270
- "allowNo": false,
3271
- "type": "boolean"
3272
- }
3273
- },
3274
- "hasDynamicHelp": false,
3275
- "hiddenAliases": [],
3276
- "id": "ci:account:list",
3277
- "pluginAlias": "@hyperdrive.bot/cli",
3278
- "pluginName": "@hyperdrive.bot/cli",
3279
- "pluginType": "core",
3280
- "strict": true,
3281
- "enableJsonFlag": false,
3282
- "isESM": true,
3283
- "relativePath": [
3284
- "dist",
3285
- "commands",
3286
- "ci",
3287
- "account",
3288
- "list.js"
3289
- ]
3290
- },
3291
- "jira:hook:add": {
3292
- "aliases": [],
3293
- "args": {
3294
- "project": {
3295
- "description": "Hyperdrive project ID or slug",
3296
- "name": "project",
3297
- "required": true
3298
- }
3299
- },
3300
- "description": "Add a status transition hook to a Jira-linked project",
3301
- "examples": [
3302
- "<%= config.bin %> jira hook add my-project",
3303
- "<%= config.bin %> jira hook add my-project --status \"In Progress\" --action adhb-enrich --config '{\"priority\":\"high\"}'",
3304
- "<%= config.bin %> jira hook add my-project --json"
3305
- ],
3306
- "flags": {
3307
- "action": {
3308
- "description": "Action type (slack-notify, adhb-enrich, webhook, ci-trigger)",
3309
- "name": "action",
3310
- "hasDynamicHelp": false,
3311
- "multiple": false,
3312
- "type": "option"
3313
- },
3314
- "config": {
3315
- "description": "Action config as JSON string",
3316
- "name": "config",
3317
- "hasDynamicHelp": false,
3318
- "multiple": false,
3319
- "type": "option"
3320
- },
3321
- "domain": {
3322
- "char": "d",
3323
- "description": "Hyperdrive tenant domain",
3324
- "name": "domain",
3325
- "hasDynamicHelp": false,
3326
- "multiple": false,
3327
- "type": "option"
3328
- },
3329
- "json": {
3330
- "description": "Output raw JSON",
3331
- "name": "json",
3332
- "allowNo": false,
3333
- "type": "boolean"
3334
- },
3335
- "status": {
3336
- "description": "Trigger status (Jira status name or \"*\" for all)",
3337
- "name": "status",
3338
- "hasDynamicHelp": false,
3339
- "multiple": false,
3340
- "type": "option"
3341
- }
3342
- },
3343
- "hasDynamicHelp": false,
3344
- "hiddenAliases": [],
3345
- "id": "jira:hook:add",
3346
- "pluginAlias": "@hyperdrive.bot/cli",
3347
- "pluginName": "@hyperdrive.bot/cli",
3348
- "pluginType": "core",
3349
- "strict": true,
3350
- "enableJsonFlag": false,
3351
- "isESM": true,
3352
- "relativePath": [
3353
- "dist",
3354
- "commands",
3355
- "jira",
3356
- "hook",
3357
- "add.js"
3358
- ]
3359
- },
3360
- "jira:hook:list": {
3361
- "aliases": [],
3362
- "args": {
3363
- "project": {
3364
- "description": "Hyperdrive project ID or slug",
3365
- "name": "project",
3366
- "required": true
3367
- }
3368
- },
3369
- "description": "List status transition hooks for a Jira-linked project",
3370
- "examples": [
3371
- "<%= config.bin %> jira hook list my-project",
3372
- "<%= config.bin %> jira hook list my-project --json"
3373
- ],
3374
- "flags": {
3375
- "domain": {
3376
- "char": "d",
3377
- "description": "Hyperdrive tenant domain",
3378
- "name": "domain",
3379
- "hasDynamicHelp": false,
3380
- "multiple": false,
3381
- "type": "option"
3382
- },
3383
- "json": {
3384
- "description": "Output raw JSON",
3385
- "name": "json",
3386
- "allowNo": false,
3387
- "type": "boolean"
3388
- }
3389
- },
3390
- "hasDynamicHelp": false,
3391
- "hiddenAliases": [],
3392
- "id": "jira:hook:list",
3393
- "pluginAlias": "@hyperdrive.bot/cli",
3394
- "pluginName": "@hyperdrive.bot/cli",
3395
- "pluginType": "core",
3396
- "strict": true,
3397
- "enableJsonFlag": false,
3398
- "isESM": true,
3399
- "relativePath": [
3400
- "dist",
3401
- "commands",
3402
- "jira",
3403
- "hook",
3404
- "list.js"
3405
- ]
3406
- },
3407
- "jira:hook:remove": {
3408
- "aliases": [],
3409
- "args": {
3410
- "project": {
3411
- "description": "Hyperdrive project ID or slug",
3412
- "name": "project",
3413
- "required": true
3414
- }
3415
- },
3416
- "description": "Remove a status transition hook from a Jira-linked project",
3417
- "examples": [
3418
- "<%= config.bin %> jira hook remove my-project",
3419
- "<%= config.bin %> jira hook remove my-project --hook-id hook-123",
3420
- "<%= config.bin %> jira hook remove my-project --hook-id hook-123 --json"
3421
- ],
3422
- "flags": {
3423
- "domain": {
3424
- "char": "d",
3425
- "description": "Hyperdrive tenant domain",
3426
- "name": "domain",
3427
- "hasDynamicHelp": false,
3428
- "multiple": false,
3429
- "type": "option"
3430
- },
3431
- "hook-id": {
3432
- "description": "Hook ID to remove (skips interactive selection)",
3433
- "name": "hook-id",
3434
- "hasDynamicHelp": false,
3435
- "multiple": false,
3436
- "type": "option"
3437
- },
3438
- "json": {
3439
- "description": "Output raw JSON",
3440
- "name": "json",
3441
- "allowNo": false,
3442
- "type": "boolean"
3443
- }
3444
- },
3445
- "hasDynamicHelp": false,
3446
- "hiddenAliases": [],
3447
- "id": "jira:hook:remove",
3448
- "pluginAlias": "@hyperdrive.bot/cli",
3449
- "pluginName": "@hyperdrive.bot/cli",
3450
- "pluginType": "core",
3451
- "strict": true,
3452
- "enableJsonFlag": false,
3453
- "isESM": true,
3454
- "relativePath": [
3455
- "dist",
3456
- "commands",
3457
- "jira",
3458
- "hook",
3459
- "remove.js"
3460
- ]
3461
- },
3462
- "jira:hook:toggle": {
3463
- "aliases": [],
3464
- "args": {
3465
- "project": {
3466
- "description": "Hyperdrive project ID or slug",
3467
- "name": "project",
3468
- "required": true
3469
- }
3470
- },
3471
- "description": "Toggle the enabled state of a status transition hook",
3472
- "examples": [
3473
- "<%= config.bin %> jira hook toggle my-project",
3474
- "<%= config.bin %> jira hook toggle my-project --hook-id hook-123",
3475
- "<%= config.bin %> jira hook toggle my-project --hook-id hook-123 --json"
3476
- ],
3477
- "flags": {
3478
- "domain": {
3479
- "char": "d",
3480
- "description": "Hyperdrive tenant domain",
3481
- "name": "domain",
3482
- "hasDynamicHelp": false,
3483
- "multiple": false,
3484
- "type": "option"
3485
- },
3486
- "hook-id": {
3487
- "description": "Hook ID to toggle (skips interactive selection)",
3488
- "name": "hook-id",
3489
- "hasDynamicHelp": false,
3490
- "multiple": false,
3491
- "type": "option"
3492
- },
3493
- "json": {
3494
- "description": "Output raw JSON",
3495
- "name": "json",
3496
- "allowNo": false,
3497
- "type": "boolean"
3498
- }
3499
- },
3500
- "hasDynamicHelp": false,
3501
- "hiddenAliases": [],
3502
- "id": "jira:hook:toggle",
3503
- "pluginAlias": "@hyperdrive.bot/cli",
3504
- "pluginName": "@hyperdrive.bot/cli",
3505
- "pluginType": "core",
3506
- "strict": true,
3507
- "enableJsonFlag": false,
3508
- "isESM": true,
3509
- "relativePath": [
3510
- "dist",
3511
- "commands",
3512
- "jira",
3513
- "hook",
3514
- "toggle.js"
3515
- ]
3516
- }
3517
- },
3518
- "version": "1.0.13"
3519
- }