@hyperdrive.bot/cli 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +415 -67
- package/dist/commands/account/add.d.ts +6 -6
- package/dist/commands/account/list.d.ts +3 -0
- package/dist/commands/account/list.js +9 -2
- package/dist/commands/account/remove.d.ts +3 -3
- package/dist/commands/auth/login.d.ts +4 -4
- package/dist/commands/auth/login.js +1 -0
- package/dist/commands/ci/account/create.d.ts +7 -6
- package/dist/commands/ci/account/create.js +49 -3
- package/dist/commands/ci/account/delete.d.ts +3 -3
- package/dist/commands/ci/account/list.d.ts +2 -2
- package/dist/commands/config/get.d.ts +1 -1
- package/dist/commands/config/set.d.ts +2 -2
- package/dist/commands/deployment/create.d.ts +10 -10
- package/dist/commands/deployment/get.d.ts +4 -4
- package/dist/commands/deployment/launch.d.ts +6 -6
- package/dist/commands/deployment/list.d.ts +3 -3
- package/dist/commands/deployment/list.js +17 -17
- package/dist/commands/domain/switch.d.ts +1 -1
- package/dist/commands/example.d.ts +3 -3
- package/dist/commands/git/connect.d.ts +2 -2
- package/dist/commands/git/connect.js +1 -0
- package/dist/commands/git/disconnect.d.ts +3 -3
- package/dist/commands/git/list.d.ts +2 -2
- package/dist/commands/git/sync.d.ts +7 -7
- package/dist/commands/git/sync.js +24 -23
- package/dist/commands/init.d.ts +1 -0
- package/dist/commands/init.js +20 -19
- package/dist/commands/jira/connect.d.ts +2 -1
- package/dist/commands/jira/connect.js +17 -6
- package/dist/commands/jira/hook/add.d.ts +17 -0
- package/dist/commands/jira/hook/add.js +147 -0
- package/dist/commands/jira/hook/list.d.ts +14 -0
- package/dist/commands/jira/hook/list.js +105 -0
- package/dist/commands/jira/hook/remove.d.ts +15 -0
- package/dist/commands/jira/hook/remove.js +119 -0
- package/dist/commands/jira/hook/toggle.d.ts +15 -0
- package/dist/commands/jira/hook/toggle.js +136 -0
- package/dist/commands/jira/status.d.ts +1 -1
- package/dist/commands/module/analyze.d.ts +5 -5
- package/dist/commands/module/create.d.ts +17 -17
- package/dist/commands/module/create.js +9 -1
- package/dist/commands/module/destroy.d.ts +3 -3
- package/dist/commands/module/get.d.ts +2 -2
- package/dist/commands/module/link.d.ts +4 -4
- package/dist/commands/module/list.d.ts +1 -1
- package/dist/commands/module/list.js +12 -11
- package/dist/commands/module/reanalyze.d.ts +6 -6
- package/dist/commands/module/update.d.ts +19 -19
- package/dist/commands/parameter/add.d.ts +7 -7
- package/dist/commands/parameter/backfill.d.ts +4 -4
- package/dist/commands/parameter/backfill.js +4 -3
- package/dist/commands/parameter/clear.d.ts +6 -6
- package/dist/commands/parameter/list.d.ts +6 -6
- package/dist/commands/parameter/list.js +4 -3
- package/dist/commands/parameter/pull.d.ts +6 -6
- package/dist/commands/parameter/remove.d.ts +7 -7
- package/dist/commands/parameter/sync.d.ts +6 -6
- package/dist/commands/parameter/update.d.ts +7 -7
- package/dist/commands/project/init.d.ts +21 -0
- package/dist/commands/project/init.js +576 -0
- package/dist/commands/project/list.d.ts +10 -0
- package/dist/commands/project/list.js +119 -0
- package/dist/commands/project/status.d.ts +13 -0
- package/dist/commands/project/status.js +163 -0
- package/dist/commands/project/sync.d.ts +26 -0
- package/dist/commands/project/sync.js +388 -0
- package/dist/commands/stage/access.d.ts +15 -0
- package/dist/commands/stage/access.js +130 -0
- package/dist/commands/stage/create.d.ts +11 -11
- package/dist/commands/stage/list.d.ts +1 -1
- package/dist/commands/stage/list.js +21 -20
- package/dist/commands/stage/revoke.d.ts +18 -0
- package/dist/commands/stage/revoke.js +171 -0
- package/dist/commands/stage/share.d.ts +23 -0
- package/dist/commands/stage/share.js +292 -0
- package/dist/commands/test-api.d.ts +1 -1
- package/dist/services/auth-service.d.ts +15 -82
- package/dist/services/auth-service.js +24 -237
- package/dist/services/hyperdrive-sigv4.d.ts +162 -24
- package/dist/services/hyperdrive-sigv4.js +107 -193
- package/dist/services/tenant-service.d.ts +6 -0
- package/dist/services/tenant-service.js +13 -0
- package/dist/utils/account-flow.d.ts +2 -2
- package/dist/utils/account-flow.js +4 -4
- package/dist/utils/auth-flow.d.ts +1 -0
- package/dist/utils/auth-flow.js +2 -0
- package/dist/utils/git-flow.d.ts +1 -0
- package/dist/utils/git-flow.js +2 -2
- package/dist/utils/hook-flow.d.ts +21 -0
- package/dist/utils/hook-flow.js +154 -0
- package/dist/utils/jira-flow.d.ts +2 -2
- package/dist/utils/jira-flow.js +4 -4
- package/dist/utils/table.d.ts +17 -0
- package/dist/utils/table.js +41 -0
- package/oclif.manifest.json +844 -154
- package/package.json +59 -15
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @hyperdrive.bot/cli
|
|
|
20
20
|
$ hd COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ hd (--version)
|
|
23
|
-
@hyperdrive.bot/cli/1.0.
|
|
23
|
+
@hyperdrive.bot/cli/1.0.8 linux-x64 node-v22.22.0
|
|
24
24
|
$ hd --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ hd COMMAND
|
|
@@ -57,6 +57,10 @@ USAGE
|
|
|
57
57
|
* [`hd help [COMMAND]`](#hd-help-command)
|
|
58
58
|
* [`hd init`](#hd-init)
|
|
59
59
|
* [`hd jira connect`](#hd-jira-connect)
|
|
60
|
+
* [`hd jira hook add PROJECT`](#hd-jira-hook-add-project)
|
|
61
|
+
* [`hd jira hook list PROJECT`](#hd-jira-hook-list-project)
|
|
62
|
+
* [`hd jira hook remove PROJECT`](#hd-jira-hook-remove-project)
|
|
63
|
+
* [`hd jira hook toggle PROJECT`](#hd-jira-hook-toggle-project)
|
|
60
64
|
* [`hd jira status`](#hd-jira-status)
|
|
61
65
|
* [`hd module analyze`](#hd-module-analyze)
|
|
62
66
|
* [`hd module create`](#hd-module-create)
|
|
@@ -84,8 +88,15 @@ USAGE
|
|
|
84
88
|
* [`hd plugins uninstall [PLUGIN]`](#hd-plugins-uninstall-plugin)
|
|
85
89
|
* [`hd plugins unlink [PLUGIN]`](#hd-plugins-unlink-plugin)
|
|
86
90
|
* [`hd plugins update`](#hd-plugins-update)
|
|
91
|
+
* [`hd project init`](#hd-project-init)
|
|
92
|
+
* [`hd project list`](#hd-project-list)
|
|
93
|
+
* [`hd project status PROJECT`](#hd-project-status-project)
|
|
94
|
+
* [`hd project sync PROJECT`](#hd-project-sync-project)
|
|
95
|
+
* [`hd stage access [STAGE]`](#hd-stage-access-stage)
|
|
87
96
|
* [`hd stage create`](#hd-stage-create)
|
|
88
97
|
* [`hd stage list`](#hd-stage-list)
|
|
98
|
+
* [`hd stage revoke [STAGE]`](#hd-stage-revoke-stage)
|
|
99
|
+
* [`hd stage share [STAGE]`](#hd-stage-share-stage)
|
|
89
100
|
* [`hd test-api`](#hd-test-api)
|
|
90
101
|
|
|
91
102
|
## `hd account add`
|
|
@@ -115,7 +126,7 @@ EXAMPLES
|
|
|
115
126
|
$ hd account add # Interactive mode
|
|
116
127
|
```
|
|
117
128
|
|
|
118
|
-
_See code: [src/commands/account/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
129
|
+
_See code: [src/commands/account/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/account/add.ts)_
|
|
119
130
|
|
|
120
131
|
## `hd account list`
|
|
121
132
|
|
|
@@ -123,7 +134,10 @@ List all AWS accounts registered with Hyperdrive
|
|
|
123
134
|
|
|
124
135
|
```
|
|
125
136
|
USAGE
|
|
126
|
-
$ hd account list
|
|
137
|
+
$ hd account list [-d <value>]
|
|
138
|
+
|
|
139
|
+
FLAGS
|
|
140
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
127
141
|
|
|
128
142
|
DESCRIPTION
|
|
129
143
|
List all AWS accounts registered with Hyperdrive
|
|
@@ -132,7 +146,7 @@ EXAMPLES
|
|
|
132
146
|
$ hd account list
|
|
133
147
|
```
|
|
134
148
|
|
|
135
|
-
_See code: [src/commands/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
149
|
+
_See code: [src/commands/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/account/list.ts)_
|
|
136
150
|
|
|
137
151
|
## `hd account remove`
|
|
138
152
|
|
|
@@ -156,7 +170,7 @@ EXAMPLES
|
|
|
156
170
|
$ hd account remove --accountId 123456789012 --force
|
|
157
171
|
```
|
|
158
172
|
|
|
159
|
-
_See code: [src/commands/account/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
173
|
+
_See code: [src/commands/account/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/account/remove.ts)_
|
|
160
174
|
|
|
161
175
|
## `hd auth login`
|
|
162
176
|
|
|
@@ -184,7 +198,7 @@ EXAMPLES
|
|
|
184
198
|
$ hd auth login --ci --domain acme.hyperdrive.bot
|
|
185
199
|
```
|
|
186
200
|
|
|
187
|
-
_See code: [src/commands/auth/login.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
201
|
+
_See code: [src/commands/auth/login.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/auth/login.ts)_
|
|
188
202
|
|
|
189
203
|
## `hd auth logout`
|
|
190
204
|
|
|
@@ -201,7 +215,7 @@ EXAMPLES
|
|
|
201
215
|
$ hd auth logout
|
|
202
216
|
```
|
|
203
217
|
|
|
204
|
-
_See code: [src/commands/auth/logout.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
218
|
+
_See code: [src/commands/auth/logout.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/auth/logout.ts)_
|
|
205
219
|
|
|
206
220
|
## `hd auth refresh`
|
|
207
221
|
|
|
@@ -218,7 +232,7 @@ EXAMPLES
|
|
|
218
232
|
$ hd auth refresh
|
|
219
233
|
```
|
|
220
234
|
|
|
221
|
-
_See code: [src/commands/auth/refresh.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
235
|
+
_See code: [src/commands/auth/refresh.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/auth/refresh.ts)_
|
|
222
236
|
|
|
223
237
|
## `hd auth status`
|
|
224
238
|
|
|
@@ -235,7 +249,7 @@ EXAMPLES
|
|
|
235
249
|
$ hd auth status
|
|
236
250
|
```
|
|
237
251
|
|
|
238
|
-
_See code: [src/commands/auth/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
252
|
+
_See code: [src/commands/auth/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/auth/status.ts)_
|
|
239
253
|
|
|
240
254
|
## `hd ci account create`
|
|
241
255
|
|
|
@@ -243,9 +257,9 @@ Create a CI token for non-interactive authentication in CI/CD pipelines
|
|
|
243
257
|
|
|
244
258
|
```
|
|
245
259
|
USAGE
|
|
246
|
-
$ hd ci account create [--description <value>] [-d <value>] [-n <value>] [--project <value
|
|
247
|
-
deploy|deploy:create|deploy:launch|module:read|module:write|parameter:read|parameter:write|stage:read|stage:write
|
|
248
|
-
[--stage <value
|
|
260
|
+
$ hd ci account create [--description <value>] [-d <value>] [-n <value>] [--project <value>...] [-s
|
|
261
|
+
deploy|deploy:create|deploy:launch|module:read|module:write|parameter:read|parameter:write|stage:read|stage:write...
|
|
262
|
+
] [--stage <value>...]
|
|
249
263
|
|
|
250
264
|
FLAGS
|
|
251
265
|
-d, --domain=<value> Tenant domain
|
|
@@ -255,7 +269,7 @@ FLAGS
|
|
|
255
269
|
ter:write|stage:read|stage:write>
|
|
256
270
|
--description=<value> Optional description for the CI account
|
|
257
271
|
--project=<value>... Restrict to specific project slugs (can be specified multiple times)
|
|
258
|
-
--stage=<value>...
|
|
272
|
+
--stage=<value>... Stages to grant deployer access to (can be specified multiple times)
|
|
259
273
|
|
|
260
274
|
DESCRIPTION
|
|
261
275
|
Create a CI token for non-interactive authentication in CI/CD pipelines
|
|
@@ -266,7 +280,7 @@ EXAMPLES
|
|
|
266
280
|
$ hd ci account create --name="gitlab-staging" --scope=deploy --scope=parameter:read
|
|
267
281
|
```
|
|
268
282
|
|
|
269
|
-
_See code: [src/commands/ci/account/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
283
|
+
_See code: [src/commands/ci/account/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/ci/account/create.ts)_
|
|
270
284
|
|
|
271
285
|
## `hd ci account delete [ACCOUNTID]`
|
|
272
286
|
|
|
@@ -292,7 +306,7 @@ EXAMPLES
|
|
|
292
306
|
$ hd ci account delete <account-id> --force
|
|
293
307
|
```
|
|
294
308
|
|
|
295
|
-
_See code: [src/commands/ci/account/delete.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
309
|
+
_See code: [src/commands/ci/account/delete.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/ci/account/delete.ts)_
|
|
296
310
|
|
|
297
311
|
## `hd ci account list`
|
|
298
312
|
|
|
@@ -315,7 +329,7 @@ EXAMPLES
|
|
|
315
329
|
$ hd ci account list --json
|
|
316
330
|
```
|
|
317
331
|
|
|
318
|
-
_See code: [src/commands/ci/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
332
|
+
_See code: [src/commands/ci/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/ci/account/list.ts)_
|
|
319
333
|
|
|
320
334
|
## `hd config get KEY`
|
|
321
335
|
|
|
@@ -337,7 +351,7 @@ EXAMPLES
|
|
|
337
351
|
$ hd config get bootstrap-url
|
|
338
352
|
```
|
|
339
353
|
|
|
340
|
-
_See code: [src/commands/config/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
354
|
+
_See code: [src/commands/config/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/config/get.ts)_
|
|
341
355
|
|
|
342
356
|
## `hd config set KEY VALUE`
|
|
343
357
|
|
|
@@ -364,7 +378,7 @@ EXAMPLES
|
|
|
364
378
|
$ hd config set region us-west-2
|
|
365
379
|
```
|
|
366
380
|
|
|
367
|
-
_See code: [src/commands/config/set.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
381
|
+
_See code: [src/commands/config/set.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/config/set.ts)_
|
|
368
382
|
|
|
369
383
|
## `hd config show`
|
|
370
384
|
|
|
@@ -381,7 +395,7 @@ EXAMPLES
|
|
|
381
395
|
$ hd config show
|
|
382
396
|
```
|
|
383
397
|
|
|
384
|
-
_See code: [src/commands/config/show.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
398
|
+
_See code: [src/commands/config/show.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/config/show.ts)_
|
|
385
399
|
|
|
386
400
|
## `hd deployment create`
|
|
387
401
|
|
|
@@ -390,13 +404,13 @@ Create a new deployment with real-time log streaming
|
|
|
390
404
|
```
|
|
391
405
|
USAGE
|
|
392
406
|
$ hd deployment create -c <value> -m <value> -s <value> [--debug] [-d <value>] [--launch] [-n <value>] [--noStream]
|
|
393
|
-
[-r <value
|
|
407
|
+
[-r <value>...] [-v]
|
|
394
408
|
|
|
395
409
|
FLAGS
|
|
396
410
|
-c, --commit=<value> (required) Commit hash
|
|
397
411
|
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
398
412
|
-m, --moduleSlug=<value> (required) Module slug
|
|
399
|
-
-n, --name=<value> [default: Deployment-2026-
|
|
413
|
+
-n, --name=<value> [default: Deployment-2026-02-08-11-56-10] The name of the deployment
|
|
400
414
|
-r, --regions=<value>... [default: ] Regions for the deployment
|
|
401
415
|
-s, --stage=<value> (required) Stage for the deployment
|
|
402
416
|
-v, --verbose Show detailed build logs
|
|
@@ -415,7 +429,7 @@ EXAMPLES
|
|
|
415
429
|
$ hd deployment create --stage="dev" --commit="abc123" --verbose
|
|
416
430
|
```
|
|
417
431
|
|
|
418
|
-
_See code: [src/commands/deployment/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
432
|
+
_See code: [src/commands/deployment/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/deployment/create.ts)_
|
|
419
433
|
|
|
420
434
|
## `hd deployment get`
|
|
421
435
|
|
|
@@ -440,7 +454,7 @@ EXAMPLES
|
|
|
440
454
|
$ hd deployment get --name="prod-release-v1" --stage="prod"
|
|
441
455
|
```
|
|
442
456
|
|
|
443
|
-
_See code: [src/commands/deployment/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
457
|
+
_See code: [src/commands/deployment/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/deployment/get.ts)_
|
|
444
458
|
|
|
445
459
|
## `hd deployment launch`
|
|
446
460
|
|
|
@@ -467,7 +481,7 @@ EXAMPLES
|
|
|
467
481
|
$ hd deployment launch --name="prod-release" --stage="prod" --region="us-west-2"
|
|
468
482
|
```
|
|
469
483
|
|
|
470
|
-
_See code: [src/commands/deployment/launch.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
484
|
+
_See code: [src/commands/deployment/launch.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/deployment/launch.ts)_
|
|
471
485
|
|
|
472
486
|
## `hd deployment list`
|
|
473
487
|
|
|
@@ -491,7 +505,7 @@ EXAMPLES
|
|
|
491
505
|
$ hd deployment list --stage="prod" --moduleSlug="my-api"
|
|
492
506
|
```
|
|
493
507
|
|
|
494
|
-
_See code: [src/commands/deployment/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
508
|
+
_See code: [src/commands/deployment/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/deployment/list.ts)_
|
|
495
509
|
|
|
496
510
|
## `hd domain current`
|
|
497
511
|
|
|
@@ -508,7 +522,7 @@ EXAMPLES
|
|
|
508
522
|
$ hd domain current
|
|
509
523
|
```
|
|
510
524
|
|
|
511
|
-
_See code: [src/commands/domain/current.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
525
|
+
_See code: [src/commands/domain/current.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/domain/current.ts)_
|
|
512
526
|
|
|
513
527
|
## `hd domain list`
|
|
514
528
|
|
|
@@ -525,7 +539,7 @@ EXAMPLES
|
|
|
525
539
|
$ hd domain list
|
|
526
540
|
```
|
|
527
541
|
|
|
528
|
-
_See code: [src/commands/domain/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
542
|
+
_See code: [src/commands/domain/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/domain/list.ts)_
|
|
529
543
|
|
|
530
544
|
## `hd domain switch DOMAIN`
|
|
531
545
|
|
|
@@ -545,7 +559,7 @@ EXAMPLES
|
|
|
545
559
|
$ hd domain switch acme.hyperdrive.bot
|
|
546
560
|
```
|
|
547
561
|
|
|
548
|
-
_See code: [src/commands/domain/switch.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
562
|
+
_See code: [src/commands/domain/switch.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/domain/switch.ts)_
|
|
549
563
|
|
|
550
564
|
## `hd example [FILE]`
|
|
551
565
|
|
|
@@ -569,7 +583,7 @@ EXAMPLES
|
|
|
569
583
|
$ hd example
|
|
570
584
|
```
|
|
571
585
|
|
|
572
|
-
_See code: [src/commands/example.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
586
|
+
_See code: [src/commands/example.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/example.ts)_
|
|
573
587
|
|
|
574
588
|
## `hd git connect`
|
|
575
589
|
|
|
@@ -593,7 +607,7 @@ EXAMPLES
|
|
|
593
607
|
$ hd git connect --provider=gitlab
|
|
594
608
|
```
|
|
595
609
|
|
|
596
|
-
_See code: [src/commands/git/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
610
|
+
_See code: [src/commands/git/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/git/connect.ts)_
|
|
597
611
|
|
|
598
612
|
## `hd git disconnect`
|
|
599
613
|
|
|
@@ -618,7 +632,7 @@ EXAMPLES
|
|
|
618
632
|
$ hd git disconnect --provider=github --installation-id=12345
|
|
619
633
|
```
|
|
620
634
|
|
|
621
|
-
_See code: [src/commands/git/disconnect.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
635
|
+
_See code: [src/commands/git/disconnect.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/git/disconnect.ts)_
|
|
622
636
|
|
|
623
637
|
## `hd git list`
|
|
624
638
|
|
|
@@ -642,7 +656,7 @@ EXAMPLES
|
|
|
642
656
|
$ hd git list --provider=github
|
|
643
657
|
```
|
|
644
658
|
|
|
645
|
-
_See code: [src/commands/git/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
659
|
+
_See code: [src/commands/git/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/git/list.ts)_
|
|
646
660
|
|
|
647
661
|
## `hd git sync`
|
|
648
662
|
|
|
@@ -650,8 +664,8 @@ Sync specific branches or all open branches with a source branch (default: maste
|
|
|
650
664
|
|
|
651
665
|
```
|
|
652
666
|
USAGE
|
|
653
|
-
$ hd git sync [-a] [-b <value
|
|
654
|
-
[-v]
|
|
667
|
+
$ hd git sync [-a] [-b <value>...] [-d <value>] [-m no-ff|--ff-only|--no-ff|--squash] [-r <value>] [-s
|
|
668
|
+
<value>] [-v]
|
|
655
669
|
|
|
656
670
|
FLAGS
|
|
657
671
|
-a, --all Sync all remote branches
|
|
@@ -678,7 +692,7 @@ EXAMPLES
|
|
|
678
692
|
$ hd git sync --all --remote upstream --merge-strategy no-ff
|
|
679
693
|
```
|
|
680
694
|
|
|
681
|
-
_See code: [src/commands/git/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
695
|
+
_See code: [src/commands/git/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/git/sync.ts)_
|
|
682
696
|
|
|
683
697
|
## `hd help [COMMAND]`
|
|
684
698
|
|
|
@@ -715,7 +729,7 @@ EXAMPLES
|
|
|
715
729
|
$ hd init
|
|
716
730
|
```
|
|
717
731
|
|
|
718
|
-
_See code: [src/commands/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
732
|
+
_See code: [src/commands/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/init.ts)_
|
|
719
733
|
|
|
720
734
|
## `hd jira connect`
|
|
721
735
|
|
|
@@ -723,10 +737,11 @@ Register your Jira instance with Hyperdrive (run BEFORE installing the Forge app
|
|
|
723
737
|
|
|
724
738
|
```
|
|
725
739
|
USAGE
|
|
726
|
-
$ hd jira connect [-d <value>]
|
|
740
|
+
$ hd jira connect [-d <value>] [-j <value>]
|
|
727
741
|
|
|
728
742
|
FLAGS
|
|
729
|
-
-d, --domain=<value>
|
|
743
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
744
|
+
-j, --jira-domain=<value> Your Jira domain (e.g., dev-squad.atlassian.net)
|
|
730
745
|
|
|
731
746
|
DESCRIPTION
|
|
732
747
|
Register your Jira instance with Hyperdrive (run BEFORE installing the Forge app)
|
|
@@ -734,10 +749,127 @@ DESCRIPTION
|
|
|
734
749
|
EXAMPLES
|
|
735
750
|
$ hd jira connect
|
|
736
751
|
|
|
737
|
-
$ hd jira connect --domain dev-squad.atlassian.net
|
|
752
|
+
$ hd jira connect --jira-domain dev-squad.atlassian.net
|
|
753
|
+
|
|
754
|
+
$ hd jira connect --domain sankhya.hyperdrivebot.dev --jira-domain dev-squad.atlassian.net
|
|
755
|
+
```
|
|
756
|
+
|
|
757
|
+
_See code: [src/commands/jira/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/jira/connect.ts)_
|
|
758
|
+
|
|
759
|
+
## `hd jira hook add PROJECT`
|
|
760
|
+
|
|
761
|
+
Add a status transition hook to a Jira-linked project
|
|
762
|
+
|
|
763
|
+
```
|
|
764
|
+
USAGE
|
|
765
|
+
$ hd jira hook add PROJECT [--action <value>] [--config <value>] [-d <value>] [--json] [--status <value>]
|
|
766
|
+
|
|
767
|
+
ARGUMENTS
|
|
768
|
+
PROJECT Hyperdrive project ID or slug
|
|
769
|
+
|
|
770
|
+
FLAGS
|
|
771
|
+
-d, --domain=<value> Hyperdrive tenant domain
|
|
772
|
+
--action=<value> Action type (slack-notify, adhb-enrich, webhook, ci-trigger)
|
|
773
|
+
--config=<value> Action config as JSON string
|
|
774
|
+
--json Output raw JSON
|
|
775
|
+
--status=<value> Trigger status (Jira status name or "*" for all)
|
|
776
|
+
|
|
777
|
+
DESCRIPTION
|
|
778
|
+
Add a status transition hook to a Jira-linked project
|
|
779
|
+
|
|
780
|
+
EXAMPLES
|
|
781
|
+
$ hd jira hook add my-project
|
|
782
|
+
|
|
783
|
+
$ hd jira hook add my-project --status "In Progress" --action adhb-enrich --config '{"priority":"high"}'
|
|
784
|
+
|
|
785
|
+
$ hd jira hook add my-project --json
|
|
738
786
|
```
|
|
739
787
|
|
|
740
|
-
_See code: [src/commands/jira/
|
|
788
|
+
_See code: [src/commands/jira/hook/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/jira/hook/add.ts)_
|
|
789
|
+
|
|
790
|
+
## `hd jira hook list PROJECT`
|
|
791
|
+
|
|
792
|
+
List status transition hooks for a Jira-linked project
|
|
793
|
+
|
|
794
|
+
```
|
|
795
|
+
USAGE
|
|
796
|
+
$ hd jira hook list PROJECT [-d <value>] [--json]
|
|
797
|
+
|
|
798
|
+
ARGUMENTS
|
|
799
|
+
PROJECT Hyperdrive project ID or slug
|
|
800
|
+
|
|
801
|
+
FLAGS
|
|
802
|
+
-d, --domain=<value> Hyperdrive tenant domain
|
|
803
|
+
--json Output raw JSON
|
|
804
|
+
|
|
805
|
+
DESCRIPTION
|
|
806
|
+
List status transition hooks for a Jira-linked project
|
|
807
|
+
|
|
808
|
+
EXAMPLES
|
|
809
|
+
$ hd jira hook list my-project
|
|
810
|
+
|
|
811
|
+
$ hd jira hook list my-project --json
|
|
812
|
+
```
|
|
813
|
+
|
|
814
|
+
_See code: [src/commands/jira/hook/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/jira/hook/list.ts)_
|
|
815
|
+
|
|
816
|
+
## `hd jira hook remove PROJECT`
|
|
817
|
+
|
|
818
|
+
Remove a status transition hook from a Jira-linked project
|
|
819
|
+
|
|
820
|
+
```
|
|
821
|
+
USAGE
|
|
822
|
+
$ hd jira hook remove PROJECT [-d <value>] [--hook-id <value>] [--json]
|
|
823
|
+
|
|
824
|
+
ARGUMENTS
|
|
825
|
+
PROJECT Hyperdrive project ID or slug
|
|
826
|
+
|
|
827
|
+
FLAGS
|
|
828
|
+
-d, --domain=<value> Hyperdrive tenant domain
|
|
829
|
+
--hook-id=<value> Hook ID to remove (skips interactive selection)
|
|
830
|
+
--json Output raw JSON
|
|
831
|
+
|
|
832
|
+
DESCRIPTION
|
|
833
|
+
Remove a status transition hook from a Jira-linked project
|
|
834
|
+
|
|
835
|
+
EXAMPLES
|
|
836
|
+
$ hd jira hook remove my-project
|
|
837
|
+
|
|
838
|
+
$ hd jira hook remove my-project --hook-id hook-123
|
|
839
|
+
|
|
840
|
+
$ hd jira hook remove my-project --hook-id hook-123 --json
|
|
841
|
+
```
|
|
842
|
+
|
|
843
|
+
_See code: [src/commands/jira/hook/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/jira/hook/remove.ts)_
|
|
844
|
+
|
|
845
|
+
## `hd jira hook toggle PROJECT`
|
|
846
|
+
|
|
847
|
+
Toggle the enabled state of a status transition hook
|
|
848
|
+
|
|
849
|
+
```
|
|
850
|
+
USAGE
|
|
851
|
+
$ hd jira hook toggle PROJECT [-d <value>] [--hook-id <value>] [--json]
|
|
852
|
+
|
|
853
|
+
ARGUMENTS
|
|
854
|
+
PROJECT Hyperdrive project ID or slug
|
|
855
|
+
|
|
856
|
+
FLAGS
|
|
857
|
+
-d, --domain=<value> Hyperdrive tenant domain
|
|
858
|
+
--hook-id=<value> Hook ID to toggle (skips interactive selection)
|
|
859
|
+
--json Output raw JSON
|
|
860
|
+
|
|
861
|
+
DESCRIPTION
|
|
862
|
+
Toggle the enabled state of a status transition hook
|
|
863
|
+
|
|
864
|
+
EXAMPLES
|
|
865
|
+
$ hd jira hook toggle my-project
|
|
866
|
+
|
|
867
|
+
$ hd jira hook toggle my-project --hook-id hook-123
|
|
868
|
+
|
|
869
|
+
$ hd jira hook toggle my-project --hook-id hook-123 --json
|
|
870
|
+
```
|
|
871
|
+
|
|
872
|
+
_See code: [src/commands/jira/hook/toggle.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/jira/hook/toggle.ts)_
|
|
741
873
|
|
|
742
874
|
## `hd jira status`
|
|
743
875
|
|
|
@@ -757,7 +889,7 @@ EXAMPLES
|
|
|
757
889
|
$ hd jira status
|
|
758
890
|
```
|
|
759
891
|
|
|
760
|
-
_See code: [src/commands/jira/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
892
|
+
_See code: [src/commands/jira/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/jira/status.ts)_
|
|
761
893
|
|
|
762
894
|
## `hd module analyze`
|
|
763
895
|
|
|
@@ -785,7 +917,7 @@ EXAMPLES
|
|
|
785
917
|
$ hd module analyze --slug="my-module" --verbose
|
|
786
918
|
```
|
|
787
919
|
|
|
788
|
-
_See code: [src/commands/module/analyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
920
|
+
_See code: [src/commands/module/analyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/analyze.ts)_
|
|
789
921
|
|
|
790
922
|
## `hd module create`
|
|
791
923
|
|
|
@@ -796,9 +928,10 @@ USAGE
|
|
|
796
928
|
$ hd module create [--buildCommand <value>] [--buildDirectory <value>] [--buildFolder <value>] [--buildRuntime
|
|
797
929
|
nodejs|python|go|rust|java|dotnet|ruby] [--buildRuntimeVersion <value>] [--ciService
|
|
798
930
|
github-actions|gitlab-ci|circle-ci|jenkins] [--defaultBranch <value>] [-d <value>] [--framework
|
|
799
|
-
express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|gin|actix|spring|aspnet|rails|
|
|
800
|
-
[--installCommand <value>] [--name <value>] [--runCommand <value>] [-r
|
|
801
|
-
[--runtimeVersion <value>] [--slug <value>] [--sourceDirectory <value>]
|
|
931
|
+
express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|gin|actix|spring|aspnet|rails|serverless|se
|
|
932
|
+
rverless-express|serverless-nestjs|other] [--installCommand <value>] [--name <value>] [--runCommand <value>] [-r
|
|
933
|
+
nodejs|python|go|rust|java|dotnet|ruby] [--runtimeVersion <value>] [--slug <value>] [--sourceDirectory <value>]
|
|
934
|
+
[--sourceLocation <value>]
|
|
802
935
|
|
|
803
936
|
FLAGS
|
|
804
937
|
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
@@ -815,8 +948,9 @@ FLAGS
|
|
|
815
948
|
<options: github-actions|gitlab-ci|circle-ci|jenkins>
|
|
816
949
|
--defaultBranch=<value> Default git branch to branch from (e.g., main, master)
|
|
817
950
|
--framework=<option> Framework used
|
|
818
|
-
<options:
|
|
819
|
-
|
|
951
|
+
<options:
|
|
952
|
+
express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|gin|actix|
|
|
953
|
+
spring|aspnet|rails|serverless|serverless-express|serverless-nestjs|other>
|
|
820
954
|
--installCommand=<value> Install command
|
|
821
955
|
--name=<value> Name of the project
|
|
822
956
|
--runCommand=<value> Run command
|
|
@@ -835,7 +969,7 @@ EXAMPLES
|
|
|
835
969
|
$ hd module create --name="API Service" --framework="Serverless Framework"
|
|
836
970
|
```
|
|
837
971
|
|
|
838
|
-
_See code: [src/commands/module/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
972
|
+
_See code: [src/commands/module/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/create.ts)_
|
|
839
973
|
|
|
840
974
|
## `hd module destroy`
|
|
841
975
|
|
|
@@ -859,7 +993,7 @@ EXAMPLES
|
|
|
859
993
|
$ hd module destroy --slug="old-project" --force
|
|
860
994
|
```
|
|
861
995
|
|
|
862
|
-
_See code: [src/commands/module/destroy.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
996
|
+
_See code: [src/commands/module/destroy.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/destroy.ts)_
|
|
863
997
|
|
|
864
998
|
## `hd module get`
|
|
865
999
|
|
|
@@ -882,7 +1016,7 @@ EXAMPLES
|
|
|
882
1016
|
$ hd module get
|
|
883
1017
|
```
|
|
884
1018
|
|
|
885
|
-
_See code: [src/commands/module/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1019
|
+
_See code: [src/commands/module/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/get.ts)_
|
|
886
1020
|
|
|
887
1021
|
## `hd module link`
|
|
888
1022
|
|
|
@@ -890,7 +1024,7 @@ Links two modules using specified environment variables as connectors
|
|
|
890
1024
|
|
|
891
1025
|
```
|
|
892
1026
|
USAGE
|
|
893
|
-
$ hd module link --originSlug <value> --parameter <value
|
|
1027
|
+
$ hd module link --originSlug <value> --parameter <value>... --targetSlug <value> [-d <value>]
|
|
894
1028
|
|
|
895
1029
|
FLAGS
|
|
896
1030
|
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
@@ -905,7 +1039,7 @@ EXAMPLES
|
|
|
905
1039
|
$ hd module link --originSlug="vixting-integration" --targetSlug="vixting-api" --parameter="VLOW_API_ENDPOINT_PREFIX"
|
|
906
1040
|
```
|
|
907
1041
|
|
|
908
|
-
_See code: [src/commands/module/link.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1042
|
+
_See code: [src/commands/module/link.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/link.ts)_
|
|
909
1043
|
|
|
910
1044
|
## `hd module list`
|
|
911
1045
|
|
|
@@ -925,7 +1059,7 @@ EXAMPLES
|
|
|
925
1059
|
$ hd module list
|
|
926
1060
|
```
|
|
927
1061
|
|
|
928
|
-
_See code: [src/commands/module/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1062
|
+
_See code: [src/commands/module/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/list.ts)_
|
|
929
1063
|
|
|
930
1064
|
## `hd module reanalyze`
|
|
931
1065
|
|
|
@@ -954,7 +1088,7 @@ EXAMPLES
|
|
|
954
1088
|
$ hd module reanalyze -s my-module -p "Exclude source maps from S3 upload" --verbose
|
|
955
1089
|
```
|
|
956
1090
|
|
|
957
|
-
_See code: [src/commands/module/reanalyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1091
|
+
_See code: [src/commands/module/reanalyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/reanalyze.ts)_
|
|
958
1092
|
|
|
959
1093
|
## `hd module update`
|
|
960
1094
|
|
|
@@ -1010,7 +1144,7 @@ EXAMPLES
|
|
|
1010
1144
|
$ hd module update --slug="my-module" --name="New Name" --framework="React.js"
|
|
1011
1145
|
```
|
|
1012
1146
|
|
|
1013
|
-
_See code: [src/commands/module/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1147
|
+
_See code: [src/commands/module/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/module/update.ts)_
|
|
1014
1148
|
|
|
1015
1149
|
## `hd parameter add`
|
|
1016
1150
|
|
|
@@ -1040,7 +1174,7 @@ EXAMPLES
|
|
|
1040
1174
|
$ hd parameter add --key="PORT" --value="3000"
|
|
1041
1175
|
```
|
|
1042
1176
|
|
|
1043
|
-
_See code: [src/commands/parameter/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1177
|
+
_See code: [src/commands/parameter/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/add.ts)_
|
|
1044
1178
|
|
|
1045
1179
|
## `hd parameter backfill`
|
|
1046
1180
|
|
|
@@ -1065,7 +1199,7 @@ EXAMPLES
|
|
|
1065
1199
|
$ hd parameter backfill --accountId="123456789012"
|
|
1066
1200
|
```
|
|
1067
1201
|
|
|
1068
|
-
_See code: [src/commands/parameter/backfill.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1202
|
+
_See code: [src/commands/parameter/backfill.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/backfill.ts)_
|
|
1069
1203
|
|
|
1070
1204
|
## `hd parameter clear`
|
|
1071
1205
|
|
|
@@ -1092,7 +1226,7 @@ EXAMPLES
|
|
|
1092
1226
|
$ hd parameter clear --stage="prod" --specific --force
|
|
1093
1227
|
```
|
|
1094
1228
|
|
|
1095
|
-
_See code: [src/commands/parameter/clear.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1229
|
+
_See code: [src/commands/parameter/clear.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/clear.ts)_
|
|
1096
1230
|
|
|
1097
1231
|
## `hd parameter list`
|
|
1098
1232
|
|
|
@@ -1121,7 +1255,7 @@ EXAMPLES
|
|
|
1121
1255
|
$ hd parameter list --all-stages
|
|
1122
1256
|
```
|
|
1123
1257
|
|
|
1124
|
-
_See code: [src/commands/parameter/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1258
|
+
_See code: [src/commands/parameter/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/list.ts)_
|
|
1125
1259
|
|
|
1126
1260
|
## `hd parameter pull`
|
|
1127
1261
|
|
|
@@ -1150,7 +1284,7 @@ EXAMPLES
|
|
|
1150
1284
|
$ hd parameter pull --stage="dev" --no-backup
|
|
1151
1285
|
```
|
|
1152
1286
|
|
|
1153
|
-
_See code: [src/commands/parameter/pull.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1287
|
+
_See code: [src/commands/parameter/pull.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/pull.ts)_
|
|
1154
1288
|
|
|
1155
1289
|
## `hd parameter remove`
|
|
1156
1290
|
|
|
@@ -1180,7 +1314,7 @@ EXAMPLES
|
|
|
1180
1314
|
$ hd parameter remove --key="PORT" --force
|
|
1181
1315
|
```
|
|
1182
1316
|
|
|
1183
|
-
_See code: [src/commands/parameter/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1317
|
+
_See code: [src/commands/parameter/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/remove.ts)_
|
|
1184
1318
|
|
|
1185
1319
|
## `hd parameter sync`
|
|
1186
1320
|
|
|
@@ -1209,7 +1343,7 @@ EXAMPLES
|
|
|
1209
1343
|
$ hd parameter sync --no-specific --stage="all"
|
|
1210
1344
|
```
|
|
1211
1345
|
|
|
1212
|
-
_See code: [src/commands/parameter/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1346
|
+
_See code: [src/commands/parameter/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/sync.ts)_
|
|
1213
1347
|
|
|
1214
1348
|
## `hd parameter update`
|
|
1215
1349
|
|
|
@@ -1237,7 +1371,7 @@ EXAMPLES
|
|
|
1237
1371
|
$ hd parameter update --key="DB_HOST" --value="new-host" --specific
|
|
1238
1372
|
```
|
|
1239
1373
|
|
|
1240
|
-
_See code: [src/commands/parameter/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1374
|
+
_See code: [src/commands/parameter/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/parameter/update.ts)_
|
|
1241
1375
|
|
|
1242
1376
|
## `hd plugins`
|
|
1243
1377
|
|
|
@@ -1528,6 +1662,148 @@ DESCRIPTION
|
|
|
1528
1662
|
|
|
1529
1663
|
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.0.19/src/commands/plugins/update.ts)_
|
|
1530
1664
|
|
|
1665
|
+
## `hd project init`
|
|
1666
|
+
|
|
1667
|
+
Initialize a project with Jira integration, repos, and status mapping
|
|
1668
|
+
|
|
1669
|
+
```
|
|
1670
|
+
USAGE
|
|
1671
|
+
$ hd project init [-d <value>] [--jira-key <value>] [--json] [--name <value>] [--project <value>] [--repo
|
|
1672
|
+
<value>...] [--status-map <value>...]
|
|
1673
|
+
|
|
1674
|
+
FLAGS
|
|
1675
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1676
|
+
--jira-key=<value> Jira project key (e.g., PROJ)
|
|
1677
|
+
--json Output result as JSON (non-interactive mode)
|
|
1678
|
+
--name=<value> Name for a new project (used with --json)
|
|
1679
|
+
--project=<value> Existing project slug to configure
|
|
1680
|
+
--repo=<value>... Repo in format "name|gitRemote|provider|branch" (repeatable, used with --json)
|
|
1681
|
+
--status-map=<value>... Status mapping in format "JiraStatus=normalizedState" (repeatable, used with --json)
|
|
1682
|
+
|
|
1683
|
+
DESCRIPTION
|
|
1684
|
+
Initialize a project with Jira integration, repos, and status mapping
|
|
1685
|
+
|
|
1686
|
+
EXAMPLES
|
|
1687
|
+
$ hd project init
|
|
1688
|
+
|
|
1689
|
+
$ hd project init --project my-project --jira-key PROJ
|
|
1690
|
+
|
|
1691
|
+
$ hd project init --json --name "My Project" --jira-key PROJ
|
|
1692
|
+
```
|
|
1693
|
+
|
|
1694
|
+
_See code: [src/commands/project/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/project/init.ts)_
|
|
1695
|
+
|
|
1696
|
+
## `hd project list`
|
|
1697
|
+
|
|
1698
|
+
List all projects with Jira configuration status
|
|
1699
|
+
|
|
1700
|
+
```
|
|
1701
|
+
USAGE
|
|
1702
|
+
$ hd project list [-d <value>] [--json]
|
|
1703
|
+
|
|
1704
|
+
FLAGS
|
|
1705
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1706
|
+
--json Output as JSON
|
|
1707
|
+
|
|
1708
|
+
DESCRIPTION
|
|
1709
|
+
List all projects with Jira configuration status
|
|
1710
|
+
|
|
1711
|
+
EXAMPLES
|
|
1712
|
+
$ hd project list
|
|
1713
|
+
|
|
1714
|
+
$ hd project list --json
|
|
1715
|
+
|
|
1716
|
+
$ hd project list --domain custom.hyperdrive.bot
|
|
1717
|
+
```
|
|
1718
|
+
|
|
1719
|
+
_See code: [src/commands/project/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/project/list.ts)_
|
|
1720
|
+
|
|
1721
|
+
## `hd project status PROJECT`
|
|
1722
|
+
|
|
1723
|
+
Show detailed status of a project including Jira config, repos, and hooks
|
|
1724
|
+
|
|
1725
|
+
```
|
|
1726
|
+
USAGE
|
|
1727
|
+
$ hd project status PROJECT [-d <value>] [--json]
|
|
1728
|
+
|
|
1729
|
+
ARGUMENTS
|
|
1730
|
+
PROJECT Project slug
|
|
1731
|
+
|
|
1732
|
+
FLAGS
|
|
1733
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1734
|
+
--json Output as JSON
|
|
1735
|
+
|
|
1736
|
+
DESCRIPTION
|
|
1737
|
+
Show detailed status of a project including Jira config, repos, and hooks
|
|
1738
|
+
|
|
1739
|
+
EXAMPLES
|
|
1740
|
+
$ hd project status my-project
|
|
1741
|
+
|
|
1742
|
+
$ hd project status my-project --json
|
|
1743
|
+
|
|
1744
|
+
$ hd project status my-project --domain custom.hyperdrive.bot
|
|
1745
|
+
```
|
|
1746
|
+
|
|
1747
|
+
_See code: [src/commands/project/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/project/status.ts)_
|
|
1748
|
+
|
|
1749
|
+
## `hd project sync PROJECT`
|
|
1750
|
+
|
|
1751
|
+
Generate architecture summaries for project repos via Claude analysis
|
|
1752
|
+
|
|
1753
|
+
```
|
|
1754
|
+
USAGE
|
|
1755
|
+
$ hd project sync PROJECT [-d <value>] [--json] [--repo <value>]
|
|
1756
|
+
|
|
1757
|
+
ARGUMENTS
|
|
1758
|
+
PROJECT Project slug or ID
|
|
1759
|
+
|
|
1760
|
+
FLAGS
|
|
1761
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1762
|
+
--json Output result as JSON
|
|
1763
|
+
--repo=<value> Sync only a specific repo by name
|
|
1764
|
+
|
|
1765
|
+
DESCRIPTION
|
|
1766
|
+
Generate architecture summaries for project repos via Claude analysis
|
|
1767
|
+
|
|
1768
|
+
EXAMPLES
|
|
1769
|
+
$ hd project sync my-project
|
|
1770
|
+
|
|
1771
|
+
$ hd project sync my-project --repo api
|
|
1772
|
+
|
|
1773
|
+
$ hd project sync my-project --json
|
|
1774
|
+
```
|
|
1775
|
+
|
|
1776
|
+
_See code: [src/commands/project/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/project/sync.ts)_
|
|
1777
|
+
|
|
1778
|
+
## `hd stage access [STAGE]`
|
|
1779
|
+
|
|
1780
|
+
View who has access to a stage
|
|
1781
|
+
|
|
1782
|
+
```
|
|
1783
|
+
USAGE
|
|
1784
|
+
$ hd stage access [STAGE] [-d <value>] [-f table|json]
|
|
1785
|
+
|
|
1786
|
+
ARGUMENTS
|
|
1787
|
+
STAGE Stage name to view access for
|
|
1788
|
+
|
|
1789
|
+
FLAGS
|
|
1790
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1791
|
+
-f, --format=<option> [default: table] Output format
|
|
1792
|
+
<options: table|json>
|
|
1793
|
+
|
|
1794
|
+
DESCRIPTION
|
|
1795
|
+
View who has access to a stage
|
|
1796
|
+
|
|
1797
|
+
EXAMPLES
|
|
1798
|
+
$ hd stage access
|
|
1799
|
+
|
|
1800
|
+
$ hd stage access develop
|
|
1801
|
+
|
|
1802
|
+
$ hd stage access develop --format json
|
|
1803
|
+
```
|
|
1804
|
+
|
|
1805
|
+
_See code: [src/commands/stage/access.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/stage/access.ts)_
|
|
1806
|
+
|
|
1531
1807
|
## `hd stage create`
|
|
1532
1808
|
|
|
1533
1809
|
Create a new stage
|
|
@@ -1535,7 +1811,7 @@ Create a new stage
|
|
|
1535
1811
|
```
|
|
1536
1812
|
USAGE
|
|
1537
1813
|
$ hd stage create [-a <value>] [--autoLaunch] [-b <value>] [--defaultStage] [--deletionProtection] [-d <value>]
|
|
1538
|
-
[-n <value>] [--production] [-p <value
|
|
1814
|
+
[-n <value>] [--production] [-p <value>...] [--provider <value>] [-r <value>...]
|
|
1539
1815
|
|
|
1540
1816
|
FLAGS
|
|
1541
1817
|
-a, --accountId=<value> AWS Account ID for deployments
|
|
@@ -1554,7 +1830,7 @@ DESCRIPTION
|
|
|
1554
1830
|
Create a new stage
|
|
1555
1831
|
```
|
|
1556
1832
|
|
|
1557
|
-
_See code: [src/commands/stage/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1833
|
+
_See code: [src/commands/stage/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/stage/create.ts)_
|
|
1558
1834
|
|
|
1559
1835
|
## `hd stage list`
|
|
1560
1836
|
|
|
@@ -1574,7 +1850,79 @@ EXAMPLES
|
|
|
1574
1850
|
$ hd stage list
|
|
1575
1851
|
```
|
|
1576
1852
|
|
|
1577
|
-
_See code: [src/commands/stage/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1853
|
+
_See code: [src/commands/stage/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/stage/list.ts)_
|
|
1854
|
+
|
|
1855
|
+
## `hd stage revoke [STAGE]`
|
|
1856
|
+
|
|
1857
|
+
Revoke access from a stage for a user or CI account
|
|
1858
|
+
|
|
1859
|
+
```
|
|
1860
|
+
USAGE
|
|
1861
|
+
$ hd stage revoke [STAGE] [-c <value> | -u <value>] [-d <value>] [-y]
|
|
1862
|
+
|
|
1863
|
+
ARGUMENTS
|
|
1864
|
+
STAGE Stage name to revoke access from
|
|
1865
|
+
|
|
1866
|
+
FLAGS
|
|
1867
|
+
-c, --ci=<value> CI account name or ID to revoke access from
|
|
1868
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1869
|
+
-u, --user=<value> User email to revoke access from
|
|
1870
|
+
-y, --yes Skip confirmation
|
|
1871
|
+
|
|
1872
|
+
DESCRIPTION
|
|
1873
|
+
Revoke access from a stage for a user or CI account
|
|
1874
|
+
|
|
1875
|
+
EXAMPLES
|
|
1876
|
+
$ hd stage revoke
|
|
1877
|
+
|
|
1878
|
+
$ hd stage revoke develop
|
|
1879
|
+
|
|
1880
|
+
$ hd stage revoke develop --user maria@company.com
|
|
1881
|
+
|
|
1882
|
+
$ hd stage revoke develop --ci github-actions
|
|
1883
|
+
```
|
|
1884
|
+
|
|
1885
|
+
_See code: [src/commands/stage/revoke.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/stage/revoke.ts)_
|
|
1886
|
+
|
|
1887
|
+
## `hd stage share [STAGE]`
|
|
1888
|
+
|
|
1889
|
+
Grant access to a stage for users or CI accounts
|
|
1890
|
+
|
|
1891
|
+
```
|
|
1892
|
+
USAGE
|
|
1893
|
+
$ hd stage share [STAGE...] [-c <value> | -u <value> | -g <value>] [-d <value>] [-r viewer|deployer|manager]
|
|
1894
|
+
[-y]
|
|
1895
|
+
|
|
1896
|
+
ARGUMENTS
|
|
1897
|
+
STAGE... Stage name to share access to
|
|
1898
|
+
|
|
1899
|
+
FLAGS
|
|
1900
|
+
-c, --ci=<value> CI account name or ID to grant access to
|
|
1901
|
+
-d, --domain=<value> Tenant domain (for multi-domain setups)
|
|
1902
|
+
-g, --group=<value> Group ID or name to grant access to
|
|
1903
|
+
-r, --role=<option> Role to grant
|
|
1904
|
+
<options: viewer|deployer|manager>
|
|
1905
|
+
-u, --user=<value> User email to grant access to
|
|
1906
|
+
-y, --yes Skip confirmation for production stages
|
|
1907
|
+
|
|
1908
|
+
DESCRIPTION
|
|
1909
|
+
Grant access to a stage for users or CI accounts
|
|
1910
|
+
|
|
1911
|
+
EXAMPLES
|
|
1912
|
+
$ hd stage share
|
|
1913
|
+
|
|
1914
|
+
$ hd stage share develop
|
|
1915
|
+
|
|
1916
|
+
$ hd stage share develop --user maria@company.com --role deployer
|
|
1917
|
+
|
|
1918
|
+
$ hd stage share develop --ci github-actions --role deployer
|
|
1919
|
+
|
|
1920
|
+
$ hd stage share develop --group "CI Accounts" --role deployer
|
|
1921
|
+
|
|
1922
|
+
$ hd stage share staging production --user dev@company.com --role viewer
|
|
1923
|
+
```
|
|
1924
|
+
|
|
1925
|
+
_See code: [src/commands/stage/share.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/stage/share.ts)_
|
|
1578
1926
|
|
|
1579
1927
|
## `hd test-api`
|
|
1580
1928
|
|
|
@@ -1594,5 +1942,5 @@ EXAMPLES
|
|
|
1594
1942
|
$ hd test-api
|
|
1595
1943
|
```
|
|
1596
1944
|
|
|
1597
|
-
_See code: [src/commands/test-api.ts](https://github.com/hyperdrive/hd/blob/v1.0.
|
|
1945
|
+
_See code: [src/commands/test-api.ts](https://github.com/hyperdrive/hd/blob/v1.0.8/src/commands/test-api.ts)_
|
|
1598
1946
|
<!-- commandsstop -->
|