nighthawk 0.2.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
{
  "name": "sanity",
  "description": "Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets",
  "subcommands": [
    {
      "name": "help",
      "description": "Displays help information about Sanity",
      "args": [
        {
          "name": "command"
        }
      ]
    },
    {
      "name": "build",
      "description": "Builds the current Sanity configuration to a static bundle",
      "options": [
        {
          "names": [
            "--source-maps"
          ],
          "description": "Enable source maps for built bundles (increases size of bundle)"
        },
        {
          "names": [
            "--no-minify"
          ],
          "description": "Skip minifying built JavaScript (speeds up build, increases size of bundle)"
        },
        {
          "names": [
            "-y",
            "--yes"
          ],
          "description": "Use unattended mode, accepting defaults and using only flags for choices"
        }
      ]
    },
    {
      "name": "codemod",
      "description": "Runs a code modification script",
      "options": [
        {
          "names": [
            "--dry"
          ],
          "description": "Dry run (no changes are made to files)"
        },
        {
          "names": [
            "--extensions"
          ],
          "description": "Transform files with these file extensions (comma separated list) (default: js,ts,tsx)",
          "takes_arg": true,
          "arg": {
            "name": "extensions"
          }
        },
        {
          "names": [
            "--no-verify"
          ],
          "description": "Skip verification before running codemod"
        }
      ]
    },
    {
      "name": "configcheck",
      "description": "Checks if the required configuration files for plugins exists and are up to date"
    },
    {
      "name": "cors",
      "description": "Interact with CORS-entries for your project",
      "subcommands": [
        {
          "name": "add",
          "description": "Allow a new origin to use your project API through CORS",
          "options": [
            {
              "names": [
                "--credentials"
              ],
              "description": "Allow credentials (token/cookie) to be sent from this origin"
            },
            {
              "names": [
                "--no-credentials"
              ],
              "description": "Disallow credentials (token/cookie) to be sent from this origin"
            }
          ],
          "args": [
            {
              "name": "origin",
              "description": "The origin to allow"
            }
          ]
        },
        {
          "name": "delete",
          "description": "Delete an existing CORS-origin from your project",
          "args": [
            {
              "name": "origin",
              "description": "The origin to delete"
            }
          ]
        },
        {
          "name": "list",
          "description": "List all origins allowed to access the API for this project"
        }
      ]
    },
    {
      "name": "dataset",
      "description": "Interact with datasets in your project",
      "subcommands": [
        {
          "name": "alias",
          "description": "You can manage your dataset alias using this command",
          "subcommands": [
            {
              "name": "create",
              "args": [
                {
                  "name": "alias-name"
                },
                {
                  "name": "target-dataset"
                }
              ]
            },
            {
              "name": "delete",
              "args": [
                {
                  "name": "alias-name"
                }
              ]
            },
            {
              "name": "link",
              "options": [
                {
                  "names": [
                    "--force"
                  ],
                  "description": "Skips security prompt and forces link command"
                }
              ],
              "args": [
                {
                  "name": "alias-name"
                },
                {
                  "name": "target-dataset"
                }
              ]
            },
            {
              "name": "unlink",
              "args": [
                {
                  "name": "alias-name"
                }
              ]
            }
          ]
        },
        {
          "name": "copy",
          "description": "Manages dataset copying, including starting a new copy job, listing copy jobs and following the progress of a running copy job",
          "options": [
            {
              "names": [
                "--detach"
              ],
              "description": "Start the copy without waiting for it to finish"
            },
            {
              "names": [
                "--attach"
              ],
              "description": "Attach to the running copy process to show progress",
              "takes_arg": true,
              "arg": {
                "name": "job-id"
              }
            },
            {
              "names": [
                "--skip-history"
              ],
              "description": "Don't preserve document history on copy"
            },
            {
              "names": [
                "--list"
              ],
              "description": "Lists all dataset copy jobs corresponding to a certain criteria"
            },
            {
              "names": [
                "--offset"
              ],
              "description": "Start position in the list of jobs. Default 0. With --list",
              "takes_arg": true,
              "arg": {
                "name": "offset"
              }
            },
            {
              "names": [
                "--limit"
              ],
              "description": "Maximum number of jobs returned. Default 10. Maximum 1000. With --list",
              "takes_arg": true,
              "arg": {
                "name": "limit"
              }
            }
          ],
          "args": [
            {
              "name": "source-dataset"
            },
            {
              "name": "target-dataset"
            }
          ]
        },
        {
          "name": "create",
          "description": "Create a new dataset within your project",
          "options": [
            {
              "names": [
                "--visibility"
              ],
              "description": "Set visibility for this dataset (public/private)",
              "takes_arg": true,
              "arg": {
                "name": "visibility",
                "suggestions": [
                  "public",
                  "private"
                ]
              }
            }
          ],
          "args": [
            {
              "name": "name"
            }
          ]
        },
        {
          "name": "delete",
          "description": "Delete a dataset within your project",
          "args": [
            {
              "name": "datasetName"
            }
          ]
        },
        {
          "name": "export",
          "description": "Export dataset to local filesystem as a gzipped tarball",
          "options": [
            {
              "names": [
                "--raw"
              ],
              "description": "Extract only documents, without rewriting asset references"
            },
            {
              "names": [
                "--no-assets"
              ],
              "description": "Export only non-asset documents and remove references to image assets"
            },
            {
              "names": [
                "--no-drafts"
              ],
              "description": "Export only published versions of documents"
            },
            {
              "names": [
                "--no-compress"
              ],
              "description": "Skips compressing tarball entries (still generates a gzip file)"
            },
            {
              "names": [
                "--types"
              ],
              "description": "Defines which document types to export",
              "takes_arg": true,
              "arg": {
                "name": "types"
              }
            },
            {
              "names": [
                "--overwrite"
              ],
              "description": "Overwrite any file with the same name"
            },
            {
              "names": [
                "--asset-concurrency"
              ],
              "description": "Concurrent number of asset downloads",
              "takes_arg": true,
              "arg": {
                "name": "num"
              }
            }
          ],
          "args": [
            {
              "name": "name"
            },
            {
              "name": "destination",
              "template": "folders"
            }
          ]
        },
        {
          "name": "import",
          "description": "Import documents to given dataset from ndjson file",
          "options": [
            {
              "names": [
                "--missing"
              ],
              "description": "On duplicate document IDs, skip importing document in question"
            },
            {
              "names": [
                "--replace"
              ],
              "description": "On duplicate document IDs, replace existing document with imported document"
            },
            {
              "names": [
                "--allow-failing-assets"
              ],
              "description": "Skip assets that cannot be fetched/uploaded"
            },
            {
              "names": [
                "--replace-assets"
              ],
              "description": "Skip reuse of existing assets"
            }
          ],
          "args": [
            {
              "name": "file",
              "template": "filepaths"
            },
            {
              "name": "target_dataset"
            }
          ]
        },
        {
          "name": "list",
          "description": "List datasets of your project"
        },
        {
          "name": "visibility",
          "description": "Set visibility of a dataset",
          "args": [
            {
              "name": "dataset"
            },
            {
              "name": "mode",
              "suggestions": [
                "get",
                "set"
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "debug",
      "description": "Gathers information on Sanity environment",
      "options": [
        {
          "names": [
            "--secrets"
          ],
          "description": "Include API keys in output"
        }
      ]
    },
    {
      "name": "deploy",
      "description": "Deploys a statically built Sanity studio",
      "options": [
        {
          "names": [
            "--source-maps"
          ],
          "description": "Enable source maps for built bundles (increases size of bundle)"
        },
        {
          "names": [
            "--no-minify"
          ],
          "description": "Skip minifying built JavaScript (speeds up build, increases size of bundle)"
        },
        {
          "names": [
            "--no-build"
          ],
          "description": "Don't build the studio prior to deploy, instead deploying the version currently in `dist/`"
        }
      ],
      "args": [
        {
          "name": "source_dir",
          "template": "folders"
        }
      ]
    },
    {
      "name": "docs",
      "description": "Opens the Sanity documentation"
    },
    {
      "name": "documents",
      "description": "Interact with documents in your project",
      "subcommands": [
        {
          "name": "create",
          "description": "Create one or more documents",
          "options": [
            {
              "names": [
                "--replace"
              ],
              "description": "On duplicate document IDs, replace existing document with specified document(s)"
            },
            {
              "names": [
                "--missing"
              ],
              "description": "On duplicate document IDs, don't modify the target document(s)"
            },
            {
              "names": [
                "--watch"
              ],
              "description": "Write the documents whenever the target file or buffer changes"
            },
            {
              "names": [
                "--json5"
              ],
              "description": "Use JSON5 file type to allow a \"simplified\" version of JSON"
            },
            {
              "names": [
                "--id"
              ],
              "description": "Specify a document ID to use. Will fetch remote document ID and populate editor",
              "takes_arg": true,
              "arg": {
                "name": "id"
              }
            },
            {
              "names": [
                "--dataset"
              ],
              "description": "NAME to override dataset",
              "takes_arg": true,
              "arg": {
                "name": "dataset"
              }
            }
          ],
          "args": [
            {
              "name": "file",
              "template": "filepaths"
            }
          ]
        },
        {
          "name": "delete",
          "description": "Delete a document by ID",
          "options": [
            {
              "names": [
                "--dataset"
              ],
              "description": "NAME to override dataset",
              "takes_arg": true,
              "arg": {
                "name": "dataset"
              }
            }
          ],
          "args": [
            {
              "name": "id",
              "is_variadic": true
            }
          ]
        },
        {
          "name": "get",
          "description": "Get and print a document by ID",
          "options": [
            {
              "names": [
                "--pretty"
              ],
              "description": "Colorized JSON output"
            },
            {
              "names": [
                "--dataset"
              ],
              "description": "NAME to override dataset",
              "takes_arg": true,
              "arg": {
                "name": "dataset"
              }
            }
          ],
          "args": [
            {
              "name": "document_id"
            }
          ]
        },
        {
          "name": "query",
          "description": "Query for documents",
          "options": [
            {
              "names": [
                "--pretty"
              ],
              "description": "Colorized JSON output"
            },
            {
              "names": [
                "--dataset"
              ],
              "description": "NAME to override dataset",
              "takes_arg": true,
              "arg": {
                "name": "dataset"
              }
            },
            {
              "names": [
                "--api-version"
              ],
              "description": "API version to use (defaults to `v1`)",
              "takes_arg": true,
              "arg": {
                "name": "version"
              }
            }
          ],
          "args": [
            {
              "name": "query"
            }
          ]
        }
      ]
    },
    {
      "name": "exec",
      "description": "Runs a script in Sanity context",
      "options": [
        {
          "names": [
            "--with-user-token"
          ],
          "description": "Preload access token from CLI config into 'part:@sanity/base/client' part"
        },
        {
          "names": [
            "--mock-browser-env"
          ],
          "description": "Mocks a browser-like environment using jsdom"
        }
      ],
      "args": [
        {
          "name": "script",
          "template": "filepaths"
        }
      ]
    },
    {
      "name": "graphql",
      "description": "Interact with GraphQL APIs",
      "subcommands": [
        {
          "name": "deploy",
          "description": "Deploy a GraphQL API from the current Sanity schema",
          "options": [
            {
              "names": [
                "--dataset"
              ],
              "description": "Deploy API for the given dataset",
              "takes_arg": true,
              "arg": {
                "name": "dataset"
              }
            },
            {
              "names": [
                "--tag"
              ],
              "description": "Deploy API to given tag (defaults to 'default')",
              "takes_arg": true,
              "arg": {
                "name": "tag"
              }
            },
            {
              "names": [
                "--generation"
              ],
              "description": "API generation to deploy (defaults to 'gen3')",
              "takes_arg": true,
              "arg": {
                "name": "generation"
              }
            },
            {
              "names": [
                "--non-null-document-fields"
              ],
              "description": "Set document interface fields (_id, _type etc) as non-null"
            },
            {
              "names": [
                "--playground"
              ],
              "description": "Deploy a GraphQL playground for easily testing queries (public)"
            },
            {
              "names": [
                "--no-playground"
              ],
              "description": "Skip playground prompt (do not deploy a playground)"
            },
            {
              "names": [
                "--force"
              ],
              "description": "Deploy API without confirming breaking changes"
            }
          ]
        },
        {
          "name": "list",
          "description": "Lists all the GraphQL endpoints deployed for this project"
        },
        {
          "name": "undeploy",
          "description": "Remove a deployed GraphQL API",
          "options": [
            {
              "names": [
                "--dataset"
              ],
              "description": "Delete GraphQL API for the given dataset",
              "takes_arg": true,
              "arg": {
                "name": "dataset"
              }
            },
            {
              "names": [
                "--tag"
              ],
              "description": "Delete GraphQL API for the given tag (defaults to 'default')",
              "takes_arg": true,
              "arg": {
                "name": "tag"
              }
            }
          ]
        }
      ]
    },
    {
      "name": "hook",
      "description": "Interact with hooks in your project",
      "subcommands": [
        {
          "name": "attempt",
          "description": "Print details of a given webhook delivery attempt",
          "args": [
            {
              "name": "attempt_id"
            }
          ]
        },
        {
          "name": "create",
          "description": "Create a new hook for the given dataset"
        },
        {
          "name": "delete",
          "description": "Delete a hook within your project",
          "args": [
            {
              "name": "name"
            }
          ]
        },
        {
          "name": "list",
          "description": "List hooks for a given project"
        },
        {
          "name": "logs",
          "description": "List latest log entries for a given hook",
          "args": [
            {
              "name": "name"
            }
          ]
        }
      ]
    },
    {
      "name": "init",
      "description": "Initialize a new Sanity project or plugin",
      "options": [
        {
          "names": [
            "-y",
            "--yes"
          ],
          "description": "Use unattended mode, accepting defaults and using only flags for choices"
        },
        {
          "names": [
            "--project"
          ],
          "description": "Project ID to use for the studio",
          "takes_arg": true,
          "arg": {
            "name": "projectId"
          }
        },
        {
          "names": [
            "--organization"
          ],
          "description": "Organization ID to use for the project",
          "takes_arg": true,
          "arg": {
            "name": "organizationId"
          }
        },
        {
          "names": [
            "--dataset"
          ],
          "description": "Dataset name for the studio",
          "takes_arg": true,
          "arg": {
            "name": "dataset"
          }
        },
        {
          "names": [
            "--dataset-default"
          ],
          "description": "Set up a project with a public dataset named \"production\""
        },
        {
          "names": [
            "--output-path"
          ],
          "description": "Path to write studio project to",
          "takes_arg": true,
          "arg": {
            "name": "path"
          }
        },
        {
          "names": [
            "--template"
          ],
          "description": "Project template to use [default: \"clean\"]",
          "takes_arg": true,
          "arg": {
            "name": "template"
          }
        },
        {
          "names": [
            "--provider"
          ],
          "description": "Login provider to use",
          "takes_arg": true,
          "arg": {
            "name": "provider"
          }
        },
        {
          "names": [
            "--visibility"
          ],
          "description": "Visibility mode for dataset (public/private)",
          "takes_arg": true,
          "arg": {
            "name": "mode",
            "suggestions": [
              "public",
              "private"
            ]
          }
        },
        {
          "names": [
            "--create-project"
          ],
          "description": "Create a new project with the given name",
          "takes_arg": true,
          "arg": {
            "name": "name"
          }
        },
        {
          "names": [
            "--project-plan"
          ],
          "description": "Optionally select a plan for a new project",
          "takes_arg": true,
          "arg": {
            "name": "name"
          }
        },
        {
          "names": [
            "--coupon"
          ],
          "description": "Optionally select a coupon for a new project (cannot be used with --project-plan)",
          "takes_arg": true,
          "arg": {
            "name": "name"
          }
        },
        {
          "names": [
            "--reconfigure"
          ],
          "description": "Reconfigure Sanity studio in current folder with new project/dataset"
        }
      ]
    },
    {
      "name": "install",
      "description": "Installs a Sanity plugin to the current Sanity configuration",
      "args": [
        {
          "name": "plugin"
        }
      ]
    },
    {
      "name": "login",
      "description": "Authenticates against the Sanity.io API (no flag) or a third-party identity provider (with --sso flag)",
      "options": [
        {
          "names": [
            "--sso"
          ],
          "description": "Authenticate against a third-party identity provider",
          "takes_arg": true,
          "arg": {
            "name": "slug"
          }
        }
      ]
    },
    {
      "name": "logout",
      "description": "Logs out of the Sanity.io session"
    },
    {
      "name": "manage",
      "description": "Opens the Sanity project management UI"
    },
    {
      "name": "projects",
      "description": "Interact with projects connected to your logged in user",
      "subcommands": [
        {
          "name": "list",
          "description": "Lists projects connected to your user",
          "options": [
            {
              "names": [
                "--sort"
              ],
              "description": "Sort output by specified column",
              "takes_arg": true,
              "arg": {
                "name": "field"
              }
            },
            {
              "names": [
                "--order"
              ],
              "description": "Sort output ascending/descending",
              "takes_arg": true,
              "arg": {
                "name": "order",
                "suggestions": [
                  "asc",
                  "desc"
                ]
              }
            }
          ]
        }
      ]
    },
    {
      "name": "start",
      "description": "Starts a web server for the Content Studio",
      "options": [
        {
          "names": [
            "--port"
          ],
          "description": "TCP port to start server on. [default: 3333]",
          "takes_arg": true,
          "arg": {
            "name": "port"
          }
        },
        {
          "names": [
            "--host"
          ],
          "description": "The local network interface at which to listen. [default: \"127.0.0.1\"]",
          "takes_arg": true,
          "arg": {
            "name": "host"
          }
        }
      ]
    },
    {
      "name": "undeploy",
      "description": "Removes the deployed studio from <hostname>.sanity.studio"
    },
    {
      "name": "uninstall",
      "description": "Removes a Sanity plugin from the current Sanity configuration",
      "args": [
        {
          "name": "plugin"
        }
      ]
    },
    {
      "name": "upgrade",
      "description": "Upgrades all (or some) Sanity modules to their latest versions",
      "options": [
        {
          "names": [
            "--range"
          ],
          "description": "Version range to upgrade to, eg '^2.2.7' or '2.1.x'",
          "takes_arg": true,
          "arg": {
            "name": "range"
          }
        },
        {
          "names": [
            "--tag"
          ],
          "description": "Tagged release to upgrade to, eg 'canary' or 'some-feature'",
          "takes_arg": true,
          "arg": {
            "name": "tag"
          }
        },
        {
          "names": [
            "--save-exact"
          ],
          "description": "Pin the resolved version numbers in package.json (no ^ prefix)"
        }
      ]
    },
    {
      "name": "users",
      "description": "Manage users of your project",
      "subcommands": [
        {
          "name": "invite",
          "description": "Invite a new user to the project",
          "options": [
            {
              "names": [
                "--role"
              ],
              "description": "Role to invite the user as",
              "takes_arg": true,
              "arg": {
                "name": "role"
              }
            }
          ],
          "args": [
            {
              "name": "email"
            }
          ]
        },
        {
          "name": "list",
          "description": "List users of the project",
          "options": [
            {
              "names": [
                "--no-invitations"
              ],
              "description": "Don't include pending invitations"
            },
            {
              "names": [
                "--no-robots"
              ],
              "description": "Don't include robots (token users)"
            },
            {
              "names": [
                "--sort"
              ],
              "description": "Sort users by specified column: id, name, role, date",
              "takes_arg": true,
              "arg": {
                "name": "field",
                "suggestions": [
                  "id",
                  "name",
                  "role",
                  "date"
                ]
              }
            },
            {
              "names": [
                "--order"
              ],
              "description": "Sort output ascending/descending",
              "takes_arg": true,
              "arg": {
                "name": "order",
                "suggestions": [
                  "asc",
                  "desc"
                ]
              }
            }
          ]
        }
      ]
    },
    {
      "name": "versions",
      "description": "Shows the installed versions of Sanity CLI and core components"
    }
  ],
  "options": [
    {
      "names": [
        "--help",
        "-h"
      ],
      "description": "Show help for sanity"
    }
  ]
}