nighthawk 0.1.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
{
  "name": "firebase",
  "subcommands": [
    {
      "name": "appdistribution:distribute",
      "description": "Upload a distribution",
      "options": [
        {
          "names": [
            "--app"
          ],
          "description": "The app id of your Firebase app",
          "takes_arg": true
        },
        {
          "names": [
            "--release-notes"
          ],
          "description": "Release notes to include with this distribution"
        },
        {
          "names": [
            "--release-notes-file"
          ],
          "description": "Path to file with release notes to include with this distribution",
          "takes_arg": true
        },
        {
          "names": [
            "--testers"
          ],
          "description": "A comma separated list of tester emails to distribute to",
          "takes_arg": true,
          "arg": {
            "is_variadic": true
          }
        },
        {
          "names": [
            "--testers-file"
          ],
          "description": "Path to file with a comma separated list of tester emails to distribute to",
          "takes_arg": true
        },
        {
          "names": [
            "--groups"
          ],
          "description": "A comma separated list of group aliases to distribute to",
          "takes_arg": true,
          "arg": {
            "is_variadic": true
          }
        },
        {
          "names": [
            "--groups-file"
          ],
          "description": "Path to file with a comma separated list of group aliases to distribute to",
          "takes_arg": true,
          "arg": {
            "is_variadic": true
          }
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "distribution-file"
        }
      ]
    },
    {
      "name": "apps:android:sha:create",
      "description": "Add a SHA certificate hash for a given app id",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "appId"
        },
        {
          "name": "shaHash"
        }
      ]
    },
    {
      "name": "apps:android:sha:delete",
      "description": "Delete a SHA certificate hash for a given app id",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "appId"
        },
        {
          "name": "shaId"
        }
      ]
    },
    {
      "name": "apps:create",
      "description": "Create a new Firebase app",
      "options": [
        {
          "names": [
            "-a",
            "--package-name"
          ],
          "description": "Required package name for the Android app",
          "takes_arg": true
        },
        {
          "names": [
            "-b",
            "--bundle-id"
          ],
          "description": "Required bundle id for the iOS app",
          "takes_arg": true
        },
        {
          "names": [
            "-s",
            "--app-store-id"
          ],
          "description": "(optional) app store id for the iOS app",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "platform"
        },
        {
          "name": "displayName"
        }
      ]
    },
    {
      "name": "auth:export",
      "description": "Export accounts from your Firebase project into a data file",
      "options": [
        {
          "names": [
            "--format"
          ],
          "description": "Format of exported data (csv, json). Ignored if [dataFile] has format extension",
          "takes_arg": true,
          "arg": {
            "suggestions": [
              "csv",
              "json"
            ]
          }
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "dataFile",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "auth:import",
      "description": "Import users into your Firebase project from a data file(.csv or .json)",
      "options": [
        {
          "names": [
            "--hash-algo"
          ],
          "description": "Specify the hash algorithm used in password for these accounts",
          "takes_arg": true
        },
        {
          "names": [
            "--hash-key"
          ],
          "description": "Specify the key used in hash algorithm",
          "takes_arg": true
        },
        {
          "names": [
            "--salt-separator"
          ],
          "description": "Specify the salt separator which will be appended to salt when verifying password. only used by SCRYPT now",
          "takes_arg": true
        },
        {
          "names": [
            "--rounds"
          ],
          "description": "Specify how many rounds for hash calculation",
          "takes_arg": true
        },
        {
          "names": [
            "--mem-cost"
          ],
          "description": "Specify the memory cost for firebase scrypt, or cpu/memory cost for standard scrypt",
          "takes_arg": true
        },
        {
          "names": [
            "--parallelization"
          ],
          "description": "Specify the parallelization for standard scrypt",
          "takes_arg": true
        },
        {
          "names": [
            "--block-size"
          ],
          "description": "Specify the block size (normally is 8) for standard scrypt",
          "takes_arg": true
        },
        {
          "names": [
            "--dk-len"
          ],
          "description": "Specify derived key length for standard scrypt",
          "takes_arg": true
        },
        {
          "names": [
            "--hash-input-order"
          ],
          "description": "Specify the order of password and salt. Possible values are SALT_FIRST and PASSWORD_FIRST. MD5, SHA1, SHA256, SHA512, HMAC_MD5, HMAC_SHA1, HMAC_SHA256, HMAC_SHA512 support this flag",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "dataFile",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "database:get",
      "description": "Fetch and print JSON data at the specified path",
      "args": [
        {
          "name": "path"
        }
      ]
    },
    {
      "name": "database:instances:create",
      "description": "Create a realtime database instance",
      "options": [
        {
          "names": [
            "-l",
            "--location"
          ],
          "description": "(optional) location for the database instance, defaults to us-central1",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "instanceName"
        }
      ]
    },
    {
      "name": "database:instances:list",
      "description": "List realtime database instances, optionally filtered by a specified location",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "database:profile",
      "description": "Profile the Realtime Database and generate a usage report",
      "options": [
        {
          "names": [
            "-o",
            "--output"
          ],
          "description": "Save the output to the specified file",
          "takes_arg": true
        },
        {
          "names": [
            "-d",
            "--duration"
          ],
          "description": "Collect database usage information for the specified number of seconds",
          "takes_arg": true
        },
        {
          "names": [
            "--raw"
          ],
          "description": "Output the raw stats collected as newline delimited json",
          "takes_arg": true
        },
        {
          "names": [
            "--no-collapse"
          ],
          "description": "Prevent collapsing similar paths into $wildcard locations"
        },
        {
          "names": [
            "-i",
            "--input"
          ],
          "description": "Generate the report based on the specified file instead of streaming logs from the database",
          "takes_arg": true
        },
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, use default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "database:push",
      "description": "Add a new JSON object to a list of data in your Firebase",
      "options": [
        {
          "names": [
            "-d",
            "--data"
          ],
          "description": "Specify escaped JSON directly",
          "takes_arg": true
        },
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, use default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "database:remove",
      "description": "Remove data from your Firebase at the specified path",
      "options": [
        {
          "names": [
            "-y",
            "--confirm"
          ],
          "description": "Pass this option to bypass confirmation prompt"
        },
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, use default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "database:set",
      "description": "Store JSON data at the specified path via STDIN, arg, or file",
      "options": [
        {
          "names": [
            "-d",
            "--data"
          ],
          "description": "Specify escaped JSON directly",
          "takes_arg": true
        },
        {
          "names": [
            "-y",
            "--confirm"
          ],
          "description": "Pass this option to bypass confirmation prompt"
        },
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, use default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "database:settings:get",
      "description": "Store JSON data at the specified path via STDIN, arg, or file",
      "options": [
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, uses default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "database:settings:set",
      "description": "Set the realtime database setting at path",
      "options": [
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, use default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path"
        },
        {
          "name": "value"
        }
      ]
    },
    {
      "name": "database:update",
      "description": "Update some of the keys for the defined path in your Firebase",
      "options": [
        {
          "names": [
            "-d",
            "--data"
          ],
          "description": "Specify escaped JSON directly",
          "takes_arg": true
        },
        {
          "names": [
            "-y",
            "--confirm"
          ],
          "description": "Pass this option to bypass confirmation prompt"
        },
        {
          "names": [
            "--instance"
          ],
          "description": "Use the database <instance>.firebaseio.com (if omitted, use default database instance)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "deploy",
      "description": "Deploy code and assets to your Firebase project",
      "options": [
        {
          "names": [
            "-p",
            "--public"
          ],
          "description": "Override the Hosting public directory specified in firebase.json"
        },
        {
          "names": [
            "-m",
            "--message"
          ],
          "description": "An optional message describing this deploy",
          "takes_arg": true
        },
        {
          "names": [
            "-f",
            "--force"
          ],
          "description": "Delete Cloud Functions missing from the current working directory without confirmation"
        },
        {
          "names": [
            "--only"
          ],
          "description": "Only deploy to specified, comma-separated targets (e.g. \"hosting,storage\"). For functions, can specify filters with colons to scope function deploys to only those functions (e.g. \"--only functions:fun"
        },
        {
          "names": [
            "--except"
          ],
          "description": "Deploy to all targets except specified (e.g. \"database\")",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "emulators:exec",
      "description": "Start the local Firebase emulators, run a test script, then shut down the emulators",
      "options": [
        {
          "names": [
            "--only"
          ],
          "description": "Only specific emulators. This is a comma separated list of emulator names. Valid options are: [\"auth\",\"functions\",\"firestore\",\"database\",\"hosting\",\"pubsub\"]",
          "takes_arg": true
        },
        {
          "names": [
            "--inspect-functions"
          ],
          "description": "Emulate Cloud Functions in debug mode with the node inspector on the given port (9229 if not specified)"
        },
        {
          "names": [
            "--import"
          ],
          "description": "Import emulator data from a previous export (see emulators:export)",
          "takes_arg": true
        },
        {
          "names": [
            "--export-on-exit"
          ],
          "description": "Automatically export emulator data (emulators:export) when the emulators make a clean exit (SIGINT), when no dir is provided the location of --import [dir] is used"
        },
        {
          "names": [
            "--ui"
          ],
          "description": "Run the Emulator UI"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "script"
        }
      ]
    },
    {
      "name": "emulators:export",
      "description": "Export data from running emulators",
      "options": [
        {
          "names": [
            "--only"
          ],
          "description": "Only specific emulators. This is a comma separated list of emulator names. Valid options are: [\"auth\",\"functions\",\"firestore\",\"database\",\"hosting\",\"pubsub\"]",
          "takes_arg": true
        },
        {
          "names": [
            "--force"
          ],
          "description": "Overwrite any export data in the target directory"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "emulators:start",
      "description": "Start the local Firebase emulators",
      "options": [
        {
          "names": [
            "--only"
          ],
          "description": "Only specific emulators. This is a comma separated list of emulator names. Valid options are: [\"auth\",\"functions\",\"firestore\",\"database\",\"hosting\",\"pubsub\"]",
          "takes_arg": true
        },
        {
          "names": [
            "--inspect-functions"
          ],
          "description": "Emulate Cloud Functions in debug mode with the node inspector on the given port (9229 if not specified)",
          "takes_arg": true
        },
        {
          "names": [
            "--import"
          ],
          "description": "Import emulator data from a previous export (see emulators:export)"
        },
        {
          "names": [
            "--export-on-exit"
          ],
          "description": "Automatically export emulator data (emulators:export) when the emulators make a clean exit (SIGINT), when no dir is provided the location of --import [dir] is used"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "experimental:functions:shell",
      "description": "Launch full Node shell with emulated functions",
      "options": [
        {
          "names": [
            "-p",
            "--port"
          ],
          "description": "The port on which to emulate functions (default: 5000) (default: 5000)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "ext:configure",
      "description": "Configure an existing extension instance",
      "options": [
        {
          "names": [
            "--params"
          ],
          "description": "Path of params file with .env format",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "extensionInstanceId"
        }
      ]
    },
    {
      "name": "ext:info",
      "description": "List all the extensions that are installed in your Firebase project",
      "options": [
        {
          "names": [
            "--markdown"
          ],
          "description": "Output info in Markdown suitable for constructing a README file"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "extensionName"
        }
      ]
    },
    {
      "name": "ext:uninstall",
      "description": "Uninstall an extension that is installed in your Firebase project by instance ID",
      "options": [
        {
          "names": [
            "-f",
            "--force"
          ],
          "description": "No confirmation. Otherwise, a confirmation prompt will appear"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "extensionInstanceId"
        }
      ]
    },
    {
      "name": "ext:update",
      "description": "Update an existing extension instance to the latest version",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "extensionInstanceId"
        }
      ]
    },
    {
      "name": "firestore:delete",
      "description": "Delete data from Cloud Firestore",
      "options": [
        {
          "names": [
            "-r",
            "--recursive"
          ],
          "description": "Recursive. Delete all documents and subcollections at and under the specified level. May not be passed along with"
        },
        {
          "names": [
            "--shallow"
          ],
          "description": "Shallow. Delete only documents at the specified level and ignore documents in subcollections. This action can potentially orphan documents nested in subcollections. May not be passed along with -r"
        },
        {
          "names": [
            "--all-collections"
          ],
          "description": "Delete all. Deletes the entire Firestore database, including all collections and documents. Any other flags or arguments will be ignored"
        },
        {
          "names": [
            "-y",
            "--yes"
          ],
          "description": "No confirmation. Otherwise, a confirmation prompt will appear"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path"
        }
      ]
    },
    {
      "name": "firestore:indexes",
      "description": "List indexes in your project's Cloud Firestore database",
      "options": [
        {
          "names": [
            "--pretty"
          ],
          "description": "Pretty print. When not specified the indexes are printed in the JSON specification format"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "functions:config:clone",
      "description": "Clone environment config from another project",
      "options": [
        {
          "names": [
            "--from"
          ],
          "description": "The project from which to clone configuration",
          "takes_arg": true
        },
        {
          "names": [
            "--only"
          ],
          "description": "A comma-separated list of keys to clone",
          "takes_arg": true
        },
        {
          "names": [
            "--except"
          ],
          "description": "A comma-separated list of keys to not clone",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "functions:config:get",
      "description": "Fetch environment config stored at the given path",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "path"
        }
      ]
    },
    {
      "name": "functions:config:set",
      "description": "Set environment config with key=value syntax",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "values",
          "description": "Key=value",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "functions:log",
      "description": "Read logs from deployed functions",
      "options": [
        {
          "names": [
            "--only"
          ],
          "description": "Only show logs of specified, comma-separated functions (e.g. \"funcA,funcB\")",
          "takes_arg": true
        },
        {
          "names": [
            "-n",
            "--lines"
          ],
          "description": "Specify number of log lines to fetch",
          "takes_arg": true
        },
        {
          "names": [
            "--open"
          ],
          "description": "Open logs page in web browser"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "functions:shell",
      "description": "Launch full Node shell with emulated functions",
      "options": [
        {
          "names": [
            "-p",
            "--port"
          ],
          "description": "The port on which to emulate functions",
          "takes_arg": true
        },
        {
          "names": [
            "--inspect-functions"
          ],
          "description": "Emulate Cloud Functions in debug mode with the node inspector on the given port (9229 if not specified)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "help",
      "description": "Display help information",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "hosting:channel:create",
      "description": "Create a Firebase Hosting channel",
      "options": [
        {
          "names": [
            "-e",
            "--expires"
          ],
          "description": "Duration string (e.g. 12h or 30d) for channel expiration, max 30d",
          "takes_arg": true
        },
        {
          "names": [
            "--site"
          ],
          "description": "Site for which to create the channel",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "channelId"
        }
      ]
    },
    {
      "name": "hosting:channel:delete",
      "description": "Delete a Firebase Hosting channel",
      "options": [
        {
          "names": [
            "--site"
          ],
          "description": "Site in which the channel exists",
          "takes_arg": true
        },
        {
          "names": [
            "-f",
            "--force"
          ],
          "description": "Delete without confirmation"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "channelId"
        }
      ]
    },
    {
      "name": "hosting:channel:deploy",
      "description": "Deploy to a specific Firebase Hosting channel",
      "options": [
        {
          "names": [
            "-e",
            "--expires"
          ],
          "description": "Duration string (e.g. 12h, 30d) for channel expiration, max 30d; defaults to 7d",
          "takes_arg": true
        },
        {
          "names": [
            "--only"
          ],
          "description": "Only create previews for specified targets"
        },
        {
          "names": [
            "--open"
          ],
          "description": "Open a browser to the channel after deploying"
        },
        {
          "names": [
            "--no-authorized-domains"
          ],
          "description": "Do not sync channel domains with Firebase Auth"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "channelId"
        }
      ]
    },
    {
      "name": "hosting:channel:list",
      "description": "List all Firebase Hosting channels for your project",
      "options": [
        {
          "names": [
            "--site"
          ],
          "description": "List channels for the specified site",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "hosting:channel:open",
      "description": "Opens the URL for a Firebase Hosting channel",
      "options": [
        {
          "names": [
            "--site"
          ],
          "description": "The site to which the channel belongs",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "channelId"
        }
      ]
    },
    {
      "name": "hosting:clone",
      "description": "Clone a version from one site to another",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "source"
        },
        {
          "name": "targetChannel"
        }
      ]
    },
    {
      "name": "hosting:disable",
      "description": "Stop serving web traffic to your Firebase Hosting site",
      "options": [
        {
          "names": [
            "-y",
            "--confirm"
          ],
          "description": "Skip confirmation"
        },
        {
          "names": [
            "-s",
            "--site"
          ],
          "description": "The site to disable",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "hosting:sites:create",
      "description": "Create a Firebase Hosting site",
      "options": [
        {
          "names": [
            "--app"
          ],
          "description": "Specify an existing Firebase Web App ID",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "siteId"
        }
      ]
    },
    {
      "name": "hosting:sites:delete",
      "description": "Delete a Firebase Hosting site",
      "options": [
        {
          "names": [
            "-f",
            "--force"
          ],
          "description": "Delete without confirmation"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "siteId"
        }
      ]
    },
    {
      "name": "hosting:sites:get",
      "description": "Print info about a Firebase Hosting site",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "siteId"
        }
      ]
    },
    {
      "name": "hosting:sites:list",
      "description": "List Firebase Hosting sites",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "init",
      "description": "Setup a Firebase project in the current directory",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "login",
      "description": "Log the CLI into Firebase",
      "options": [
        {
          "names": [
            "--no-localhost"
          ],
          "description": "Copy and paste a code instead of starting a local server for authentication"
        },
        {
          "names": [
            "--reauth"
          ],
          "description": "Force reauthentication even if already logged in"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "login:add",
      "description": "Authorize the CLI for an additional account",
      "options": [
        {
          "names": [
            "--no-localhost"
          ],
          "description": "Copy and paste a code instead of starting a local server for authentication"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "email"
        }
      ]
    },
    {
      "name": "login:ci",
      "description": "Generate an access token for use in non-interactive environments",
      "options": [
        {
          "names": [
            "--no-localhost"
          ],
          "description": "Copy and paste a code instead of starting a local server for authentication"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "login:list",
      "description": "List authorized CLI accounts",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "login:use",
      "description": "Set the default account to use for this project directory",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "email"
        }
      ]
    },
    {
      "name": "logout",
      "description": "Log the CLI out of Firebase",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "email"
        }
      ]
    },
    {
      "name": "open",
      "description": "Quickly open a browser to relevant project resources",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "link"
        }
      ]
    },
    {
      "name": "projects:addfirebase",
      "description": "Add Firebase resources to a Google Cloud Platform project",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "projectId"
        }
      ]
    },
    {
      "name": "projects:create",
      "description": "Creates a new Google Cloud Platform project, then adds Firebase resources to the project",
      "options": [
        {
          "names": [
            "-n",
            "--display-name"
          ],
          "description": "(optional) display name for the project",
          "takes_arg": true
        },
        {
          "names": [
            "-o",
            "--organization"
          ],
          "description": "(optional) ID of the parent Google Cloud Platform organization under which to create this project",
          "takes_arg": true
        },
        {
          "names": [
            "-f",
            "--folder"
          ],
          "description": "(optional) ID of the parent Google Cloud Platform folder in which to create this project",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "projectId"
        }
      ]
    },
    {
      "name": "projects:list",
      "description": "List all Firebase projects you have access to",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "remoteconfig:get",
      "description": "Get a Firebase project's Remote Config template",
      "options": [
        {
          "names": [
            "-v",
            "--version-number"
          ],
          "description": "Grabs the specified version of the template"
        },
        {
          "names": [
            "-o",
            "--output"
          ],
          "description": "Write config output to a filename (if omitted, will use the default file path)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "remoteconfig:rollback",
      "description": "Roll back a project's published Remote Config template to the one specified by the provided version number",
      "options": [
        {
          "names": [
            "-v",
            "--version-number"
          ],
          "description": "Rollback to the specified version of the template",
          "takes_arg": true
        },
        {
          "names": [
            "--force"
          ],
          "description": "Rollback template to the specified version without confirmation"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "remoteconfig:versions:list",
      "description": "Get a list of Remote Config template versions that have been published for a Firebase project",
      "options": [
        {
          "names": [
            "--limit"
          ],
          "description": "Limit the number of versions being returned. Pass '0' to fetch all versions",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "serve",
      "description": "Start a local server for your static assets",
      "options": [
        {
          "names": [
            "-p",
            "--port"
          ],
          "description": "The port on which to listen (default: 5000) (default: 5000)",
          "takes_arg": true
        },
        {
          "names": [
            "-o",
            "--host"
          ],
          "description": "The host on which to listen (default: localhost) (default: \"localhost\")",
          "takes_arg": true
        },
        {
          "names": [
            "--only"
          ],
          "description": "Only serve specified targets (valid targets are: hosting, functions)"
        },
        {
          "names": [
            "--except"
          ],
          "description": "Serve all except specified targets (valid targets are: hosting, functions)",
          "takes_arg": true
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "setup:emulators:database",
      "description": "Downloads the database emulator",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "setup:emulators:firestore",
      "description": "Downloads the firestore emulator",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "setup:emulators:pubsub",
      "description": "Downloads the pubsub emulator",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "setup:emulators:ui",
      "description": "Downloads the ui emulator",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ]
    },
    {
      "name": "target",
      "description": "Display configured deploy targets for the current project",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "type"
        }
      ]
    },
    {
      "name": "target:apply",
      "description": "Apply a deploy target to a resource",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "type"
        },
        {
          "name": "name"
        },
        {
          "name": "resources",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "target:clear",
      "description": "Clear all resources from a named resource target",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "type"
        },
        {
          "name": "target"
        }
      ]
    },
    {
      "name": "target:remove",
      "description": "Remove a resource target",
      "options": [
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "type"
        },
        {
          "name": "resource"
        }
      ]
    },
    {
      "name": "use",
      "description": "Set an active Firebase project for your working directory",
      "options": [
        {
          "names": [
            "--add"
          ],
          "description": "Create a new project alias interactively",
          "takes_arg": true
        },
        {
          "names": [
            "--alias"
          ],
          "description": "Create a new alias for the provided project id",
          "takes_arg": true
        },
        {
          "names": [
            "--unalias"
          ],
          "description": "Remove an already created project alias",
          "takes_arg": true
        },
        {
          "names": [
            "--clear"
          ],
          "description": "Clear the active project selection"
        },
        {
          "names": [
            "-h",
            "--help"
          ],
          "description": "Output usage information"
        }
      ],
      "args": [
        {
          "name": "alias or project id"
        }
      ]
    }
  ]
}