hereya-cli 0.87.0 → 0.88.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/README.md +80 -163
  2. package/dist/backend/index.js +0 -24
  3. package/dist/commands/app/deploy/index.d.ts +0 -2
  4. package/dist/commands/app/deploy/index.js +0 -17
  5. package/dist/commands/app/deployments/index.d.ts +0 -4
  6. package/dist/commands/app/deployments/index.js +1 -20
  7. package/dist/commands/app/destroy/index.d.ts +0 -2
  8. package/dist/commands/app/destroy/index.js +0 -17
  9. package/dist/commands/app/env/index.d.ts +0 -2
  10. package/dist/commands/app/env/index.js +0 -17
  11. package/dist/commands/app/list/index.d.ts +0 -4
  12. package/dist/commands/app/list/index.js +1 -20
  13. package/dist/commands/app/status/index.d.ts +0 -2
  14. package/dist/commands/app/status/index.js +0 -17
  15. package/dist/commands/deploy/index.d.ts +0 -2
  16. package/dist/commands/deploy/index.js +56 -69
  17. package/dist/commands/init/index.d.ts +0 -2
  18. package/dist/commands/init/index.js +1 -18
  19. package/dist/commands/login/index.js +0 -5
  20. package/dist/commands/publish/index.d.ts +0 -2
  21. package/dist/commands/publish/index.js +0 -17
  22. package/dist/commands/run/index.d.ts +0 -2
  23. package/dist/commands/run/index.js +0 -17
  24. package/dist/commands/search/index.d.ts +0 -2
  25. package/dist/commands/search/index.js +21 -38
  26. package/dist/commands/undeploy/index.d.ts +0 -2
  27. package/dist/commands/undeploy/index.js +14 -27
  28. package/dist/commands/up/index.d.ts +0 -2
  29. package/dist/commands/up/index.js +1 -17
  30. package/dist/commands/workspace/executor/install/index.d.ts +0 -2
  31. package/dist/commands/workspace/executor/install/index.js +1 -17
  32. package/dist/commands/workspace/executor/token/index.d.ts +0 -2
  33. package/dist/commands/workspace/executor/token/index.js +0 -17
  34. package/dist/commands/workspace/executor/uninstall/index.d.ts +0 -2
  35. package/dist/commands/workspace/executor/uninstall/index.js +1 -17
  36. package/dist/executor/context.js +15 -12
  37. package/dist/lib/hereya-token.js +11 -10
  38. package/dist/lib/package/index.js +24 -20
  39. package/oclif.manifest.json +81 -255
  40. package/package.json +1 -1
  41. package/dist/commands/git/index.d.ts +0 -12
  42. package/dist/commands/git/index.js +0 -116
  43. package/dist/lib/active-cloud.d.ts +0 -31
  44. package/dist/lib/active-cloud.js +0 -55
  45. package/dist/lib/ephemeral-token.d.ts +0 -45
  46. package/dist/lib/ephemeral-token.js +0 -89
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g hereya-cli
21
21
  $ hereya COMMAND
22
22
  running command...
23
23
  $ hereya (--version)
24
- hereya-cli/0.87.0 linux-x64 node-v24.14.1
24
+ hereya-cli/0.88.0 linux-x64 node-v24.14.1
25
25
  $ hereya --help [COMMAND]
26
26
  USAGE
27
27
  $ hereya COMMAND
