nighthawk 0.1.1

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
{
  "name": "adb",
  "description": "Android Debug Bridge",
  "subcommands": [
    {
      "name": "devices",
      "description": "List connected devices",
      "options": [
        {
          "names": [
            "-l"
          ],
          "description": "Long output"
        }
      ]
    },
    {
      "name": "help",
      "description": "Show this help message"
    },
    {
      "name": "get-state",
      "description": "Print offline | bootloader | device"
    },
    {
      "name": "get-serialno",
      "description": "Print <serial-number>"
    },
    {
      "name": "get-devpath",
      "description": "Print <device-path>"
    },
    {
      "name": "remount",
      "description": "Remount partitions read-write. if a reboot is required, -R will automatically reboot the device",
      "options": [
        {
          "names": [
            "-R"
          ],
          "description": "Reboot device"
        }
      ]
    },
    {
      "name": "jdwp",
      "description": "List pids of processes hosting a JDWP transport"
    },
    {
      "name": "root",
      "description": "Restart adbd with root permissions"
    },
    {
      "name": "unroot",
      "description": "Restart adbd without root permissions"
    },
    {
      "name": "usb",
      "description": "Restart adbd listening on USB"
    },
    {
      "name": "sideload",
      "description": "Sideload the given full OTA package",
      "args": [
        {
          "name": "OTAPACKAGE"
        }
      ]
    },
    {
      "name": "start-server",
      "description": "Ensure that there is a server running"
    },
    {
      "name": "kill-server",
      "description": "Kill the server if it is running"
    },
    {
      "name": "reconnect",
      "description": "Kick connection from host side to force reconnect",
      "subcommands": [
        {
          "name": "device",
          "description": "Kick connection from device side to force reconnect"
        },
        {
          "name": "offline",
          "description": "Reset offline/unauthorized devices to force reconnect`"
        }
      ]
    },
    {
      "name": "tcpip",
      "description": "Restart adbd listening on TCP on PORT",
      "args": [
        {
          "name": "PORT"
        }
      ]
    },
    {
      "name": "reboot",
      "description": "Reboot the device; defaults to booting system image but supports bootloader and recovery too. sideload reboots into recovery and automatically starts sideload mode, sideload-auto-reboot is the same bu",
      "args": [
        {
          "name": "type",
          "suggestions": [
            "bootloader",
            "recovery",
            "sideload",
            "sideload-auto-reboot"
          ]
        }
      ]
    },
    {
      "name": "disable-verity",
      "description": "Disable dm-verity checking on userdebug builds"
    },
    {
      "name": "enable-verity",
      "description": "Re-enable dm-verity checking on userdebug builds"
    },
    {
      "name": "wait-for-device",
      "description": "Wait for state=device"
    },
    {
      "name": "wait-for-recovery",
      "description": "Wait for state=recovery"
    },
    {
      "name": "wait-for-rescue",
      "description": "Wait for state=rescue"
    },
    {
      "name": "wait-for-sideload",
      "description": "Wait for state=sideload"
    },
    {
      "name": "wait-for-bootloader",
      "description": "Wait for state=bootloader"
    },
    {
      "name": "wait-for-disconnect",
      "description": "Wait for state=disconnect"
    },
    {
      "name": "wait-for-usb-device",
      "description": "Wait for usb in state=device"
    },
    {
      "name": "wait-for-usb-recovery",
      "description": "Wait for usb in state=recovery"
    },
    {
      "name": "wait-for-usb-rescue",
      "description": "Wait for usb in state=rescue"
    },
    {
      "name": "wait-for-usb-sideload",
      "description": "Wait for usb in state=sideload"
    },
    {
      "name": "wait-for-usb-bootloader",
      "description": "Wait for usb in state=bootloader"
    },
    {
      "name": "wait-for-usb-disconnect",
      "description": "Wait for usb in state=disconnect"
    },
    {
      "name": "wait-for-local-device",
      "description": "Wait for local in state=device"
    },
    {
      "name": "wait-for-local-recovery",
      "description": "Wait for local in state=recovery"
    },
    {
      "name": "wait-for-local-rescue",
      "description": "Wait for local in state=rescue"
    },
    {
      "name": "wait-for-local-sideload",
      "description": "Wait for local in state=sideload"
    },
    {
      "name": "wait-for-local-bootloader",
      "description": "Wait for local in state=bootloader"
    },
    {
      "name": "wait-for-local-disconnect",
      "description": "Wait for local in state=disconnect"
    },
    {
      "name": "wait-for-any-device",
      "description": "Wait for any in state=device"
    },
    {
      "name": "wait-for-any-recovery",
      "description": "Wait for any in state=recovery"
    },
    {
      "name": "wait-for-any-rescue",
      "description": "Wait for any in state=rescue"
    },
    {
      "name": "wait-for-any-sideload",
      "description": "Wait for any in state=sideload"
    },
    {
      "name": "wait-for-any-bootloader",
      "description": "Wait for any in state=bootloader"
    },
    {
      "name": "wait-for-any-disconnect",
      "description": "Wait for any in state=disconnect"
    },
    {
      "name": "keygen",
      "description": "Generate adb public/private key; private key stored in FILE",
      "args": [
        {
          "name": "FILE",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "logcat",
      "description": "Show device log (logcat --help for more)"
    },
    {
      "name": "version",
      "description": "Show version num"
    },
    {
      "name": "connect",
      "description": "Connect to a device via TCP/IP [default port=5555]",
      "args": [
        {
          "name": "HOST[:PORT]"
        }
      ]
    },
    {
      "name": "disconnect",
      "description": "Disconnect from given TCP/IP device [default port=5555], or all",
      "args": [
        {
          "name": "HOST[:PORT]"
        }
      ]
    },
    {
      "name": "uninstall",
      "description": "Remove this app package from the device",
      "options": [
        {
          "names": [
            "-k"
          ],
          "description": "Keep the data and cache directories"
        }
      ]
    },
    {
      "name": "bugreport",
      "description": "Write bugreport to given PATH [default=bugreport.zip];",
      "args": [
        {
          "name": "PATH"
        }
      ]
    },
    {
      "name": "pair",
      "description": "Pair with a device for secure TCP/IP communication",
      "args": [
        {
          "name": "HOST[:PORT]"
        },
        {
          "name": "[PAIRING CODE]"
        }
      ]
    },
    {
      "name": "ppp",
      "description": "Run PPP over USB",
      "args": [
        {
          "name": "TTY"
        },
        {
          "name": "[PARAMETER...]",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "emu",
      "description": "Run emulator console command",
      "args": [
        {
          "name": "COMMAND"
        }
      ]
    },
    {
      "name": "install",
      "description": "Push a single package to the device and install it",
      "options": [
        {
          "names": [
            "-l"
          ],
          "description": "Forward-lock the app"
        },
        {
          "names": [
            "-r"
          ],
          "description": "Replace existing application"
        },
        {
          "names": [
            "-t"
          ],
          "description": "Allow test packages"
        },
        {
          "names": [
            "-d"
          ],
          "description": "Allow version code downgrade (debuggable packages only)"
        },
        {
          "names": [
            "-s"
          ],
          "description": "Install on SD card instead of internal storage"
        },
        {
          "names": [
            "-g"
          ],
          "description": "Grant all runtime permissions"
        },
        {
          "names": [
            "--abi"
          ],
          "description": "Override platform's default ABI",
          "takes_arg": true,
          "arg": {
            "name": "ABI"
          }
        },
        {
          "names": [
            "--instant"
          ],
          "description": "Cause the app to be installed as an ephemeral install app"
        },
        {
          "names": [
            "--no-streaming"
          ],
          "description": "Always push APK to device and invoke Package Manager as separate steps"
        },
        {
          "names": [
            "--streaming"
          ],
          "description": "Force streaming APK directly into Package Manager"
        },
        {
          "names": [
            "--fastdeploy"
          ],
          "description": "Use fast deploy"
        },
        {
          "names": [
            "--no-fastdeploy"
          ],
          "description": "Prevent use of fast deploy"
        },
        {
          "names": [
            "--force-agent"
          ],
          "description": "Force update of deployment agent when using fast deploy"
        },
        {
          "names": [
            "--date-check-agent"
          ],
          "description": "Update deployment agent when local version is newer and using fast deploy"
        },
        {
          "names": [
            "--version-check-agent"
          ],
          "description": "Update deployment agent when local version has different version code and using fast deploy"
        },
        {
          "names": [
            "--local-agent"
          ],
          "description": "Locate agent files from local source build (instead of SDK location)"
        }
      ],
      "args": [
        {
          "name": "PACKAGE",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "install-multiple",
      "description": "Push multiple APKs to the device for a single package and install them",
      "options": [
        {
          "names": [
            "-p"
          ],
          "description": "Partial application install (install-multiple only)"
        },
        {
          "names": [
            "-l"
          ],
          "description": "Forward-lock the app"
        },
        {
          "names": [
            "-r"
          ],
          "description": "Replace existing application"
        },
        {
          "names": [
            "-t"
          ],
          "description": "Allow test packages"
        },
        {
          "names": [
            "-d"
          ],
          "description": "Allow version code downgrade (debuggable packages only)"
        },
        {
          "names": [
            "-s"
          ],
          "description": "Install on SD card instead of internal storage"
        },
        {
          "names": [
            "-g"
          ],
          "description": "Grant all runtime permissions"
        },
        {
          "names": [
            "--abi"
          ],
          "description": "Override platform's default ABI",
          "takes_arg": true,
          "arg": {
            "name": "ABI"
          }
        },
        {
          "names": [
            "--instant"
          ],
          "description": "Cause the app to be installed as an ephemeral install app"
        },
        {
          "names": [
            "--no-streaming"
          ],
          "description": "Always push APK to device and invoke Package Manager as separate steps"
        },
        {
          "names": [
            "--streaming"
          ],
          "description": "Force streaming APK directly into Package Manager"
        },
        {
          "names": [
            "--fastdeploy"
          ],
          "description": "Use fast deploy"
        },
        {
          "names": [
            "--no-fastdeploy"
          ],
          "description": "Prevent use of fast deploy"
        },
        {
          "names": [
            "--force-agent"
          ],
          "description": "Force update of deployment agent when using fast deploy"
        },
        {
          "names": [
            "--date-check-agent"
          ],
          "description": "Update deployment agent when local version is newer and using fast deploy"
        },
        {
          "names": [
            "--version-check-agent"
          ],
          "description": "Update deployment agent when local version has different version code and using fast deploy"
        },
        {
          "names": [
            "--local-agent"
          ],
          "description": "Locate agent files from local source build (instead of SDK location)"
        }
      ],
      "args": [
        {
          "name": "PACKAGE",
          "is_variadic": true,
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "install-multi-package",
      "description": "Push one or more packages to the device and install them atomically",
      "options": [
        {
          "names": [
            "-p"
          ],
          "description": "Partial application install (install-multiple only)"
        },
        {
          "names": [
            "-l"
          ],
          "description": "Forward-lock the app"
        },
        {
          "names": [
            "-r"
          ],
          "description": "Replace existing application"
        },
        {
          "names": [
            "-t"
          ],
          "description": "Allow test packages"
        },
        {
          "names": [
            "-d"
          ],
          "description": "Allow version code downgrade (debuggable packages only)"
        },
        {
          "names": [
            "-s"
          ],
          "description": "Install on SD card instead of internal storage"
        },
        {
          "names": [
            "-g"
          ],
          "description": "Grant all runtime permissions"
        },
        {
          "names": [
            "--abi"
          ],
          "description": "Override platform's default ABI",
          "takes_arg": true,
          "arg": {
            "name": "ABI"
          }
        },
        {
          "names": [
            "--instant"
          ],
          "description": "Cause the app to be installed as an ephemeral install app"
        },
        {
          "names": [
            "--no-streaming"
          ],
          "description": "Always push APK to device and invoke Package Manager as separate steps"
        },
        {
          "names": [
            "--streaming"
          ],
          "description": "Force streaming APK directly into Package Manager"
        },
        {
          "names": [
            "--fastdeploy"
          ],
          "description": "Use fast deploy"
        },
        {
          "names": [
            "--no-fastdeploy"
          ],
          "description": "Prevent use of fast deploy"
        },
        {
          "names": [
            "--force-agent"
          ],
          "description": "Force update of deployment agent when using fast deploy"
        },
        {
          "names": [
            "--date-check-agent"
          ],
          "description": "Update deployment agent when local version is newer and using fast deploy"
        },
        {
          "names": [
            "--version-check-agent"
          ],
          "description": "Update deployment agent when local version has different version code and using fast deploy"
        },
        {
          "names": [
            "--local-agent"
          ],
          "description": "Locate agent files from local source build (instead of SDK location)"
        }
      ],
      "args": [
        {
          "name": "PACKAGE",
          "is_variadic": true,
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "shell",
      "description": "Run remote shell command (interactive shell if no command given)",
      "options": [
        {
          "names": [
            "-e"
          ],
          "description": "Choose escape character, or `none` default '~'"
        },
        {
          "names": [
            "-n"
          ],
          "description": "Don't read from stdin"
        },
        {
          "names": [
            "-T"
          ],
          "description": "Disable pty allocation"
        },
        {
          "names": [
            "-t"
          ],
          "description": "Allocate a pty if on a tty"
        },
        {
          "names": [
            "-tt"
          ],
          "description": "-tt: force pty allocation"
        },
        {
          "names": [
            "-x"
          ],
          "description": "Disable remote exit codes and stdout/stderr separation"
        }
      ],
      "args": [
        {
          "name": "COMMANDS ...",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "mdns",
      "description": "Mdns utils",
      "subcommands": [
        {
          "name": "check",
          "description": "Check if mdns discovery is available"
        },
        {
          "name": "services",
          "description": "List all discovered services"
        }
      ]
    },
    {
      "name": "push",
      "description": "Copy local files/directories to device",
      "options": [
        {
          "names": [
            "--sync"
          ],
          "description": "Only push files that are newer on the host than the device"
        },
        {
          "names": [
            "-n"
          ],
          "description": "Dry run: push files to device without storing to the filesystem"
        },
        {
          "names": [
            "-z"
          ],
          "description": "Enable compression with a specified algorithm (any, none, brotli)",
          "takes_arg": true,
          "arg": {
            "name": "ALGORITHM",
            "suggestions": [
              "any",
              "none",
              "brotli"
            ]
          }
        },
        {
          "names": [
            "-Z"
          ],
          "description": "Disable compression"
        }
      ],
      "args": [
        {
          "name": "LOCAL",
          "is_variadic": true,
          "template": "filepaths"
        },
        {
          "name": "REMOTE"
        }
      ]
    },
    {
      "name": "sync",
      "description": "Sync a local build from $ANDROID_PRODUCT_OUT to the device (default all)",
      "options": [
        {
          "names": [
            "-n"
          ],
          "description": "Dry run: push files to device without storing to the filesystem"
        },
        {
          "names": [
            "-l"
          ],
          "description": "List files that would be copied, but don't copy them"
        },
        {
          "names": [
            "-z"
          ],
          "description": "Enable compression with a specified algorithm (any, none, brotli)",
          "takes_arg": true,
          "arg": {
            "name": "ALGORITHM",
            "suggestions": [
              "any",
              "none",
              "brotli"
            ]
          }
        },
        {
          "names": [
            "-Z"
          ],
          "description": "Disable compression"
        }
      ],
      "args": [
        {
          "suggestions": [
            "all",
            "data",
            "odm",
            "oem",
            "product",
            "system",
            "system_ext",
            "vendor"
          ]
        }
      ]
    },
    {
      "name": "pull",
      "description": "Copy files/dirs from device",
      "options": [
        {
          "names": [
            "-a"
          ],
          "description": "Preserve file timestamp and mode"
        },
        {
          "names": [
            "-z"
          ],
          "description": "Enable compression with a specified algorithm (any, none, brotli)",
          "takes_arg": true,
          "arg": {
            "name": "ALGORITHM",
            "suggestions": [
              "any",
              "none",
              "brotli"
            ]
          }
        },
        {
          "names": [
            "-Z"
          ],
          "description": "Disable compression"
        }
      ],
      "args": [
        {
          "name": "REMOTE",
          "is_variadic": true,
          "template": "filepaths"
        },
        {
          "name": "LOCAL"
        }
      ]
    },
    {
      "name": "forward",
      "description": "Forward connection",
      "options": [
        {
          "names": [
            "--list"
          ],
          "description": "List all forward socket connections"
        },
        {
          "names": [
            "--remove"
          ],
          "description": "Remove specific forward socket connection",
          "takes_arg": true,
          "arg": {
            "name": "LOCAL"
          }
        },
        {
          "names": [
            "--remove-all"
          ],
          "description": "Remove all forward socket connections"
        },
        {
          "names": [
            "--no-rebind"
          ],
          "description": "Reversal fails if the specified socket is already bound through a previous reverse command"
        }
      ],
      "args": [
        {
          "name": "LOCAL -> port|domain|device|pid",
          "suggestions": [
            "tcp",
            "localabstract",
            "localreserved",
            "localfilesystem",
            "dev",
            "jdwp",
            "acceptfd"
          ]
        },
        {
          "name": "REMOTE -> port|domain|device|pid",
          "suggestions": [
            "tcp",
            "localabstract",
            "localreserved",
            "localfilesystem",
            "dev",
            "jdwp",
            "acceptfd"
          ]
        }
      ]
    },
    {
      "name": "reverse",
      "description": "Reverse connection",
      "options": [
        {
          "names": [
            "--list"
          ],
          "description": "List all reverse socket connections from device"
        },
        {
          "names": [
            "--remove"
          ],
          "description": "Remove specific reverse socket connection",
          "takes_arg": true,
          "arg": {
            "name": "REMOTE"
          }
        },
        {
          "names": [
            "--remove-all"
          ],
          "description": "Remove all reverse socket connections from device"
        },
        {
          "names": [
            "--no-rebind"
          ],
          "description": "Reversal fails if the specified socket is already bound through a previous reverse command"
        }
      ],
      "args": [
        {
          "name": "REMOTE -> port|domain|device|pid",
          "suggestions": [
            "tcp",
            "localabstract",
            "localreserved",
            "localfilesystem"
          ]
        },
        {
          "name": "LOCAL -> port|domain|device|pid",
          "suggestions": [
            "tcp",
            "localabstract",
            "localreserved",
            "localfilesystem"
          ]
        }
      ]
    }
  ],
  "options": [
    {
      "names": [
        "-a"
      ],
      "description": "Listen on all network interfaces, not just localhost"
    },
    {
      "names": [
        "-d"
      ],
      "description": "Use USB device (error if multiple devices connected)"
    },
    {
      "names": [
        "-e"
      ],
      "description": "Use TCP/IP device (error if multiple TCP/IP devices available)"
    },
    {
      "names": [
        "-s"
      ],
      "description": "Use device with given serial (overrides $ANDROID_SERIAL)",
      "takes_arg": true,
      "arg": {
        "name": "SERIAL"
      }
    },
    {
      "names": [
        "-t"
      ],
      "description": "Use device with given transport id",
      "takes_arg": true,
      "arg": {
        "name": "ID"
      }
    },
    {
      "names": [
        "-H"
      ],
      "description": "Name of adb server host [default=localhost]",
      "takes_arg": true,
      "arg": {
        "name": "host name"
      }
    },
    {
      "names": [
        "-P"
      ],
      "description": "Port of adb server [default=5037]",
      "takes_arg": true,
      "arg": {
        "name": "port"
      }
    },
    {
      "names": [
        "-L"
      ],
      "description": "Listen on given socket for adb server [default=tcp:localhost:5037]",
      "takes_arg": true,
      "arg": {
        "name": "socket"
      }
    }
  ]
}