@dxos/cli 0.5.1-main.c37e119 → 0.5.1-main.ff7d242

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 (63) hide show
  1. package/bin/handle_invitation +3 -2
  2. package/dist/src/base-command.d.ts +1 -0
  3. package/dist/src/base-command.d.ts.map +1 -1
  4. package/dist/src/base-command.js +13 -5
  5. package/dist/src/base-command.js.map +1 -1
  6. package/dist/src/commands/agent/invitations.d.ts +1 -0
  7. package/dist/src/commands/agent/invitations.d.ts.map +1 -1
  8. package/dist/src/commands/agent/list.d.ts +1 -0
  9. package/dist/src/commands/agent/list.d.ts.map +1 -1
  10. package/dist/src/commands/agent/restart.d.ts +1 -0
  11. package/dist/src/commands/agent/restart.d.ts.map +1 -1
  12. package/dist/src/commands/agent/start.d.ts +1 -0
  13. package/dist/src/commands/agent/start.d.ts.map +1 -1
  14. package/dist/src/commands/agent/status.d.ts +21 -0
  15. package/dist/src/commands/agent/status.d.ts.map +1 -0
  16. package/dist/src/commands/agent/status.js +41 -0
  17. package/dist/src/commands/agent/status.js.map +1 -0
  18. package/dist/src/commands/agent/stop.d.ts +1 -0
  19. package/dist/src/commands/agent/stop.d.ts.map +1 -1
  20. package/dist/src/commands/app/create.d.ts +1 -0
  21. package/dist/src/commands/app/create.d.ts.map +1 -1
  22. package/dist/src/commands/app/open.d.ts +1 -0
  23. package/dist/src/commands/app/open.d.ts.map +1 -1
  24. package/dist/src/commands/app/publish.d.ts +1 -0
  25. package/dist/src/commands/app/publish.d.ts.map +1 -1
  26. package/dist/src/commands/debug/diagnostics.d.ts +1 -0
  27. package/dist/src/commands/debug/diagnostics.d.ts.map +1 -1
  28. package/dist/src/commands/debug/generate.d.ts +1 -0
  29. package/dist/src/commands/debug/generate.d.ts.map +1 -1
  30. package/dist/src/commands/debug/status.d.ts +1 -0
  31. package/dist/src/commands/debug/status.d.ts.map +1 -1
  32. package/dist/src/commands/device/list.d.ts +1 -0
  33. package/dist/src/commands/device/list.d.ts.map +1 -1
  34. package/dist/src/commands/device/update.d.ts +1 -0
  35. package/dist/src/commands/device/update.d.ts.map +1 -1
  36. package/dist/src/commands/function/dev.d.ts +1 -0
  37. package/dist/src/commands/function/dev.d.ts.map +1 -1
  38. package/dist/src/commands/halo/create.d.ts +1 -0
  39. package/dist/src/commands/halo/create.d.ts.map +1 -1
  40. package/dist/src/commands/halo/credential/list.d.ts +1 -0
  41. package/dist/src/commands/halo/credential/list.d.ts.map +1 -1
  42. package/dist/src/commands/halo/join.d.ts +1 -0
  43. package/dist/src/commands/halo/join.d.ts.map +1 -1
  44. package/dist/src/commands/halo/share.d.ts +1 -0
  45. package/dist/src/commands/halo/share.d.ts.map +1 -1
  46. package/dist/src/commands/halo/update.d.ts +1 -0
  47. package/dist/src/commands/halo/update.d.ts.map +1 -1
  48. package/dist/src/commands/kube/deploy.d.ts +1 -0
  49. package/dist/src/commands/kube/deploy.d.ts.map +1 -1
  50. package/dist/src/commands/reset/index.d.ts +1 -0
  51. package/dist/src/commands/reset/index.d.ts.map +1 -1
  52. package/dist/src/commands/space/join.d.ts +1 -0
  53. package/dist/src/commands/space/join.d.ts.map +1 -1
  54. package/dist/src/commands/space/list.d.ts +1 -0
  55. package/dist/src/commands/space/list.d.ts.map +1 -1
  56. package/dist/src/commands/space/members.d.ts +1 -0
  57. package/dist/src/commands/space/members.d.ts.map +1 -1
  58. package/dist/src/commands/space/share.d.ts +1 -0
  59. package/dist/src/commands/space/share.d.ts.map +1 -1
  60. package/dist/src/commands/tunnel/index.d.ts +1 -0
  61. package/dist/src/commands/tunnel/index.d.ts.map +1 -1
  62. package/oclif.manifest.json +417 -47
  63. package/package.json +23 -23
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.5.1-main.c37e119",
2
+ "version": "0.5.1-main.ff7d242",
3
3
  "commands": {
4
4
  "agent:invitations": {
5
5
  "id": "agent:invitations",
@@ -60,7 +60,13 @@
60
60
  "no-agent": {
61
61
  "name": "no-agent",
62
62
  "type": "boolean",
63
- "description": "Run command without using or starting agent.",
63
+ "description": "Run command without using an agent.",
64
+ "allowNo": false
65
+ },
66
+ "no-start-agent": {
67
+ "name": "no-start-agent",
68
+ "type": "boolean",
69
+ "description": "Do not automatically start an agent if one is not running.",
64
70
  "allowNo": false
65
71
  },
66
72
  "timeout": {
@@ -159,7 +165,13 @@
159
165
  "no-agent": {
160
166
  "name": "no-agent",
161
167
  "type": "boolean",
162
- "description": "Run command without using or starting agent.",
168
+ "description": "Run command without using an agent.",
169
+ "allowNo": false
170
+ },
171
+ "no-start-agent": {
172
+ "name": "no-start-agent",
173
+ "type": "boolean",
174
+ "description": "Do not automatically start an agent if one is not running.",
163
175
  "allowNo": false
164
176
  },
165
177
  "timeout": {
@@ -337,7 +349,13 @@
337
349
  "no-agent": {
338
350
  "name": "no-agent",
339
351
  "type": "boolean",
340
- "description": "Run command without using or starting agent.",
352
+ "description": "Run command without using an agent.",
353
+ "allowNo": false
354
+ },
355
+ "no-start-agent": {
356
+ "name": "no-start-agent",
357
+ "type": "boolean",
358
+ "description": "Do not automatically start an agent if one is not running.",
341
359
  "allowNo": false
342
360
  },
343
361
  "timeout": {
@@ -448,7 +466,13 @@
448
466
  "no-agent": {
449
467
  "name": "no-agent",
450
468
  "type": "boolean",
451
- "description": "Run command without using or starting agent.",
469
+ "description": "Run command without using an agent.",
470
+ "allowNo": false
471
+ },
472
+ "no-start-agent": {
473
+ "name": "no-start-agent",
474
+ "type": "boolean",
475
+ "description": "Do not automatically start an agent if one is not running.",
452
476
  "allowNo": false
453
477
  },
454
478
  "timeout": {
@@ -519,6 +543,106 @@
519
543
  },
520
544
  "args": {}
521
545
  },
546
+ "agent:status": {
547
+ "id": "agent:status",
548
+ "description": "Show agent status",
549
+ "strict": true,
550
+ "pluginName": "@dxos/cli",
551
+ "pluginAlias": "@dxos/cli",
552
+ "pluginType": "core",
553
+ "aliases": [],
554
+ "flags": {
555
+ "json": {
556
+ "name": "json",
557
+ "type": "boolean",
558
+ "description": "Format output as json.",
559
+ "helpGroup": "GLOBAL",
560
+ "allowNo": false
561
+ },
562
+ "dry-run": {
563
+ "name": "dry-run",
564
+ "type": "boolean",
565
+ "description": "Dry run.",
566
+ "allowNo": false
567
+ },
568
+ "verbose": {
569
+ "name": "verbose",
570
+ "type": "boolean",
571
+ "char": "v",
572
+ "description": "Verbose output",
573
+ "allowNo": false
574
+ },
575
+ "profile": {
576
+ "name": "profile",
577
+ "type": "option",
578
+ "description": "User profile.",
579
+ "multiple": false,
580
+ "default": "default"
581
+ },
582
+ "config": {
583
+ "name": "config",
584
+ "type": "option",
585
+ "description": "Config file.",
586
+ "helpValue": "path",
587
+ "multiple": false,
588
+ "dependsOn": [
589
+ "profile"
590
+ ],
591
+ "default": "/home/runner/.config/dx/profile/default.yml",
592
+ "aliases": [
593
+ "c"
594
+ ]
595
+ },
596
+ "target": {
597
+ "name": "target",
598
+ "type": "option",
599
+ "description": "Target websocket server.",
600
+ "multiple": false
601
+ },
602
+ "no-agent": {
603
+ "name": "no-agent",
604
+ "type": "boolean",
605
+ "description": "Run command without using an agent.",
606
+ "allowNo": false
607
+ },
608
+ "no-start-agent": {
609
+ "name": "no-start-agent",
610
+ "type": "boolean",
611
+ "description": "Do not automatically start an agent if one is not running.",
612
+ "allowNo": false
613
+ },
614
+ "timeout": {
615
+ "name": "timeout",
616
+ "type": "option",
617
+ "description": "Timeout (ms).",
618
+ "multiple": false,
619
+ "default": 60000,
620
+ "aliases": [
621
+ "t"
622
+ ]
623
+ },
624
+ "no-wait": {
625
+ "name": "no-wait",
626
+ "type": "boolean",
627
+ "description": "Do not wait for space to be ready.",
628
+ "allowNo": false
629
+ },
630
+ "json-log": {
631
+ "name": "json-log",
632
+ "type": "boolean",
633
+ "description": "When running in foreground, log JSON format",
634
+ "allowNo": false
635
+ },
636
+ "json-logfile": {
637
+ "name": "json-logfile",
638
+ "type": "option",
639
+ "description": "JSON log file destination, or 'stdout' or 'stderr'",
640
+ "multiple": false,
641
+ "default": "stderr"
642
+ }
643
+ },
644
+ "args": {}
645
+ },
522
646
  "agent:stop": {
523
647
  "id": "agent:stop",
524
648
  "description": "Stop agent daemon.",
@@ -577,7 +701,13 @@
577
701
  "no-agent": {
578
702
  "name": "no-agent",
579
703
  "type": "boolean",
580
- "description": "Run command without using or starting agent.",
704
+ "description": "Run command without using an agent.",
705
+ "allowNo": false
706
+ },
707
+ "no-start-agent": {
708
+ "name": "no-start-agent",
709
+ "type": "boolean",
710
+ "description": "Do not automatically start an agent if one is not running.",
581
711
  "allowNo": false
582
712
  },
583
713
  "timeout": {
@@ -688,7 +818,13 @@
688
818
  "no-agent": {
689
819
  "name": "no-agent",
690
820
  "type": "boolean",
691
- "description": "Run command without using or starting agent.",
821
+ "description": "Run command without using an agent.",
822
+ "allowNo": false
823
+ },
824
+ "no-start-agent": {
825
+ "name": "no-start-agent",
826
+ "type": "boolean",
827
+ "description": "Do not automatically start an agent if one is not running.",
692
828
  "allowNo": false
693
829
  },
694
830
  "timeout": {
@@ -814,7 +950,13 @@
814
950
  "no-agent": {
815
951
  "name": "no-agent",
816
952
  "type": "boolean",
817
- "description": "Run command without using or starting agent.",
953
+ "description": "Run command without using an agent.",
954
+ "allowNo": false
955
+ },
956
+ "no-start-agent": {
957
+ "name": "no-start-agent",
958
+ "type": "boolean",
959
+ "description": "Do not automatically start an agent if one is not running.",
818
960
  "allowNo": false
819
961
  },
820
962
  "timeout": {
@@ -908,7 +1050,13 @@
908
1050
  "no-agent": {
909
1051
  "name": "no-agent",
910
1052
  "type": "boolean",
911
- "description": "Run command without using or starting agent.",
1053
+ "description": "Run command without using an agent.",
1054
+ "allowNo": false
1055
+ },
1056
+ "no-start-agent": {
1057
+ "name": "no-start-agent",
1058
+ "type": "boolean",
1059
+ "description": "Do not automatically start an agent if one is not running.",
912
1060
  "allowNo": false
913
1061
  },
914
1062
  "timeout": {
@@ -1020,7 +1168,13 @@
1020
1168
  "no-agent": {
1021
1169
  "name": "no-agent",
1022
1170
  "type": "boolean",
1023
- "description": "Run command without using or starting agent.",
1171
+ "description": "Run command without using an agent.",
1172
+ "allowNo": false
1173
+ },
1174
+ "no-start-agent": {
1175
+ "name": "no-start-agent",
1176
+ "type": "boolean",
1177
+ "description": "Do not automatically start an agent if one is not running.",
1024
1178
  "allowNo": false
1025
1179
  },
1026
1180
  "timeout": {
@@ -1138,7 +1292,13 @@
1138
1292
  "no-agent": {
1139
1293
  "name": "no-agent",
1140
1294
  "type": "boolean",
1141
- "description": "Run command without using or starting agent.",
1295
+ "description": "Run command without using an agent.",
1296
+ "allowNo": false
1297
+ },
1298
+ "no-start-agent": {
1299
+ "name": "no-start-agent",
1300
+ "type": "boolean",
1301
+ "description": "Do not automatically start an agent if one is not running.",
1142
1302
  "allowNo": false
1143
1303
  },
1144
1304
  "timeout": {
@@ -1241,7 +1401,13 @@
1241
1401
  "no-agent": {
1242
1402
  "name": "no-agent",
1243
1403
  "type": "boolean",
1244
- "description": "Run command without using or starting agent.",
1404
+ "description": "Run command without using an agent.",
1405
+ "allowNo": false
1406
+ },
1407
+ "no-start-agent": {
1408
+ "name": "no-start-agent",
1409
+ "type": "boolean",
1410
+ "description": "Do not automatically start an agent if one is not running.",
1245
1411
  "allowNo": false
1246
1412
  },
1247
1413
  "timeout": {
@@ -1346,7 +1512,13 @@
1346
1512
  "no-agent": {
1347
1513
  "name": "no-agent",
1348
1514
  "type": "boolean",
1349
- "description": "Run command without using or starting agent.",
1515
+ "description": "Run command without using an agent.",
1516
+ "allowNo": false
1517
+ },
1518
+ "no-start-agent": {
1519
+ "name": "no-start-agent",
1520
+ "type": "boolean",
1521
+ "description": "Do not automatically start an agent if one is not running.",
1350
1522
  "allowNo": false
1351
1523
  },
1352
1524
  "timeout": {
@@ -1439,7 +1611,13 @@
1439
1611
  "no-agent": {
1440
1612
  "name": "no-agent",
1441
1613
  "type": "boolean",
1442
- "description": "Run command without using or starting agent.",
1614
+ "description": "Run command without using an agent.",
1615
+ "allowNo": false
1616
+ },
1617
+ "no-start-agent": {
1618
+ "name": "no-start-agent",
1619
+ "type": "boolean",
1620
+ "description": "Do not automatically start an agent if one is not running.",
1443
1621
  "allowNo": false
1444
1622
  },
1445
1623
  "timeout": {
@@ -1572,7 +1750,13 @@
1572
1750
  "no-agent": {
1573
1751
  "name": "no-agent",
1574
1752
  "type": "boolean",
1575
- "description": "Run command without using or starting agent.",
1753
+ "description": "Run command without using an agent.",
1754
+ "allowNo": false
1755
+ },
1756
+ "no-start-agent": {
1757
+ "name": "no-start-agent",
1758
+ "type": "boolean",
1759
+ "description": "Do not automatically start an agent if one is not running.",
1576
1760
  "allowNo": false
1577
1761
  },
1578
1762
  "timeout": {
@@ -1670,7 +1854,13 @@
1670
1854
  "no-agent": {
1671
1855
  "name": "no-agent",
1672
1856
  "type": "boolean",
1673
- "description": "Run command without using or starting agent.",
1857
+ "description": "Run command without using an agent.",
1858
+ "allowNo": false
1859
+ },
1860
+ "no-start-agent": {
1861
+ "name": "no-start-agent",
1862
+ "type": "boolean",
1863
+ "description": "Do not automatically start an agent if one is not running.",
1674
1864
  "allowNo": false
1675
1865
  },
1676
1866
  "timeout": {
@@ -1771,7 +1961,13 @@
1771
1961
  "no-agent": {
1772
1962
  "name": "no-agent",
1773
1963
  "type": "boolean",
1774
- "description": "Run command without using or starting agent.",
1964
+ "description": "Run command without using an agent.",
1965
+ "allowNo": false
1966
+ },
1967
+ "no-start-agent": {
1968
+ "name": "no-start-agent",
1969
+ "type": "boolean",
1970
+ "description": "Do not automatically start an agent if one is not running.",
1775
1971
  "allowNo": false
1776
1972
  },
1777
1973
  "timeout": {
@@ -1864,7 +2060,13 @@
1864
2060
  "no-agent": {
1865
2061
  "name": "no-agent",
1866
2062
  "type": "boolean",
1867
- "description": "Run command without using or starting agent.",
2063
+ "description": "Run command without using an agent.",
2064
+ "allowNo": false
2065
+ },
2066
+ "no-start-agent": {
2067
+ "name": "no-start-agent",
2068
+ "type": "boolean",
2069
+ "description": "Do not automatically start an agent if one is not running.",
1868
2070
  "allowNo": false
1869
2071
  },
1870
2072
  "timeout": {
@@ -2030,7 +2232,13 @@
2030
2232
  "no-agent": {
2031
2233
  "name": "no-agent",
2032
2234
  "type": "boolean",
2033
- "description": "Run command without using or starting agent.",
2235
+ "description": "Run command without using an agent.",
2236
+ "allowNo": false
2237
+ },
2238
+ "no-start-agent": {
2239
+ "name": "no-start-agent",
2240
+ "type": "boolean",
2241
+ "description": "Do not automatically start an agent if one is not running.",
2034
2242
  "allowNo": false
2035
2243
  },
2036
2244
  "timeout": {
@@ -2138,7 +2346,13 @@
2138
2346
  "no-agent": {
2139
2347
  "name": "no-agent",
2140
2348
  "type": "boolean",
2141
- "description": "Run command without using or starting agent.",
2349
+ "description": "Run command without using an agent.",
2350
+ "allowNo": false
2351
+ },
2352
+ "no-start-agent": {
2353
+ "name": "no-start-agent",
2354
+ "type": "boolean",
2355
+ "description": "Do not automatically start an agent if one is not running.",
2142
2356
  "allowNo": false
2143
2357
  },
2144
2358
  "timeout": {
@@ -2261,7 +2475,13 @@
2261
2475
  "no-agent": {
2262
2476
  "name": "no-agent",
2263
2477
  "type": "boolean",
2264
- "description": "Run command without using or starting agent.",
2478
+ "description": "Run command without using an agent.",
2479
+ "allowNo": false
2480
+ },
2481
+ "no-start-agent": {
2482
+ "name": "no-start-agent",
2483
+ "type": "boolean",
2484
+ "description": "Do not automatically start an agent if one is not running.",
2265
2485
  "allowNo": false
2266
2486
  },
2267
2487
  "timeout": {
@@ -2361,7 +2581,13 @@
2361
2581
  "no-agent": {
2362
2582
  "name": "no-agent",
2363
2583
  "type": "boolean",
2364
- "description": "Run command without using or starting agent.",
2584
+ "description": "Run command without using an agent.",
2585
+ "allowNo": false
2586
+ },
2587
+ "no-start-agent": {
2588
+ "name": "no-start-agent",
2589
+ "type": "boolean",
2590
+ "description": "Do not automatically start an agent if one is not running.",
2365
2591
  "allowNo": false
2366
2592
  },
2367
2593
  "timeout": {
@@ -2456,7 +2682,13 @@
2456
2682
  "no-agent": {
2457
2683
  "name": "no-agent",
2458
2684
  "type": "boolean",
2459
- "description": "Run command without using or starting agent.",
2685
+ "description": "Run command without using an agent.",
2686
+ "allowNo": false
2687
+ },
2688
+ "no-start-agent": {
2689
+ "name": "no-start-agent",
2690
+ "type": "boolean",
2691
+ "description": "Do not automatically start an agent if one is not running.",
2460
2692
  "allowNo": false
2461
2693
  },
2462
2694
  "timeout": {
@@ -2555,7 +2787,13 @@
2555
2787
  "no-agent": {
2556
2788
  "name": "no-agent",
2557
2789
  "type": "boolean",
2558
- "description": "Run command without using or starting agent.",
2790
+ "description": "Run command without using an agent.",
2791
+ "allowNo": false
2792
+ },
2793
+ "no-start-agent": {
2794
+ "name": "no-start-agent",
2795
+ "type": "boolean",
2796
+ "description": "Do not automatically start an agent if one is not running.",
2559
2797
  "allowNo": false
2560
2798
  },
2561
2799
  "timeout": {
@@ -2667,7 +2905,13 @@
2667
2905
  "no-agent": {
2668
2906
  "name": "no-agent",
2669
2907
  "type": "boolean",
2670
- "description": "Run command without using or starting agent.",
2908
+ "description": "Run command without using an agent.",
2909
+ "allowNo": false
2910
+ },
2911
+ "no-start-agent": {
2912
+ "name": "no-start-agent",
2913
+ "type": "boolean",
2914
+ "description": "Do not automatically start an agent if one is not running.",
2671
2915
  "allowNo": false
2672
2916
  },
2673
2917
  "timeout": {
@@ -2760,7 +3004,13 @@
2760
3004
  "no-agent": {
2761
3005
  "name": "no-agent",
2762
3006
  "type": "boolean",
2763
- "description": "Run command without using or starting agent.",
3007
+ "description": "Run command without using an agent.",
3008
+ "allowNo": false
3009
+ },
3010
+ "no-start-agent": {
3011
+ "name": "no-start-agent",
3012
+ "type": "boolean",
3013
+ "description": "Do not automatically start an agent if one is not running.",
2764
3014
  "allowNo": false
2765
3015
  },
2766
3016
  "timeout": {
@@ -2875,7 +3125,13 @@
2875
3125
  "no-agent": {
2876
3126
  "name": "no-agent",
2877
3127
  "type": "boolean",
2878
- "description": "Run command without using or starting agent.",
3128
+ "description": "Run command without using an agent.",
3129
+ "allowNo": false
3130
+ },
3131
+ "no-start-agent": {
3132
+ "name": "no-start-agent",
3133
+ "type": "boolean",
3134
+ "description": "Do not automatically start an agent if one is not running.",
2879
3135
  "allowNo": false
2880
3136
  },
2881
3137
  "timeout": {
@@ -2993,7 +3249,13 @@
2993
3249
  "no-agent": {
2994
3250
  "name": "no-agent",
2995
3251
  "type": "boolean",
2996
- "description": "Run command without using or starting agent.",
3252
+ "description": "Run command without using an agent.",
3253
+ "allowNo": false
3254
+ },
3255
+ "no-start-agent": {
3256
+ "name": "no-start-agent",
3257
+ "type": "boolean",
3258
+ "description": "Do not automatically start an agent if one is not running.",
2997
3259
  "allowNo": false
2998
3260
  },
2999
3261
  "timeout": {
@@ -3093,7 +3355,13 @@
3093
3355
  "no-agent": {
3094
3356
  "name": "no-agent",
3095
3357
  "type": "boolean",
3096
- "description": "Run command without using or starting agent.",
3358
+ "description": "Run command without using an agent.",
3359
+ "allowNo": false
3360
+ },
3361
+ "no-start-agent": {
3362
+ "name": "no-start-agent",
3363
+ "type": "boolean",
3364
+ "description": "Do not automatically start an agent if one is not running.",
3097
3365
  "allowNo": false
3098
3366
  },
3099
3367
  "timeout": {
@@ -3186,7 +3454,13 @@
3186
3454
  "no-agent": {
3187
3455
  "name": "no-agent",
3188
3456
  "type": "boolean",
3189
- "description": "Run command without using or starting agent.",
3457
+ "description": "Run command without using an agent.",
3458
+ "allowNo": false
3459
+ },
3460
+ "no-start-agent": {
3461
+ "name": "no-start-agent",
3462
+ "type": "boolean",
3463
+ "description": "Do not automatically start an agent if one is not running.",
3190
3464
  "allowNo": false
3191
3465
  },
3192
3466
  "timeout": {
@@ -3305,7 +3579,13 @@
3305
3579
  "no-agent": {
3306
3580
  "name": "no-agent",
3307
3581
  "type": "boolean",
3308
- "description": "Run command without using or starting agent.",
3582
+ "description": "Run command without using an agent.",
3583
+ "allowNo": false
3584
+ },
3585
+ "no-start-agent": {
3586
+ "name": "no-start-agent",
3587
+ "type": "boolean",
3588
+ "description": "Do not automatically start an agent if one is not running.",
3309
3589
  "allowNo": false
3310
3590
  },
3311
3591
  "timeout": {
@@ -3410,7 +3690,13 @@
3410
3690
  "no-agent": {
3411
3691
  "name": "no-agent",
3412
3692
  "type": "boolean",
3413
- "description": "Run command without using or starting agent.",
3693
+ "description": "Run command without using an agent.",
3694
+ "allowNo": false
3695
+ },
3696
+ "no-start-agent": {
3697
+ "name": "no-start-agent",
3698
+ "type": "boolean",
3699
+ "description": "Do not automatically start an agent if one is not running.",
3414
3700
  "allowNo": false
3415
3701
  },
3416
3702
  "timeout": {
@@ -3503,7 +3789,13 @@
3503
3789
  "no-agent": {
3504
3790
  "name": "no-agent",
3505
3791
  "type": "boolean",
3506
- "description": "Run command without using or starting agent.",
3792
+ "description": "Run command without using an agent.",
3793
+ "allowNo": false
3794
+ },
3795
+ "no-start-agent": {
3796
+ "name": "no-start-agent",
3797
+ "type": "boolean",
3798
+ "description": "Do not automatically start an agent if one is not running.",
3507
3799
  "allowNo": false
3508
3800
  },
3509
3801
  "timeout": {
@@ -3601,7 +3893,13 @@
3601
3893
  "no-agent": {
3602
3894
  "name": "no-agent",
3603
3895
  "type": "boolean",
3604
- "description": "Run command without using or starting agent.",
3896
+ "description": "Run command without using an agent.",
3897
+ "allowNo": false
3898
+ },
3899
+ "no-start-agent": {
3900
+ "name": "no-start-agent",
3901
+ "type": "boolean",
3902
+ "description": "Do not automatically start an agent if one is not running.",
3605
3903
  "allowNo": false
3606
3904
  },
3607
3905
  "timeout": {
@@ -3699,7 +3997,13 @@
3699
3997
  "no-agent": {
3700
3998
  "name": "no-agent",
3701
3999
  "type": "boolean",
3702
- "description": "Run command without using or starting agent.",
4000
+ "description": "Run command without using an agent.",
4001
+ "allowNo": false
4002
+ },
4003
+ "no-start-agent": {
4004
+ "name": "no-start-agent",
4005
+ "type": "boolean",
4006
+ "description": "Do not automatically start an agent if one is not running.",
3703
4007
  "allowNo": false
3704
4008
  },
3705
4009
  "timeout": {
@@ -3798,7 +4102,13 @@
3798
4102
  "no-agent": {
3799
4103
  "name": "no-agent",
3800
4104
  "type": "boolean",
3801
- "description": "Run command without using or starting agent.",
4105
+ "description": "Run command without using an agent.",
4106
+ "allowNo": false
4107
+ },
4108
+ "no-start-agent": {
4109
+ "name": "no-start-agent",
4110
+ "type": "boolean",
4111
+ "description": "Do not automatically start an agent if one is not running.",
3802
4112
  "allowNo": false
3803
4113
  },
3804
4114
  "timeout": {
@@ -3895,7 +4205,13 @@
3895
4205
  "no-agent": {
3896
4206
  "name": "no-agent",
3897
4207
  "type": "boolean",
3898
- "description": "Run command without using or starting agent.",
4208
+ "description": "Run command without using an agent.",
4209
+ "allowNo": false
4210
+ },
4211
+ "no-start-agent": {
4212
+ "name": "no-start-agent",
4213
+ "type": "boolean",
4214
+ "description": "Do not automatically start an agent if one is not running.",
3899
4215
  "allowNo": false
3900
4216
  },
3901
4217
  "timeout": {
@@ -4000,7 +4316,13 @@
4000
4316
  "no-agent": {
4001
4317
  "name": "no-agent",
4002
4318
  "type": "boolean",
4003
- "description": "Run command without using or starting agent.",
4319
+ "description": "Run command without using an agent.",
4320
+ "allowNo": false
4321
+ },
4322
+ "no-start-agent": {
4323
+ "name": "no-start-agent",
4324
+ "type": "boolean",
4325
+ "description": "Do not automatically start an agent if one is not running.",
4004
4326
  "allowNo": false
4005
4327
  },
4006
4328
  "timeout": {
@@ -4172,7 +4494,13 @@
4172
4494
  "no-agent": {
4173
4495
  "name": "no-agent",
4174
4496
  "type": "boolean",
4175
- "description": "Run command without using or starting agent.",
4497
+ "description": "Run command without using an agent.",
4498
+ "allowNo": false
4499
+ },
4500
+ "no-start-agent": {
4501
+ "name": "no-start-agent",
4502
+ "type": "boolean",
4503
+ "description": "Do not automatically start an agent if one is not running.",
4176
4504
  "allowNo": false
4177
4505
  },
4178
4506
  "timeout": {
@@ -4343,7 +4671,13 @@
4343
4671
  "no-agent": {
4344
4672
  "name": "no-agent",
4345
4673
  "type": "boolean",
4346
- "description": "Run command without using or starting agent.",
4674
+ "description": "Run command without using an agent.",
4675
+ "allowNo": false
4676
+ },
4677
+ "no-start-agent": {
4678
+ "name": "no-start-agent",
4679
+ "type": "boolean",
4680
+ "description": "Do not automatically start an agent if one is not running.",
4347
4681
  "allowNo": false
4348
4682
  },
4349
4683
  "timeout": {
@@ -4441,7 +4775,13 @@
4441
4775
  "no-agent": {
4442
4776
  "name": "no-agent",
4443
4777
  "type": "boolean",
4444
- "description": "Run command without using or starting agent.",
4778
+ "description": "Run command without using an agent.",
4779
+ "allowNo": false
4780
+ },
4781
+ "no-start-agent": {
4782
+ "name": "no-start-agent",
4783
+ "type": "boolean",
4784
+ "description": "Do not automatically start an agent if one is not running.",
4445
4785
  "allowNo": false
4446
4786
  },
4447
4787
  "timeout": {
@@ -4539,7 +4879,13 @@
4539
4879
  "no-agent": {
4540
4880
  "name": "no-agent",
4541
4881
  "type": "boolean",
4542
- "description": "Run command without using or starting agent.",
4882
+ "description": "Run command without using an agent.",
4883
+ "allowNo": false
4884
+ },
4885
+ "no-start-agent": {
4886
+ "name": "no-start-agent",
4887
+ "type": "boolean",
4888
+ "description": "Do not automatically start an agent if one is not running.",
4543
4889
  "allowNo": false
4544
4890
  },
4545
4891
  "timeout": {
@@ -4671,7 +5017,13 @@
4671
5017
  "no-agent": {
4672
5018
  "name": "no-agent",
4673
5019
  "type": "boolean",
4674
- "description": "Run command without using or starting agent.",
5020
+ "description": "Run command without using an agent.",
5021
+ "allowNo": false
5022
+ },
5023
+ "no-start-agent": {
5024
+ "name": "no-start-agent",
5025
+ "type": "boolean",
5026
+ "description": "Do not automatically start an agent if one is not running.",
4675
5027
  "allowNo": false
4676
5028
  },
4677
5029
  "timeout": {
@@ -4708,7 +5060,7 @@
4708
5060
  "type": "option",
4709
5061
  "description": "Tunnel name",
4710
5062
  "multiple": false,
4711
- "default": "oregon-blossom-october-charlie"
5063
+ "default": "charlie-oven-fourteen-mango"
4712
5064
  }
4713
5065
  },
4714
5066
  "args": {
@@ -4778,7 +5130,13 @@
4778
5130
  "no-agent": {
4779
5131
  "name": "no-agent",
4780
5132
  "type": "boolean",
4781
- "description": "Run command without using or starting agent.",
5133
+ "description": "Run command without using an agent.",
5134
+ "allowNo": false
5135
+ },
5136
+ "no-start-agent": {
5137
+ "name": "no-start-agent",
5138
+ "type": "boolean",
5139
+ "description": "Do not automatically start an agent if one is not running.",
4782
5140
  "allowNo": false
4783
5141
  },
4784
5142
  "timeout": {
@@ -4871,7 +5229,13 @@
4871
5229
  "no-agent": {
4872
5230
  "name": "no-agent",
4873
5231
  "type": "boolean",
4874
- "description": "Run command without using or starting agent.",
5232
+ "description": "Run command without using an agent.",
5233
+ "allowNo": false
5234
+ },
5235
+ "no-start-agent": {
5236
+ "name": "no-start-agent",
5237
+ "type": "boolean",
5238
+ "description": "Do not automatically start an agent if one is not running.",
4875
5239
  "allowNo": false
4876
5240
  },
4877
5241
  "timeout": {
@@ -4970,7 +5334,13 @@
4970
5334
  "no-agent": {
4971
5335
  "name": "no-agent",
4972
5336
  "type": "boolean",
4973
- "description": "Run command without using or starting agent.",
5337
+ "description": "Run command without using an agent.",
5338
+ "allowNo": false
5339
+ },
5340
+ "no-start-agent": {
5341
+ "name": "no-start-agent",
5342
+ "type": "boolean",
5343
+ "description": "Do not automatically start an agent if one is not running.",
4974
5344
  "allowNo": false
4975
5345
  },
4976
5346
  "timeout": {