@hyperdrive.bot/cli 1.0.7 → 1.0.9

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 (41) hide show
  1. package/README.md +307 -59
  2. package/dist/commands/account/list.d.ts +3 -0
  3. package/dist/commands/account/list.js +9 -2
  4. package/dist/commands/auth/logout.d.ts +11 -0
  5. package/dist/commands/auth/logout.js +86 -9
  6. package/dist/commands/git/connect.js +1 -0
  7. package/dist/commands/init.d.ts +1 -0
  8. package/dist/commands/init.js +20 -19
  9. package/dist/commands/jira/connect.d.ts +1 -0
  10. package/dist/commands/jira/connect.js +17 -6
  11. package/dist/commands/jira/hook/add.d.ts +17 -0
  12. package/dist/commands/jira/hook/add.js +147 -0
  13. package/dist/commands/jira/hook/list.d.ts +14 -0
  14. package/dist/commands/jira/hook/list.js +105 -0
  15. package/dist/commands/jira/hook/remove.d.ts +15 -0
  16. package/dist/commands/jira/hook/remove.js +119 -0
  17. package/dist/commands/jira/hook/toggle.d.ts +15 -0
  18. package/dist/commands/jira/hook/toggle.js +136 -0
  19. package/dist/commands/jira/status.js +11 -2
  20. package/dist/commands/project/init.d.ts +21 -0
  21. package/dist/commands/project/init.js +576 -0
  22. package/dist/commands/project/list.d.ts +10 -0
  23. package/dist/commands/project/list.js +119 -0
  24. package/dist/commands/project/status.d.ts +13 -0
  25. package/dist/commands/project/status.js +163 -0
  26. package/dist/commands/project/sync.d.ts +26 -0
  27. package/dist/commands/project/sync.js +406 -0
  28. package/dist/services/hyperdrive-sigv4.d.ts +125 -0
  29. package/dist/services/hyperdrive-sigv4.js +45 -0
  30. package/dist/services/tenant-service.d.ts +12 -0
  31. package/dist/services/tenant-service.js +44 -1
  32. package/dist/utils/account-flow.d.ts +2 -2
  33. package/dist/utils/account-flow.js +4 -4
  34. package/dist/utils/git-flow.d.ts +1 -0
  35. package/dist/utils/git-flow.js +2 -2
  36. package/dist/utils/hook-flow.d.ts +21 -0
  37. package/dist/utils/hook-flow.js +154 -0
  38. package/dist/utils/jira-flow.d.ts +2 -2
  39. package/dist/utils/jira-flow.js +4 -4
  40. package/oclif.manifest.json +591 -119
  41. package/package.json +5 -1
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.7 linux-x64 node-v22.22.0
23
+ @hyperdrive.bot/cli/1.0.9 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,6 +88,10 @@ 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)
87
95
  * [`hd stage access [STAGE]`](#hd-stage-access-stage)
88
96
  * [`hd stage create`](#hd-stage-create)
89
97
  * [`hd stage list`](#hd-stage-list)
@@ -118,7 +126,7 @@ EXAMPLES
118
126
  $ hd account add # Interactive mode
119
127
  ```
120
128
 
121
- _See code: [src/commands/account/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/account/add.ts)_
129
+ _See code: [src/commands/account/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/account/add.ts)_
122
130
 
123
131
  ## `hd account list`
124
132
 
@@ -126,7 +134,10 @@ List all AWS accounts registered with Hyperdrive
126
134
 
127
135
  ```
128
136
  USAGE
129
- $ hd account list
137
+ $ hd account list [-d <value>]
138
+
139
+ FLAGS
140
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
130
141
 
131
142
  DESCRIPTION
132
143
  List all AWS accounts registered with Hyperdrive
@@ -135,7 +146,7 @@ EXAMPLES
135
146
  $ hd account list
136
147
  ```
137
148
 
138
- _See code: [src/commands/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/account/list.ts)_
149
+ _See code: [src/commands/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/account/list.ts)_
139
150
 
140
151
  ## `hd account remove`
141
152
 
@@ -159,7 +170,7 @@ EXAMPLES
159
170
  $ hd account remove --accountId 123456789012 --force
160
171
  ```
161
172
 
162
- _See code: [src/commands/account/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/account/remove.ts)_
173
+ _See code: [src/commands/account/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/account/remove.ts)_
163
174
 
164
175
  ## `hd auth login`
165
176
 
@@ -187,24 +198,30 @@ EXAMPLES
187
198
  $ hd auth login --ci --domain acme.hyperdrive.bot
188
199
  ```
189
200
 
190
- _See code: [src/commands/auth/login.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/login.ts)_
201
+ _See code: [src/commands/auth/login.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/auth/login.ts)_
191
202
 
192
203
  ## `hd auth logout`
193
204
 
194
- Remove stored credentials and logout
205
+ Remove stored credentials and logout. Use --domain to logout from a single domain. Without flags, removes all credentials and stored configuration.
195
206
 
196
207
  ```
197
208
  USAGE
198
- $ hd auth logout
209
+ $ hd auth logout [-d <value>]
210
+
211
+ FLAGS
212
+ -d, --domain=<value> Logout from a specific domain only (keeps other domains and config intact)
199
213
 
200
214
  DESCRIPTION
201
- Remove stored credentials and logout
215
+ Remove stored credentials and logout. Use --domain to logout from a single domain. Without flags, removes all
216
+ credentials and stored configuration.
202
217
 
203
218
  EXAMPLES
204
219
  $ hd auth logout
220
+
221
+ $ hd auth logout --domain acme.hyperdrive.bot
205
222
  ```
206
223
 
207
- _See code: [src/commands/auth/logout.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/logout.ts)_
224
+ _See code: [src/commands/auth/logout.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/auth/logout.ts)_
208
225
 
209
226
  ## `hd auth refresh`
210
227
 
@@ -221,7 +238,7 @@ EXAMPLES
221
238
  $ hd auth refresh
222
239
  ```
223
240
 
224
- _See code: [src/commands/auth/refresh.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/refresh.ts)_
241
+ _See code: [src/commands/auth/refresh.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/auth/refresh.ts)_
225
242
 
226
243
  ## `hd auth status`
227
244
 
@@ -238,7 +255,7 @@ EXAMPLES
238
255
  $ hd auth status
239
256
  ```
240
257
 
241
- _See code: [src/commands/auth/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/status.ts)_
258
+ _See code: [src/commands/auth/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/auth/status.ts)_
242
259
 
243
260
  ## `hd ci account create`
244
261
 
@@ -269,7 +286,7 @@ EXAMPLES
269
286
  $ hd ci account create --name="gitlab-staging" --scope=deploy --scope=parameter:read
270
287
  ```
271
288
 
272
- _See code: [src/commands/ci/account/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/ci/account/create.ts)_
289
+ _See code: [src/commands/ci/account/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/ci/account/create.ts)_
273
290
 
274
291
  ## `hd ci account delete [ACCOUNTID]`
275
292
 
@@ -295,7 +312,7 @@ EXAMPLES
295
312
  $ hd ci account delete <account-id> --force
296
313
  ```
297
314
 
298
- _See code: [src/commands/ci/account/delete.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/ci/account/delete.ts)_
315
+ _See code: [src/commands/ci/account/delete.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/ci/account/delete.ts)_
299
316
 
300
317
  ## `hd ci account list`
301
318
 
@@ -318,7 +335,7 @@ EXAMPLES
318
335
  $ hd ci account list --json
319
336
  ```
320
337
 
321
- _See code: [src/commands/ci/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/ci/account/list.ts)_
338
+ _See code: [src/commands/ci/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/ci/account/list.ts)_
322
339
 
323
340
  ## `hd config get KEY`
324
341
 
@@ -340,7 +357,7 @@ EXAMPLES
340
357
  $ hd config get bootstrap-url
341
358
  ```
342
359
 
343
- _See code: [src/commands/config/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/config/get.ts)_
360
+ _See code: [src/commands/config/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/config/get.ts)_
344
361
 
345
362
  ## `hd config set KEY VALUE`
346
363
 
@@ -367,7 +384,7 @@ EXAMPLES
367
384
  $ hd config set region us-west-2
368
385
  ```
369
386
 
370
- _See code: [src/commands/config/set.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/config/set.ts)_
387
+ _See code: [src/commands/config/set.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/config/set.ts)_
371
388
 
372
389
  ## `hd config show`
373
390
 
@@ -384,7 +401,7 @@ EXAMPLES
384
401
  $ hd config show
385
402
  ```
386
403
 
387
- _See code: [src/commands/config/show.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/config/show.ts)_
404
+ _See code: [src/commands/config/show.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/config/show.ts)_
388
405
 
389
406
  ## `hd deployment create`
390
407
 
@@ -399,7 +416,7 @@ FLAGS
399
416
  -c, --commit=<value> (required) Commit hash
400
417
  -d, --domain=<value> Tenant domain (for multi-domain setups)
401
418
  -m, --moduleSlug=<value> (required) Module slug
402
- -n, --name=<value> [default: Deployment-2026-02-06-14-27-26] The name of the deployment
419
+ -n, --name=<value> [default: Deployment-2026-02-08-12-04-16] The name of the deployment
403
420
  -r, --regions=<value>... [default: ] Regions for the deployment
404
421
  -s, --stage=<value> (required) Stage for the deployment
405
422
  -v, --verbose Show detailed build logs
@@ -418,7 +435,7 @@ EXAMPLES
418
435
  $ hd deployment create --stage="dev" --commit="abc123" --verbose
419
436
  ```
420
437
 
421
- _See code: [src/commands/deployment/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/create.ts)_
438
+ _See code: [src/commands/deployment/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/deployment/create.ts)_
422
439
 
423
440
  ## `hd deployment get`
424
441
 
@@ -443,7 +460,7 @@ EXAMPLES
443
460
  $ hd deployment get --name="prod-release-v1" --stage="prod"
444
461
  ```
445
462
 
446
- _See code: [src/commands/deployment/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/get.ts)_
463
+ _See code: [src/commands/deployment/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/deployment/get.ts)_
447
464
 
448
465
  ## `hd deployment launch`
449
466
 
@@ -470,7 +487,7 @@ EXAMPLES
470
487
  $ hd deployment launch --name="prod-release" --stage="prod" --region="us-west-2"
471
488
  ```
472
489
 
473
- _See code: [src/commands/deployment/launch.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/launch.ts)_
490
+ _See code: [src/commands/deployment/launch.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/deployment/launch.ts)_
474
491
 
475
492
  ## `hd deployment list`
476
493
 
@@ -494,7 +511,7 @@ EXAMPLES
494
511
  $ hd deployment list --stage="prod" --moduleSlug="my-api"
495
512
  ```
496
513
 
497
- _See code: [src/commands/deployment/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/list.ts)_
514
+ _See code: [src/commands/deployment/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/deployment/list.ts)_
498
515
 
499
516
  ## `hd domain current`
500
517
 
@@ -511,7 +528,7 @@ EXAMPLES
511
528
  $ hd domain current
512
529
  ```
513
530
 
514
- _See code: [src/commands/domain/current.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/domain/current.ts)_
531
+ _See code: [src/commands/domain/current.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/domain/current.ts)_
515
532
 
516
533
  ## `hd domain list`
517
534
 
@@ -528,7 +545,7 @@ EXAMPLES
528
545
  $ hd domain list
529
546
  ```
530
547
 
531
- _See code: [src/commands/domain/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/domain/list.ts)_
548
+ _See code: [src/commands/domain/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/domain/list.ts)_
532
549
 
533
550
  ## `hd domain switch DOMAIN`
534
551
 
@@ -548,7 +565,7 @@ EXAMPLES
548
565
  $ hd domain switch acme.hyperdrive.bot
549
566
  ```
550
567
 
551
- _See code: [src/commands/domain/switch.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/domain/switch.ts)_
568
+ _See code: [src/commands/domain/switch.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/domain/switch.ts)_
552
569
 
553
570
  ## `hd example [FILE]`
554
571
 
@@ -572,7 +589,7 @@ EXAMPLES
572
589
  $ hd example
573
590
  ```
574
591
 
575
- _See code: [src/commands/example.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/example.ts)_
592
+ _See code: [src/commands/example.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/example.ts)_
576
593
 
577
594
  ## `hd git connect`
578
595
 
@@ -596,7 +613,7 @@ EXAMPLES
596
613
  $ hd git connect --provider=gitlab
597
614
  ```
598
615
 
599
- _See code: [src/commands/git/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/connect.ts)_
616
+ _See code: [src/commands/git/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/git/connect.ts)_
600
617
 
601
618
  ## `hd git disconnect`
602
619
 
@@ -621,7 +638,7 @@ EXAMPLES
621
638
  $ hd git disconnect --provider=github --installation-id=12345
622
639
  ```
623
640
 
624
- _See code: [src/commands/git/disconnect.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/disconnect.ts)_
641
+ _See code: [src/commands/git/disconnect.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/git/disconnect.ts)_
625
642
 
626
643
  ## `hd git list`
627
644
 
@@ -645,7 +662,7 @@ EXAMPLES
645
662
  $ hd git list --provider=github
646
663
  ```
647
664
 
648
- _See code: [src/commands/git/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/list.ts)_
665
+ _See code: [src/commands/git/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/git/list.ts)_
649
666
 
650
667
  ## `hd git sync`
651
668
 
@@ -681,7 +698,7 @@ EXAMPLES
681
698
  $ hd git sync --all --remote upstream --merge-strategy no-ff
682
699
  ```
683
700
 
684
- _See code: [src/commands/git/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/sync.ts)_
701
+ _See code: [src/commands/git/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/git/sync.ts)_
685
702
 
686
703
  ## `hd help [COMMAND]`
687
704
 
@@ -718,7 +735,7 @@ EXAMPLES
718
735
  $ hd init
719
736
  ```
720
737
 
721
- _See code: [src/commands/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/init.ts)_
738
+ _See code: [src/commands/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/init.ts)_
722
739
 
723
740
  ## `hd jira connect`
724
741
 
@@ -726,10 +743,11 @@ Register your Jira instance with Hyperdrive (run BEFORE installing the Forge app
726
743
 
727
744
  ```
728
745
  USAGE
729
- $ hd jira connect [-d <value>]
746
+ $ hd jira connect [-d <value>] [-j <value>]
730
747
 
731
748
  FLAGS
732
- -d, --domain=<value> Your Jira domain (e.g., dev-squad.atlassian.net)
749
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
750
+ -j, --jira-domain=<value> Your Jira domain (e.g., dev-squad.atlassian.net)
733
751
 
734
752
  DESCRIPTION
735
753
  Register your Jira instance with Hyperdrive (run BEFORE installing the Forge app)
@@ -737,10 +755,127 @@ DESCRIPTION
737
755
  EXAMPLES
738
756
  $ hd jira connect
739
757
 
740
- $ hd jira connect --domain dev-squad.atlassian.net
758
+ $ hd jira connect --jira-domain dev-squad.atlassian.net
759
+
760
+ $ hd jira connect --domain sankhya.hyperdrivebot.dev --jira-domain dev-squad.atlassian.net
761
+ ```
762
+
763
+ _See code: [src/commands/jira/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/jira/connect.ts)_
764
+
765
+ ## `hd jira hook add PROJECT`
766
+
767
+ Add a status transition hook to a Jira-linked project
768
+
769
+ ```
770
+ USAGE
771
+ $ hd jira hook add PROJECT [--action <value>] [--config <value>] [-d <value>] [--json] [--status <value>]
772
+
773
+ ARGUMENTS
774
+ PROJECT Hyperdrive project ID or slug
775
+
776
+ FLAGS
777
+ -d, --domain=<value> Hyperdrive tenant domain
778
+ --action=<value> Action type (slack-notify, adhb-enrich, webhook, ci-trigger)
779
+ --config=<value> Action config as JSON string
780
+ --json Output raw JSON
781
+ --status=<value> Trigger status (Jira status name or "*" for all)
782
+
783
+ DESCRIPTION
784
+ Add a status transition hook to a Jira-linked project
785
+
786
+ EXAMPLES
787
+ $ hd jira hook add my-project
788
+
789
+ $ hd jira hook add my-project --status "In Progress" --action adhb-enrich --config '{"priority":"high"}'
790
+
791
+ $ hd jira hook add my-project --json
792
+ ```
793
+
794
+ _See code: [src/commands/jira/hook/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/jira/hook/add.ts)_
795
+
796
+ ## `hd jira hook list PROJECT`
797
+
798
+ List status transition hooks for a Jira-linked project
799
+
800
+ ```
801
+ USAGE
802
+ $ hd jira hook list PROJECT [-d <value>] [--json]
803
+
804
+ ARGUMENTS
805
+ PROJECT Hyperdrive project ID or slug
806
+
807
+ FLAGS
808
+ -d, --domain=<value> Hyperdrive tenant domain
809
+ --json Output raw JSON
810
+
811
+ DESCRIPTION
812
+ List status transition hooks for a Jira-linked project
813
+
814
+ EXAMPLES
815
+ $ hd jira hook list my-project
816
+
817
+ $ hd jira hook list my-project --json
818
+ ```
819
+
820
+ _See code: [src/commands/jira/hook/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/jira/hook/list.ts)_
821
+
822
+ ## `hd jira hook remove PROJECT`
823
+
824
+ Remove a status transition hook from a Jira-linked project
825
+
826
+ ```
827
+ USAGE
828
+ $ hd jira hook remove PROJECT [-d <value>] [--hook-id <value>] [--json]
829
+
830
+ ARGUMENTS
831
+ PROJECT Hyperdrive project ID or slug
832
+
833
+ FLAGS
834
+ -d, --domain=<value> Hyperdrive tenant domain
835
+ --hook-id=<value> Hook ID to remove (skips interactive selection)
836
+ --json Output raw JSON
837
+
838
+ DESCRIPTION
839
+ Remove a status transition hook from a Jira-linked project
840
+
841
+ EXAMPLES
842
+ $ hd jira hook remove my-project
843
+
844
+ $ hd jira hook remove my-project --hook-id hook-123
845
+
846
+ $ hd jira hook remove my-project --hook-id hook-123 --json
847
+ ```
848
+
849
+ _See code: [src/commands/jira/hook/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/jira/hook/remove.ts)_
850
+
851
+ ## `hd jira hook toggle PROJECT`
852
+
853
+ Toggle the enabled state of a status transition hook
854
+
855
+ ```
856
+ USAGE
857
+ $ hd jira hook toggle PROJECT [-d <value>] [--hook-id <value>] [--json]
858
+
859
+ ARGUMENTS
860
+ PROJECT Hyperdrive project ID or slug
861
+
862
+ FLAGS
863
+ -d, --domain=<value> Hyperdrive tenant domain
864
+ --hook-id=<value> Hook ID to toggle (skips interactive selection)
865
+ --json Output raw JSON
866
+
867
+ DESCRIPTION
868
+ Toggle the enabled state of a status transition hook
869
+
870
+ EXAMPLES
871
+ $ hd jira hook toggle my-project
872
+
873
+ $ hd jira hook toggle my-project --hook-id hook-123
874
+
875
+ $ hd jira hook toggle my-project --hook-id hook-123 --json
741
876
  ```
742
877
 
743
- _See code: [src/commands/jira/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/jira/connect.ts)_
878
+ _See code: [src/commands/jira/hook/toggle.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/jira/hook/toggle.ts)_
744
879
 
745
880
  ## `hd jira status`
746
881
 
@@ -760,7 +895,7 @@ EXAMPLES
760
895
  $ hd jira status
761
896
  ```
762
897
 
763
- _See code: [src/commands/jira/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/jira/status.ts)_
898
+ _See code: [src/commands/jira/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/jira/status.ts)_
764
899
 
765
900
  ## `hd module analyze`
766
901
 
@@ -788,7 +923,7 @@ EXAMPLES
788
923
  $ hd module analyze --slug="my-module" --verbose
789
924
  ```
790
925
 
791
- _See code: [src/commands/module/analyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/analyze.ts)_
926
+ _See code: [src/commands/module/analyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/analyze.ts)_
792
927
 
793
928
  ## `hd module create`
794
929
 
@@ -840,7 +975,7 @@ EXAMPLES
840
975
  $ hd module create --name="API Service" --framework="Serverless Framework"
841
976
  ```
842
977
 
843
- _See code: [src/commands/module/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/create.ts)_
978
+ _See code: [src/commands/module/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/create.ts)_
844
979
 
845
980
  ## `hd module destroy`
846
981
 
@@ -864,7 +999,7 @@ EXAMPLES
864
999
  $ hd module destroy --slug="old-project" --force
865
1000
  ```
866
1001
 
867
- _See code: [src/commands/module/destroy.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/destroy.ts)_
1002
+ _See code: [src/commands/module/destroy.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/destroy.ts)_
868
1003
 
869
1004
  ## `hd module get`
870
1005
 
@@ -887,7 +1022,7 @@ EXAMPLES
887
1022
  $ hd module get
888
1023
  ```
889
1024
 
890
- _See code: [src/commands/module/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/get.ts)_
1025
+ _See code: [src/commands/module/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/get.ts)_
891
1026
 
892
1027
  ## `hd module link`
893
1028
 
@@ -910,7 +1045,7 @@ EXAMPLES
910
1045
  $ hd module link --originSlug="vixting-integration" --targetSlug="vixting-api" --parameter="VLOW_API_ENDPOINT_PREFIX"
911
1046
  ```
912
1047
 
913
- _See code: [src/commands/module/link.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/link.ts)_
1048
+ _See code: [src/commands/module/link.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/link.ts)_
914
1049
 
915
1050
  ## `hd module list`
916
1051
 
@@ -930,7 +1065,7 @@ EXAMPLES
930
1065
  $ hd module list
931
1066
  ```
932
1067
 
933
- _See code: [src/commands/module/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/list.ts)_
1068
+ _See code: [src/commands/module/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/list.ts)_
934
1069
 
935
1070
  ## `hd module reanalyze`
936
1071
 
@@ -959,7 +1094,7 @@ EXAMPLES
959
1094
  $ hd module reanalyze -s my-module -p "Exclude source maps from S3 upload" --verbose
960
1095
  ```
961
1096
 
962
- _See code: [src/commands/module/reanalyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/reanalyze.ts)_
1097
+ _See code: [src/commands/module/reanalyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/reanalyze.ts)_
963
1098
 
964
1099
  ## `hd module update`
965
1100
 
@@ -1015,7 +1150,7 @@ EXAMPLES
1015
1150
  $ hd module update --slug="my-module" --name="New Name" --framework="React.js"
1016
1151
  ```
1017
1152
 
1018
- _See code: [src/commands/module/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/update.ts)_
1153
+ _See code: [src/commands/module/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/module/update.ts)_
1019
1154
 
1020
1155
  ## `hd parameter add`
1021
1156
 
@@ -1045,7 +1180,7 @@ EXAMPLES
1045
1180
  $ hd parameter add --key="PORT" --value="3000"
1046
1181
  ```
1047
1182
 
1048
- _See code: [src/commands/parameter/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/add.ts)_
1183
+ _See code: [src/commands/parameter/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/add.ts)_
1049
1184
 
1050
1185
  ## `hd parameter backfill`
1051
1186
 
@@ -1070,7 +1205,7 @@ EXAMPLES
1070
1205
  $ hd parameter backfill --accountId="123456789012"
1071
1206
  ```
1072
1207
 
1073
- _See code: [src/commands/parameter/backfill.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/backfill.ts)_
1208
+ _See code: [src/commands/parameter/backfill.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/backfill.ts)_
1074
1209
 
1075
1210
  ## `hd parameter clear`
1076
1211
 
@@ -1097,7 +1232,7 @@ EXAMPLES
1097
1232
  $ hd parameter clear --stage="prod" --specific --force
1098
1233
  ```
1099
1234
 
1100
- _See code: [src/commands/parameter/clear.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/clear.ts)_
1235
+ _See code: [src/commands/parameter/clear.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/clear.ts)_
1101
1236
 
1102
1237
  ## `hd parameter list`
1103
1238
 
@@ -1126,7 +1261,7 @@ EXAMPLES
1126
1261
  $ hd parameter list --all-stages
1127
1262
  ```
1128
1263
 
1129
- _See code: [src/commands/parameter/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/list.ts)_
1264
+ _See code: [src/commands/parameter/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/list.ts)_
1130
1265
 
1131
1266
  ## `hd parameter pull`
1132
1267
 
@@ -1155,7 +1290,7 @@ EXAMPLES
1155
1290
  $ hd parameter pull --stage="dev" --no-backup
1156
1291
  ```
1157
1292
 
1158
- _See code: [src/commands/parameter/pull.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/pull.ts)_
1293
+ _See code: [src/commands/parameter/pull.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/pull.ts)_
1159
1294
 
1160
1295
  ## `hd parameter remove`
1161
1296
 
@@ -1185,7 +1320,7 @@ EXAMPLES
1185
1320
  $ hd parameter remove --key="PORT" --force
1186
1321
  ```
1187
1322
 
1188
- _See code: [src/commands/parameter/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/remove.ts)_
1323
+ _See code: [src/commands/parameter/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/remove.ts)_
1189
1324
 
1190
1325
  ## `hd parameter sync`
1191
1326
 
@@ -1214,7 +1349,7 @@ EXAMPLES
1214
1349
  $ hd parameter sync --no-specific --stage="all"
1215
1350
  ```
1216
1351
 
1217
- _See code: [src/commands/parameter/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/sync.ts)_
1352
+ _See code: [src/commands/parameter/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/sync.ts)_
1218
1353
 
1219
1354
  ## `hd parameter update`
1220
1355
 
@@ -1242,7 +1377,7 @@ EXAMPLES
1242
1377
  $ hd parameter update --key="DB_HOST" --value="new-host" --specific
1243
1378
  ```
1244
1379
 
1245
- _See code: [src/commands/parameter/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/update.ts)_
1380
+ _See code: [src/commands/parameter/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/parameter/update.ts)_
1246
1381
 
1247
1382
  ## `hd plugins`
1248
1383
 
@@ -1533,6 +1668,119 @@ DESCRIPTION
1533
1668
 
1534
1669
  _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.0.19/src/commands/plugins/update.ts)_
1535
1670
 
1671
+ ## `hd project init`
1672
+
1673
+ Initialize a project with Jira integration, repos, and status mapping
1674
+
1675
+ ```
1676
+ USAGE
1677
+ $ hd project init [-d <value>] [--jira-key <value>] [--json] [--name <value>] [--project <value>] [--repo
1678
+ <value>...] [--status-map <value>...]
1679
+
1680
+ FLAGS
1681
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1682
+ --jira-key=<value> Jira project key (e.g., PROJ)
1683
+ --json Output result as JSON (non-interactive mode)
1684
+ --name=<value> Name for a new project (used with --json)
1685
+ --project=<value> Existing project slug to configure
1686
+ --repo=<value>... Repo in format "name|gitRemote|provider|branch" (repeatable, used with --json)
1687
+ --status-map=<value>... Status mapping in format "JiraStatus=normalizedState" (repeatable, used with --json)
1688
+
1689
+ DESCRIPTION
1690
+ Initialize a project with Jira integration, repos, and status mapping
1691
+
1692
+ EXAMPLES
1693
+ $ hd project init
1694
+
1695
+ $ hd project init --project my-project --jira-key PROJ
1696
+
1697
+ $ hd project init --json --name "My Project" --jira-key PROJ
1698
+ ```
1699
+
1700
+ _See code: [src/commands/project/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/project/init.ts)_
1701
+
1702
+ ## `hd project list`
1703
+
1704
+ List all projects with Jira configuration status
1705
+
1706
+ ```
1707
+ USAGE
1708
+ $ hd project list [-d <value>] [--json]
1709
+
1710
+ FLAGS
1711
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1712
+ --json Output as JSON
1713
+
1714
+ DESCRIPTION
1715
+ List all projects with Jira configuration status
1716
+
1717
+ EXAMPLES
1718
+ $ hd project list
1719
+
1720
+ $ hd project list --json
1721
+
1722
+ $ hd project list --domain custom.hyperdrive.bot
1723
+ ```
1724
+
1725
+ _See code: [src/commands/project/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/project/list.ts)_
1726
+
1727
+ ## `hd project status PROJECT`
1728
+
1729
+ Show detailed status of a project including Jira config, repos, and hooks
1730
+
1731
+ ```
1732
+ USAGE
1733
+ $ hd project status PROJECT [-d <value>] [--json]
1734
+
1735
+ ARGUMENTS
1736
+ PROJECT Project slug
1737
+
1738
+ FLAGS
1739
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1740
+ --json Output as JSON
1741
+
1742
+ DESCRIPTION
1743
+ Show detailed status of a project including Jira config, repos, and hooks
1744
+
1745
+ EXAMPLES
1746
+ $ hd project status my-project
1747
+
1748
+ $ hd project status my-project --json
1749
+
1750
+ $ hd project status my-project --domain custom.hyperdrive.bot
1751
+ ```
1752
+
1753
+ _See code: [src/commands/project/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/project/status.ts)_
1754
+
1755
+ ## `hd project sync PROJECT`
1756
+
1757
+ Generate architecture summaries for project repos via Claude analysis
1758
+
1759
+ ```
1760
+ USAGE
1761
+ $ hd project sync PROJECT [-d <value>] [--json] [--repo <value>]
1762
+
1763
+ ARGUMENTS
1764
+ PROJECT Project slug or ID
1765
+
1766
+ FLAGS
1767
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1768
+ --json Output result as JSON
1769
+ --repo=<value> Sync only a specific repo by name
1770
+
1771
+ DESCRIPTION
1772
+ Generate architecture summaries for project repos via Claude analysis
1773
+
1774
+ EXAMPLES
1775
+ $ hd project sync my-project
1776
+
1777
+ $ hd project sync my-project --repo api
1778
+
1779
+ $ hd project sync my-project --json
1780
+ ```
1781
+
1782
+ _See code: [src/commands/project/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/project/sync.ts)_
1783
+
1536
1784
  ## `hd stage access [STAGE]`
1537
1785
 
1538
1786
  View who has access to a stage
@@ -1560,7 +1808,7 @@ EXAMPLES
1560
1808
  $ hd stage access develop --format json
1561
1809
  ```
1562
1810
 
1563
- _See code: [src/commands/stage/access.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/access.ts)_
1811
+ _See code: [src/commands/stage/access.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/stage/access.ts)_
1564
1812
 
1565
1813
  ## `hd stage create`
1566
1814
 
@@ -1588,7 +1836,7 @@ DESCRIPTION
1588
1836
  Create a new stage
1589
1837
  ```
1590
1838
 
1591
- _See code: [src/commands/stage/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/create.ts)_
1839
+ _See code: [src/commands/stage/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/stage/create.ts)_
1592
1840
 
1593
1841
  ## `hd stage list`
1594
1842
 
@@ -1608,7 +1856,7 @@ EXAMPLES
1608
1856
  $ hd stage list
1609
1857
  ```
1610
1858
 
1611
- _See code: [src/commands/stage/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/list.ts)_
1859
+ _See code: [src/commands/stage/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/stage/list.ts)_
1612
1860
 
1613
1861
  ## `hd stage revoke [STAGE]`
1614
1862
 
@@ -1640,7 +1888,7 @@ EXAMPLES
1640
1888
  $ hd stage revoke develop --ci github-actions
1641
1889
  ```
1642
1890
 
1643
- _See code: [src/commands/stage/revoke.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/revoke.ts)_
1891
+ _See code: [src/commands/stage/revoke.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/stage/revoke.ts)_
1644
1892
 
1645
1893
  ## `hd stage share [STAGE]`
1646
1894
 
@@ -1680,7 +1928,7 @@ EXAMPLES
1680
1928
  $ hd stage share staging production --user dev@company.com --role viewer
1681
1929
  ```
1682
1930
 
1683
- _See code: [src/commands/stage/share.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/share.ts)_
1931
+ _See code: [src/commands/stage/share.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/stage/share.ts)_
1684
1932
 
1685
1933
  ## `hd test-api`
1686
1934
 
@@ -1700,5 +1948,5 @@ EXAMPLES
1700
1948
  $ hd test-api
1701
1949
  ```
1702
1950
 
1703
- _See code: [src/commands/test-api.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/test-api.ts)_
1951
+ _See code: [src/commands/test-api.ts](https://github.com/hyperdrive/hd/blob/v1.0.9/src/commands/test-api.ts)_
1704
1952
  <!-- commandsstop -->