@@ -66,7 +66,6 @@ USAGE
66
66
  * [`hereya flow remove PACKAGE`](#hereya-flow-remove-package)
67
67
  * [`hereya flow run CMD`](#hereya-flow-run-cmd)
68
68
  * [`hereya flow up`](#hereya-flow-up)
69
- * [`hereya git`](#hereya-git)
70
69
  * [`hereya help [COMMAND]`](#hereya-help-command)
71
70
  * [`hereya import PACKAGE`](#hereya-import-package)
72
71
  * [`hereya init PROJECT`](#hereya-init-project)
@@ -128,7 +127,7 @@ EXAMPLES
128
127
  $ hereya add cloudy/docker_postgres
129
128
  ```
130
129
 
131
- _See code: [src/commands/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/add/index.ts)_
130
+ _See code: [src/commands/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/add/index.ts)_
132
131
 
133
132
  ## `hereya app deploy NAME`
134
133
 
@@ -136,8 +135,7 @@ Deploy a hereya-app to a workspace.
136
135
 
137
136
  ```
138
137
  USAGE
139
- $ hereya app deploy NAME -w <value> [--chdir <value>] [--local] [-p <value>...] [--token <value>] [--version
140
- <value>]
138
+ $ hereya app deploy NAME -w <value> [--chdir <value>] [--local] [-p <value>...] [--version <value>]
141
139
 
142
140
  ARGUMENTS
143
141
  NAME app name in org/name format
@@ -150,9 +148,6 @@ FLAGS
150
148
  Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR
151
149
  environment variable.
152
150
  --local force local execution (skip remote executor)
153
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written
154
- to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN
155
- environment variable.
156
151
  --version=<value> specific app version to deploy (defaults to latest)
157
152
 
158
153
  DESCRIPTION
@@ -166,7 +161,7 @@ EXAMPLES
166
161
  $ hereya app deploy my-org/my-app -w prod -p organizationId=org-123
167
162
  ```
168
163
 
169
- _See code: [src/commands/app/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/deploy/index.ts)_
164
+ _See code: [src/commands/app/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/deploy/index.ts)_
170
165
 
171
166
  ## `hereya app deployments NAME`
172
167
 
@@ -174,15 +169,11 @@ List workspaces a hereya-app has been deployed to.
174
169
 
175
170
  ```
176
171
  USAGE
177
- $ hereya app deployments NAME [--token <value>]
172
+ $ hereya app deployments NAME
178
173
 
179
174
  ARGUMENTS
180
175
  NAME app name in org/name format
181
176
 
182
- FLAGS
183
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
184
- keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
185
-
186
177
  DESCRIPTION
187
178
  List workspaces a hereya-app has been deployed to.
188
179
 
@@ -190,7 +181,7 @@ EXAMPLES
190
181
  $ hereya app deployments my-org/my-app
191
182
  ```
192
183
 
193
- _See code: [src/commands/app/deployments/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/deployments/index.ts)_
184
+ _See code: [src/commands/app/deployments/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/deployments/index.ts)_
194
185
 
195
186
  ## `hereya app destroy NAME`
196
187
 
@@ -198,7 +189,7 @@ Destroy a hereya-app deployment from a workspace.
198
189
 
199
190
  ```
200
191
  USAGE
201
- $ hereya app destroy NAME -w <value> [--chdir <value>] [--local] [-p <value>...] [--token <value>]
192
+ $ hereya app destroy NAME -w <value> [--chdir <value>] [--local] [-p <value>...]
202
193
 
203
194
  ARGUMENTS
204
195
  NAME app name in org/name format
@@ -211,9 +202,6 @@ FLAGS
211
202
  Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR
212
203
  environment variable.
213
204
  --local force local execution (skip remote executor)
214
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written
215
- to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN
216
- environment variable.
217
205
 
218
206
  DESCRIPTION
219
207
  Destroy a hereya-app deployment from a workspace.
@@ -222,7 +210,7 @@ EXAMPLES
222
210
  $ hereya app destroy my-org/my-app -w my-workspace
223
211
  ```
224
212
 
225
- _See code: [src/commands/app/destroy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/destroy/index.ts)_
213
+ _See code: [src/commands/app/destroy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/destroy/index.ts)_
226
214
 
227
215
  ## `hereya app env NAME [KEY]`
228
216
 
@@ -230,7 +218,7 @@ Print environment variables exported by a hereya-app deployment.
230
218
 
231
219
  ```
232
220
  USAGE
233
- $ hereya app env NAME [KEY] -w <value> [--token <value>]
221
+ $ hereya app env NAME [KEY] -w <value>
234
222
 
235
223
  ARGUMENTS
236
224
  NAME app name in org/name format
@@ -238,9 +226,6 @@ ARGUMENTS
238
226
 
239
227
  FLAGS
240
228
  -w, --workspace=<value> (required) workspace to read env outputs from
241
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
242
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
243
- variable.
244
229
 
245
230
  DESCRIPTION
246
231
  Print environment variables exported by a hereya-app deployment.
@@ -251,7 +236,7 @@ EXAMPLES
251
236
  $ hereya app env my-org/my-app -w my-workspace DATABASE_URL
252
237
  ```
253
238
 
254
- _See code: [src/commands/app/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/env/index.ts)_
239
+ _See code: [src/commands/app/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/env/index.ts)_
255
240
 
256
241
  ## `hereya app list`
257
242
 
@@ -259,11 +244,7 @@ List hereya-apps available to your account.
259
244
 
260
245
  ```
261
246
  USAGE
262
- $ hereya app list [--token <value>]
263
-
264
- FLAGS
265
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
266
- keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
247
+ $ hereya app list
267
248
 
268
249
  DESCRIPTION
269
250
  List hereya-apps available to your account.
@@ -272,7 +253,7 @@ EXAMPLES
272
253
  $ hereya app list
273
254
  ```
274
255
 
275
- _See code: [src/commands/app/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/list/index.ts)_
256
+ _See code: [src/commands/app/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/list/index.ts)_
276
257
 
277
258
  ## `hereya app new DIRNAME`
278
259
 
@@ -298,7 +279,7 @@ EXAMPLES
298
279
  $ hereya app new ./my-app -n my-org/my-app --description "An ai-app-builder app"
299
280
  ```
300
281
 
301
- _See code: [src/commands/app/new/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/new/index.ts)_
282
+ _See code: [src/commands/app/new/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/new/index.ts)_
302
283
 
303
284
  ## `hereya app status NAME`
304
285
 
@@ -306,16 +287,13 @@ Show the deployment status of a hereya-app on a workspace.
306
287
 
307
288
  ```
308
289
  USAGE
309
- $ hereya app status NAME -w <value> [--token <value>]
290
+ $ hereya app status NAME -w <value>
310
291
 
311
292
  ARGUMENTS
312
293
  NAME app name in org/name format
313
294
 
314
295
  FLAGS
315
296
  -w, --workspace=<value> (required) workspace to read deployment status from
316
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
317
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
318
- variable.
319
297
 
320
298
  DESCRIPTION
321
299
  Show the deployment status of a hereya-app on a workspace.
@@ -324,7 +302,7 @@ EXAMPLES
324
302
  $ hereya app status my-org/my-app -w my-workspace
325
303
  ```
326
304
 
327
- _See code: [src/commands/app/status/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/app/status/index.ts)_
305
+ _See code: [src/commands/app/status/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/app/status/index.ts)_
328
306
 
329
307
  ## `hereya bootstrap INFRASTRUCTURETYPE`
330
308
 
@@ -349,7 +327,7 @@ EXAMPLES
349
327
  $ hereya bootstrap local
350
328
  ```
351
329
 
352
- _See code: [src/commands/bootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/bootstrap/index.ts)_
330
+ _See code: [src/commands/bootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/bootstrap/index.ts)_
353
331
 
354
332
  ## `hereya clone PROJECT`
355
333
 
@@ -374,7 +352,7 @@ EXAMPLES
374
352
  $ hereya clone myProject --chdir=./myProject
375
353
  ```
376
354
 
377
- _See code: [src/commands/clone/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/clone/index.ts)_
355
+ _See code: [src/commands/clone/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/clone/index.ts)_
378
356
 
379
357
  ## `hereya config export-backend [FILE]`
380
358
 
@@ -396,7 +374,7 @@ EXAMPLES
396
374
  $ hereya config export-backend ./path/to/export.json
397
375
  ```
398
376
 
399
- _See code: [src/commands/config/export-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/config/export-backend/index.ts)_
377
+ _See code: [src/commands/config/export-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/config/export-backend/index.ts)_
400
378
 
401
379
  ## `hereya config get-backend`
402
380
 
@@ -413,7 +391,7 @@ EXAMPLES
413
391
  $ hereya config get-backend
414
392
  ```
415
393
 
416
- _See code: [src/commands/config/get-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/config/get-backend/index.ts)_
394
+ _See code: [src/commands/config/get-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/config/get-backend/index.ts)_
417
395
 
418
396
  ## `hereya config import-backend FILE`
419
397
 
@@ -433,7 +411,7 @@ EXAMPLES
433
411
  $ hereya config import-backend ./path/to/cloud-backend.json
434
412
  ```
435
413
 
436
- _See code: [src/commands/config/import-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/config/import-backend/index.ts)_
414
+ _See code: [src/commands/config/import-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/config/import-backend/index.ts)_
437
415
 
438
416
  ## `hereya config use-backend TYPE`
439
417
 
@@ -455,7 +433,7 @@ EXAMPLES
455
433
  $ hereya config use-backend local
456
434
  ```
457
435
 
458
- _See code: [src/commands/config/use-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/config/use-backend/index.ts)_
436
+ _See code: [src/commands/config/use-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/config/use-backend/index.ts)_
459
437
 
460
438
  ## `hereya delete-state`
461
439
 
@@ -481,7 +459,7 @@ EXAMPLES
481
459
  $ hereya delete-state --workspace staging
482
460
  ```
483
461
 
484
- _See code: [src/commands/delete-state/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/delete-state/index.ts)_
462
+ _See code: [src/commands/delete-state/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/delete-state/index.ts)_
485
463
 
486
464
  ## `hereya deploy`
487
465
 
@@ -489,7 +467,7 @@ Deploy a hereya project using the project deployment package
489
467
 
490
468
  ```
491
469
  USAGE
492
- $ hereya deploy -w <value> [--chdir <value>] [--debug] [--local] [--token <value>]
470
+ $ hereya deploy -w <value> [--chdir <value>] [--debug] [--local]
493
471
 
494
472
  FLAGS
495
473
  -w, --workspace=<value> (required) name of the workspace to deploy the packages for
@@ -499,9 +477,6 @@ FLAGS
499
477
  environment variable.
500
478
  --debug enable debug mode
501
479
  --local force local execution (skip remote executor)
502
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
503
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
504
- variable.
505
480
 
506
481
  DESCRIPTION
507
482
  Deploy a hereya project using the project deployment package
@@ -510,7 +485,7 @@ EXAMPLES
510
485
  $ hereya deploy
511
486
  ```
512
487
 
513
- _See code: [src/commands/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/deploy/index.ts)_
488
+ _See code: [src/commands/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/deploy/index.ts)_
514
489
 
515
490
  ## `hereya devenv config`
516
491
 
@@ -530,7 +505,7 @@ EXAMPLES
530
505
  $ hereya devenv config -w my-workspace
531
506
  ```
532
507
 
533
- _See code: [src/commands/devenv/config/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/devenv/config/index.ts)_
508
+ _See code: [src/commands/devenv/config/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/devenv/config/index.ts)_
534
509
 
535
510
  ## `hereya devenv install`
536
511
 
@@ -555,7 +530,7 @@ EXAMPLES
555
530
  $ hereya devenv install -w my-workspace -p instanceType=t3.large
556
531
  ```
557
532
 
558
- _See code: [src/commands/devenv/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/devenv/install/index.ts)_
533
+ _See code: [src/commands/devenv/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/devenv/install/index.ts)_
559
534
 
560
535
  ## `hereya devenv project init PROJECT`
561
536
 
@@ -587,7 +562,7 @@ EXAMPLES
587
562
  $ hereya devenv project init my-app -w my-workspace -t acme/node-starter -p region=us-east-1
588
563
  ```
589
564
 
590
- _See code: [src/commands/devenv/project/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/devenv/project/init/index.ts)_
565
+ _See code: [src/commands/devenv/project/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/devenv/project/init/index.ts)_
591
566
 
592
567
  ## `hereya devenv project uninit PROJECT`
593
568
 
@@ -613,7 +588,7 @@ EXAMPLES
613
588
  $ hereya devenv project uninit my-app -w my-workspace --force
614
589
  ```
615
590
 
616
- _See code: [src/commands/devenv/project/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/devenv/project/uninit/index.ts)_
591
+ _See code: [src/commands/devenv/project/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/devenv/project/uninit/index.ts)_
617
592
 
618
593
  ## `hereya devenv ssh`
619
594
 
@@ -633,7 +608,7 @@ EXAMPLES
633
608
  $ hereya devenv ssh -w my-workspace
634
609
  ```
635
610
 
636
- _See code: [src/commands/devenv/ssh/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/devenv/ssh/index.ts)_
611
+ _See code: [src/commands/devenv/ssh/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/devenv/ssh/index.ts)_
637
612
 
638
613
  ## `hereya devenv uninstall`
639
614
 
@@ -654,7 +629,7 @@ EXAMPLES
654
629
  $ hereya devenv uninstall -w my-workspace
655
630
  ```
656
631
 
657
- _See code: [src/commands/devenv/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/devenv/uninstall/index.ts)_
632
+ _See code: [src/commands/devenv/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/devenv/uninstall/index.ts)_
658
633
 
659
634
  ## `hereya doc PACKAGE`
660
635
 
@@ -687,7 +662,7 @@ EXAMPLES
687
662
  $ hereya doc my-package --no-doc
688
663
  ```
689
664
 
690
- _See code: [src/commands/doc/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/doc/index.ts)_
665
+ _See code: [src/commands/doc/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/doc/index.ts)_
691
666
 
692
667
  ## `hereya docker run IMAGE`
693
668
 
@@ -718,7 +693,7 @@ EXAMPLES
718
693
  $ hereya docker run myapp:latest -- --rm -v ./data:/data
719
694
  ```
720
695
 
721
- _See code: [src/commands/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/docker/run/index.ts)_
696
+ _See code: [src/commands/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/docker/run/index.ts)_
722
697
 
723
698
  ## `hereya down`
724
699
 
@@ -745,7 +720,7 @@ EXAMPLES
745
720
  $ hereya down
746
721
  ```
747
722
 
748
- _See code: [src/commands/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/down/index.ts)_
723
+ _See code: [src/commands/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/down/index.ts)_
749
724
 
750
725
  ## `hereya env [NAME]`
751
726
 
@@ -776,7 +751,7 @@ EXAMPLES
776
751
  $ hereya env -w dev -l
777
752
  ```
778
753
 
779
- _See code: [src/commands/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/env/index.ts)_
754
+ _See code: [src/commands/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/env/index.ts)_
780
755
 
781
756
  ## `hereya env set [NAME]`
782
757
 
@@ -803,7 +778,7 @@ EXAMPLES
803
778
  $ hereya env set FOO -v bar -w dev
804
779
  ```
805
780
 
806
- _See code: [src/commands/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/env/set/index.ts)_
781
+ _See code: [src/commands/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/env/set/index.ts)_
807
782
 
808
783
  ## `hereya executor start`
809
784
 
@@ -836,7 +811,7 @@ EXAMPLES
836
811
  HEREYA_TOKEN=<token> HEREYA_CLOUD_URL=https://my-cloud.example.com hereya executor start -w my-workspace
837
812
  ```
838
813
 
839
- _See code: [src/commands/executor/start/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/executor/start/index.ts)_
814
+ _See code: [src/commands/executor/start/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/executor/start/index.ts)_
840
815
 
841
816
  ## `hereya flow add PACKAGE`
842
817
 
@@ -874,7 +849,7 @@ EXAMPLES
874
849
  $ hereya flow add cloudy/docker_postgres -p DB_NAME=mydb -p DB_USER=admin
875
850
  ```
876
851
 
877
- _See code: [src/commands/flow/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/add/index.ts)_
852
+ _See code: [src/commands/flow/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/add/index.ts)_
878
853
 
879
854
  ## `hereya flow docker run IMAGE`
880
855
 
@@ -904,7 +879,7 @@ EXAMPLES
904
879
  $ hereya flow docker run --pin myapp:latest -- --rm
905
880
  ```
906
881
 
907
- _See code: [src/commands/flow/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/docker/run/index.ts)_
882
+ _See code: [src/commands/flow/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/docker/run/index.ts)_
908
883
 
909
884
  ## `hereya flow down`
910
885
 
@@ -938,7 +913,7 @@ EXAMPLES
938
913
  $ hereya flow down --pin
939
914
  ```
940
915
 
941
- _See code: [src/commands/flow/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/down/index.ts)_
916
+ _See code: [src/commands/flow/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/down/index.ts)_
942
917
 
943
918
  ## `hereya flow env [NAME]`
944
919
 
@@ -972,7 +947,7 @@ EXAMPLES
972
947
  $ hereya flow env -l
973
948
  ```
974
949
 
975
- _See code: [src/commands/flow/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/env/index.ts)_
950
+ _See code: [src/commands/flow/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/env/index.ts)_
976
951
 
977
952
  ## `hereya flow provid PACKAGE`
978
953
 
@@ -1001,7 +976,7 @@ EXAMPLES
1001
976
  $ hereya flow provid hereya/postgres --pin
1002
977
  ```
1003
978
 
1004
- _See code: [src/commands/flow/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/provid/index.ts)_
979
+ _See code: [src/commands/flow/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/provid/index.ts)_
1005
980
 
1006
981
  ## `hereya flow remove PACKAGE`
1007
982
 
@@ -1031,7 +1006,7 @@ EXAMPLES
1031
1006
  $ hereya flow remove cloudy/docker_postgres --profile staging
1032
1007
  ```
1033
1008
 
1034
- _See code: [src/commands/flow/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/remove/index.ts)_
1009
+ _See code: [src/commands/flow/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/remove/index.ts)_
1035
1010
 
1036
1011
  ## `hereya flow run CMD`
1037
1012
 
@@ -1060,7 +1035,7 @@ EXAMPLES
1060
1035
  $ hereya flow run --pin -- npm test
1061
1036
  ```
1062
1037
 
1063
- _See code: [src/commands/flow/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/run/index.ts)_
1038
+ _See code: [src/commands/flow/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/run/index.ts)_
1064
1039
 
1065
1040
  ## `hereya flow up`
1066
1041
 
@@ -1094,39 +1069,7 @@ EXAMPLES
1094
1069
  $ hereya flow up --pin
1095
1070
  ```
1096
1071
 
1097
- _See code: [src/commands/flow/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/flow/up/index.ts)_
1098
-
1099
- ## `hereya git`
1100
-
1101
- Run an arbitrary git command with the hereya credential helper available. Wraps `git <args...>`, propagating an ephemeral `--token` to the credential-helper grandchild via `HEREYA_EPHEMERAL_TOKEN`. After a successful `clone`, also wires the cloned repo to use the hereya credential helper for future `push`/`pull`/`fetch` operations. Use `--` to separate hereya flags from git flags so e.g. `--depth` reaches git instead of being parsed by oclif.
1102
-
1103
- ```
1104
- USAGE
1105
- $ hereya git [--chdir <value>] [--token <value>]
1106
-
1107
- FLAGS
1108
- --chdir=<value> directory to run git in (cwd of the spawned git process)
1109
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
1110
- keychain or `~/.hereya/secrets/`. Propagated to the git credential-helper grandchild via the
1111
- HEREYA_EPHEMERAL_TOKEN env var. Takes precedence over the HEREYA_TOKEN environment variable.
1112
-
1113
- DESCRIPTION
1114
- Run an arbitrary git command with the hereya credential helper available. Wraps `git <args...>`, propagating an
1115
- ephemeral `--token` to the credential-helper grandchild via `HEREYA_EPHEMERAL_TOKEN`. After a successful `clone`, also
1116
- wires the cloned repo to use the hereya credential helper for future `push`/`pull`/`fetch` operations. Use `--` to
1117
- separate hereya flags from git flags so e.g. `--depth` reaches git instead of being parsed by oclif.
1118
-
1119
- EXAMPLES
1120
- $ hereya git --token <token> -- push
1121
-
1122
- $ hereya git --token <token> -- pull --rebase
1123
-
1124
- $ hereya git --token <token> -- clone https://github.com/owner/repo my-dir
1125
-
1126
- $ hereya git -- log --oneline -10
1127
- ```
1128
-
1129
- _See code: [src/commands/git/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/git/index.ts)_
1072
+ _See code: [src/commands/flow/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/flow/up/index.ts)_
1130
1073
 
1131
1074
  ## `hereya help [COMMAND]`
1132
1075
 
@@ -1183,7 +1126,7 @@ EXAMPLES
1183
1126
  $ hereya import org/my-package -f state.tfstate -w my-workspace
1184
1127
  ```
1185
1128
 
1186
- _See code: [src/commands/import/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/import/index.ts)_
1129
+ _See code: [src/commands/import/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/import/index.ts)_
1187
1130
 
1188
1131
  ## `hereya init PROJECT`
1189
1132
 
@@ -1191,8 +1134,7 @@ Initialize hereya in a project directory.
1191
1134
 
1192
1135
  ```
1193
1136
  USAGE
1194
- $ hereya init PROJECT -w <value> [--chdir <value>] [-d <value>] [-p <value>...] [-t <value>] [--token
1195
- <value>]
1137
+ $ hereya init PROJECT -w <value> [--chdir <value>] [-d <value>] [-p <value>...] [-t <value>]
1196
1138
 
1197
1139
  ARGUMENTS
1198
1140
  PROJECT project name
@@ -1204,9 +1146,6 @@ FLAGS
1204
1146
  -t, --template=<value> template package name (e.g. owner/repo)
1205
1147
  -w, --workspace=<value> (required) workspace to set as default
1206
1148
  --chdir=<value> directory to run command in
1207
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never
1208
- written to the keychain or `~/.hereya/secrets/`. Takes precedence over the
1209
- HEREYA_TOKEN environment variable.
1210
1149
 
1211
1150
  DESCRIPTION
1212
1151
  Initialize hereya in a project directory.
@@ -1221,7 +1160,7 @@ EXAMPLES
1221
1160
  $ hereya init myProject -w=dev -t=acme/node-starter -d=prod -p region=us-east-1
1222
1161
  ```
1223
1162
 
1224
- _See code: [src/commands/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/init/index.ts)_
1163
+ _See code: [src/commands/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/init/index.ts)_
1225
1164
 
1226
1165
  ## `hereya list`
1227
1166
 
@@ -1238,7 +1177,7 @@ EXAMPLES
1238
1177
  $ hereya list
1239
1178
  ```
1240
1179
 
1241
- _See code: [src/commands/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/list/index.ts)_
1180
+ _See code: [src/commands/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/list/index.ts)_
1242
1181
 
1243
1182
  ## `hereya login [URL]`
1244
1183
 
@@ -1267,7 +1206,7 @@ EXAMPLES
1267
1206
  $ hereya login --token=your-token https://cloud.hereya.dev
1268
1207
  ```
1269
1208
 
1270
- _See code: [src/commands/login/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/login/index.ts)_
1209
+ _See code: [src/commands/login/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/login/index.ts)_
1271
1210
 
1272
1211
  ## `hereya logout`
1273
1212
 
@@ -1284,7 +1223,7 @@ EXAMPLES
1284
1223
  $ hereya logout
1285
1224
  ```
1286
1225
 
1287
- _See code: [src/commands/logout/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/logout/index.ts)_
1226
+ _See code: [src/commands/logout/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/logout/index.ts)_
1288
1227
 
1289
1228
  ## `hereya provid PACKAGE`
1290
1229
 
@@ -1312,7 +1251,7 @@ EXAMPLES
1312
1251
  $ hereya provid hereya/postgres --workspace staging
1313
1252
  ```
1314
1253
 
1315
- _See code: [src/commands/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/provid/index.ts)_
1254
+ _See code: [src/commands/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/provid/index.ts)_
1316
1255
 
1317
1256
  ## `hereya publish`
1318
1257
 
@@ -1320,13 +1259,11 @@ Publish a package to the Hereya registry
1320
1259
 
1321
1260
  ```
1322
1261
  USAGE
1323
- $ hereya publish [--chdir <value>] [--token <value>]
1262
+ $ hereya publish [--chdir <value>]
1324
1263
 
1325
1264
  FLAGS
1326
1265
  --chdir=<value> Directory where the command will be executed.
1327
1266
  If not specified, it defaults to the current working directory.
1328
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
1329
- keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
1330
1267
 
1331
1268
  DESCRIPTION
1332
1269
  Publish a package to the Hereya registry
@@ -1337,7 +1274,7 @@ EXAMPLES
1337
1274
  $ hereya publish --chdir=/path/to/package
1338
1275
  ```
1339
1276
 
1340
- _See code: [src/commands/publish/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/publish/index.ts)_
1277
+ _See code: [src/commands/publish/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/publish/index.ts)_
1341
1278
 
1342
1279
  ## `hereya remove PACKAGE`
1343
1280
 
@@ -1365,7 +1302,7 @@ EXAMPLES
1365
1302
  $ hereya remove cloudy/docker_postgres
1366
1303
  ```
1367
1304
 
1368
- _See code: [src/commands/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/remove/index.ts)_
1305
+ _See code: [src/commands/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/remove/index.ts)_
1369
1306
 
1370
1307
  ## `hereya run CMD`
1371
1308
 
@@ -1373,7 +1310,7 @@ Run a command with hereya env vars.
1373
1310
 
1374
1311
  ```
1375
1312
  USAGE
1376
- $ hereya run CMD... [--chdir <value>] [--token <value>] [-w <value>]
1313
+ $ hereya run CMD... [--chdir <value>] [-w <value>]
1377
1314
 
1378
1315
  ARGUMENTS
1379
1316
  CMD... command to run
@@ -1381,9 +1318,6 @@ ARGUMENTS
1381
1318
  FLAGS
1382
1319
  -w, --workspace=<value> name of the workspace to run the command in
1383
1320
  --chdir=<value> directory to run command in
1384
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
1385
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
1386
- variable.
1387
1321
 
1388
1322
  DESCRIPTION
1389
1323
  Run a command with hereya env vars.
@@ -1394,7 +1328,7 @@ EXAMPLES
1394
1328
  $ hereya run -w uat -- node index.js
1395
1329
  ```
1396
1330
 
1397
- _See code: [src/commands/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/run/index.ts)_
1331
+ _See code: [src/commands/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/run/index.ts)_
1398
1332
 
1399
1333
  ## `hereya search QUERY`
1400
1334
 
@@ -1402,7 +1336,7 @@ Search for packages in the registry
1402
1336
 
1403
1337
  ```
1404
1338
  USAGE
1405
- $ hereya search QUERY [-C <value>] [-j] [-l <value>] [--token <value>]
1339
+ $ hereya search QUERY [-C <value>] [-j] [-l <value>]
1406
1340
 
1407
1341
  ARGUMENTS
1408
1342
  QUERY Search query string
@@ -1410,8 +1344,6 @@ ARGUMENTS
1410
1344
  FLAGS
1411
1345
  -j, --json Output in JSON format
1412
1346
  -l, --limit=<value> [default: 20] Maximum number of results to return
1413
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
1414
- keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
1415
1347
 
1416
1348
  GLOBAL FLAGS
1417
1349
  -C, --chdir=<value> [default: .] directory to run command in
@@ -1427,7 +1359,7 @@ EXAMPLES
1427
1359
  $ hereya search database --json
1428
1360
  ```
1429
1361
 
1430
- _See code: [src/commands/search/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/search/index.ts)_
1362
+ _See code: [src/commands/search/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/search/index.ts)_
1431
1363
 
1432
1364
  ## `hereya unbootstrap INFRASTRUCTURETYPE`
1433
1365
 
@@ -1452,7 +1384,7 @@ EXAMPLES
1452
1384
  $ hereya unbootstrap local
1453
1385
  ```
1454
1386
 
1455
- _See code: [src/commands/unbootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/unbootstrap/index.ts)_
1387
+ _See code: [src/commands/unbootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/unbootstrap/index.ts)_
1456
1388
 
1457
1389
  ## `hereya undeploy`
1458
1390
 
@@ -1460,7 +1392,7 @@ Undeploy a hereya project by removing all resources.
1460
1392
 
1461
1393
  ```
1462
1394
  USAGE
1463
- $ hereya undeploy -w <value> [--chdir <value>] [--debug] [--local] [--token <value>]
1395
+ $ hereya undeploy -w <value> [--chdir <value>] [--debug] [--local]
1464
1396
 
1465
1397
  FLAGS
1466
1398
  -w, --workspace=<value> (required) name of the workspace to undeploy the packages for
@@ -1470,9 +1402,6 @@ FLAGS
1470
1402
  environment variable.
1471
1403
  --debug enable debug mode
1472
1404
  --local force local execution (skip remote executor)
1473
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
1474
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
1475
- variable.
1476
1405
 
1477
1406
  DESCRIPTION
1478
1407
  Undeploy a hereya project by removing all resources.
@@ -1481,7 +1410,7 @@ EXAMPLES
1481
1410
  $ hereya undeploy
1482
1411
  ```
1483
1412
 
1484
- _See code: [src/commands/undeploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/undeploy/index.ts)_
1413
+ _See code: [src/commands/undeploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/undeploy/index.ts)_
1485
1414
 
1486
1415
  ## `hereya uninit PROJECT`
1487
1416
 
@@ -1509,7 +1438,7 @@ EXAMPLES
1509
1438
  $ hereya uninit myProject -w dev -p prodWorkspace=prod
1510
1439
  ```
1511
1440
 
1512
- _See code: [src/commands/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/uninit/index.ts)_
1441
+ _See code: [src/commands/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/uninit/index.ts)_
1513
1442
 
1514
1443
  ## `hereya up`
1515
1444
 
@@ -1517,7 +1446,7 @@ Provision all packages in the project.
1517
1446
 
1518
1447
  ```
1519
1448
  USAGE
1520
- $ hereya up [--chdir <value>] [--debug] [--deploy] [-s <value>...] [--token <value>] [-w <value>]
1449
+ $ hereya up [--chdir <value>] [--debug] [--deploy] [-s <value>...] [-w <value>]
1521
1450
 
1522
1451
  FLAGS
1523
1452
  -s, --select=<value>... [default: ] select the packages to provision
@@ -1528,9 +1457,6 @@ FLAGS
1528
1457
  environment variable.
1529
1458
  --debug enable debug mode
1530
1459
  --deploy provision deployment companion packages
1531
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
1532
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
1533
- variable.
1534
1460
 
1535
1461
  DESCRIPTION
1536
1462
  Provision all packages in the project.
@@ -1539,7 +1465,7 @@ EXAMPLES
1539
1465
  $ hereya up
1540
1466
  ```
1541
1467
 
1542
- _See code: [src/commands/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/up/index.ts)_
1468
+ _See code: [src/commands/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/up/index.ts)_
1543
1469
 
1544
1470
  ## `hereya update [VERSION]`
1545
1471
 
@@ -1561,7 +1487,7 @@ EXAMPLES
1561
1487
  $ hereya update 0.75.0
1562
1488
  ```
1563
1489
 
1564
- _See code: [src/commands/update/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/update/index.ts)_
1490
+ _See code: [src/commands/update/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/update/index.ts)_
1565
1491
 
1566
1492
  ## `hereya workspace create NAME`
1567
1493
 
@@ -1586,7 +1512,7 @@ EXAMPLES
1586
1512
  $ hereya workspace create dev
1587
1513
  ```
1588
1514
 
1589
- _See code: [src/commands/workspace/create/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/create/index.ts)_
1515
+ _See code: [src/commands/workspace/create/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/create/index.ts)_
1590
1516
 
1591
1517
  ## `hereya workspace delete NAME`
1592
1518
 
@@ -1606,7 +1532,7 @@ EXAMPLES
1606
1532
  $ hereya workspace delete dev
1607
1533
  ```
1608
1534
 
1609
- _See code: [src/commands/workspace/delete/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/delete/index.ts)_
1535
+ _See code: [src/commands/workspace/delete/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/delete/index.ts)_
1610
1536
 
1611
1537
  ## `hereya workspace env [NAME]`
1612
1538
 
@@ -1632,7 +1558,7 @@ EXAMPLES
1632
1558
  $ hereya workspace env myEnv -w dev
1633
1559
  ```
1634
1560
 
1635
- _See code: [src/commands/workspace/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/env/index.ts)_
1561
+ _See code: [src/commands/workspace/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/env/index.ts)_
1636
1562
 
1637
1563
  ## `hereya workspace env set`
1638
1564
 
@@ -1656,7 +1582,7 @@ EXAMPLES
1656
1582
  $ hereya workspace env set -w my-workspace -n myVar -v my-value -i aws -s
1657
1583
  ```
1658
1584
 
1659
- _See code: [src/commands/workspace/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/env/set/index.ts)_
1585
+ _See code: [src/commands/workspace/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/env/set/index.ts)_
1660
1586
 
1661
1587
  ## `hereya workspace env unset`
1662
1588
 
@@ -1677,7 +1603,7 @@ EXAMPLES
1677
1603
  $ hereya workspace env unset -w my-workspace -n myVar
1678
1604
  ```
1679
1605
 
1680
- _See code: [src/commands/workspace/env/unset/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/env/unset/index.ts)_
1606
+ _See code: [src/commands/workspace/env/unset/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/env/unset/index.ts)_
1681
1607
 
1682
1608
  ## `hereya workspace executor install`
1683
1609
 
@@ -1685,21 +1611,18 @@ Install a remote executor into a workspace
1685
1611
 
1686
1612
  ```
1687
1613
  USAGE
1688
- $ hereya workspace executor install -w <value> [--debug] [-f] [--token <value>]
1614
+ $ hereya workspace executor install -w <value> [--debug] [-f]
1689
1615
 
1690
1616
  FLAGS
1691
1617
  -f, --force force reinstall even if executor is already installed
1692
1618
  -w, --workspace=<value> (required) name of the workspace
1693
1619
  --debug enable debug mode
1694
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
1695
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
1696
- variable.
1697
1620
 
1698
1621
  DESCRIPTION
1699
1622
  Install a remote executor into a workspace
1700
1623
  ```
1701
1624
 
1702
- _See code: [src/commands/workspace/executor/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/executor/install/index.ts)_
1625
+ _See code: [src/commands/workspace/executor/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/executor/install/index.ts)_
1703
1626
 
1704
1627
  ## `hereya workspace executor token`
1705
1628
 
@@ -1707,19 +1630,16 @@ Generate a workspace-scoped executor token for the remote executor
1707
1630
 
1708
1631
  ```
1709
1632
  USAGE
1710
- $ hereya workspace executor token -w <value> [--token <value>]
1633
+ $ hereya workspace executor token -w <value>
1711
1634
 
1712
1635
  FLAGS
1713
1636
  -w, --workspace=<value> (required) name of the workspace
1714
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
1715
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
1716
- variable.
1717
1637
 
1718
1638
  DESCRIPTION
1719
1639
  Generate a workspace-scoped executor token for the remote executor
1720
1640
  ```
1721
1641
 
1722
- _See code: [src/commands/workspace/executor/token/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/executor/token/index.ts)_
1642
+ _See code: [src/commands/workspace/executor/token/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/executor/token/index.ts)_
1723
1643
 
1724
1644
  ## `hereya workspace executor uninstall`
1725
1645
 
@@ -1727,20 +1647,17 @@ Uninstall the remote executor from a workspace
1727
1647
 
1728
1648
  ```
1729
1649
  USAGE
1730
- $ hereya workspace executor uninstall -w <value> [--debug] [--token <value>]
1650
+ $ hereya workspace executor uninstall -w <value> [--debug]
1731
1651
 
1732
1652
  FLAGS
1733
1653
  -w, --workspace=<value> (required) name of the workspace
1734
1654
  --debug enable debug mode
1735
- --token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
1736
- the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
1737
- variable.
1738
1655
 
1739
1656
  DESCRIPTION
1740
1657
  Uninstall the remote executor from a workspace
1741
1658
  ```
1742
1659
 
1743
- _See code: [src/commands/workspace/executor/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/executor/uninstall/index.ts)_
1660
+ _See code: [src/commands/workspace/executor/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/executor/uninstall/index.ts)_
1744
1661
 
1745
1662
  ## `hereya workspace install PACKAGE`
1746
1663
 
@@ -1767,7 +1684,7 @@ EXAMPLES
1767
1684
  $ hereya workspace install hereya/aws-cognito
1768
1685
  ```
1769
1686
 
1770
- _See code: [src/commands/workspace/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/install/index.ts)_
1687
+ _See code: [src/commands/workspace/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/install/index.ts)_
1771
1688
 
1772
1689
  ## `hereya workspace list`
1773
1690
 
@@ -1791,7 +1708,7 @@ EXAMPLES
1791
1708
  $ hereya workspace list --org personal
1792
1709
  ```
1793
1710
 
1794
- _See code: [src/commands/workspace/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/list/index.ts)_
1711
+ _See code: [src/commands/workspace/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/list/index.ts)_
1795
1712
 
1796
1713
  ## `hereya workspace set-profile PROFILE`
1797
1714
 
@@ -1815,7 +1732,7 @@ EXAMPLES
1815
1732
  $ hereya workspace set-profile prod-profile -w production
1816
1733
  ```
1817
1734
 
1818
- _See code: [src/commands/workspace/set-profile/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/set-profile/index.ts)_
1735
+ _See code: [src/commands/workspace/set-profile/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/set-profile/index.ts)_
1819
1736
 
1820
1737
  ## `hereya workspace uninstall PACKAGE`
1821
1738
 
@@ -1842,5 +1759,5 @@ EXAMPLES
1842
1759
  $ hereya workspace uninstall hereya/aws-cognito
1843
1760
  ```
1844
1761
 
1845
- _See code: [src/commands/workspace/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.87.0/src/commands/workspace/uninstall/index.ts)_
1762
+ _See code: [src/commands/workspace/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.88.0/src/commands/workspace/uninstall/index.ts)_
1846
1763
  <!-- commandsstop -->