-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathSURFACE.txt
More file actions
2422 lines (2422 loc) · 97.8 KB
/
SURFACE.txt
File metadata and controls
2422 lines (2422 loc) · 97.8 KB
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
CMD fizzy
CMD fizzy account
CMD fizzy account entropy
CMD fizzy account export-create
CMD fizzy account export-show
CMD fizzy account help
CMD fizzy account join-code-reset
CMD fizzy account join-code-show
CMD fizzy account join-code-update
CMD fizzy account settings-update
CMD fizzy account show
CMD fizzy auth
CMD fizzy auth help
CMD fizzy auth list
CMD fizzy auth login
CMD fizzy auth logout
CMD fizzy auth status
CMD fizzy auth switch
CMD fizzy board
CMD fizzy board closed
CMD fizzy board create
CMD fizzy board delete
CMD fizzy board entropy
CMD fizzy board help
CMD fizzy board involvement
CMD fizzy board list
CMD fizzy board postponed
CMD fizzy board publish
CMD fizzy board show
CMD fizzy board stream
CMD fizzy board unpublish
CMD fizzy board update
CMD fizzy card
CMD fizzy card assign
CMD fizzy card attachments
CMD fizzy card attachments download
CMD fizzy card attachments help
CMD fizzy card attachments show
CMD fizzy card close
CMD fizzy card column
CMD fizzy card create
CMD fizzy card delete
CMD fizzy card golden
CMD fizzy card help
CMD fizzy card image-remove
CMD fizzy card list
CMD fizzy card mark-read
CMD fizzy card mark-unread
CMD fizzy card move
CMD fizzy card pin
CMD fizzy card postpone
CMD fizzy card publish
CMD fizzy card reopen
CMD fizzy card self-assign
CMD fizzy card show
CMD fizzy card tag
CMD fizzy card ungolden
CMD fizzy card unpin
CMD fizzy card untriage
CMD fizzy card unwatch
CMD fizzy card update
CMD fizzy card watch
CMD fizzy column
CMD fizzy column create
CMD fizzy column delete
CMD fizzy column help
CMD fizzy column list
CMD fizzy column move-left
CMD fizzy column move-right
CMD fizzy column show
CMD fizzy column update
CMD fizzy commands
CMD fizzy comment
CMD fizzy comment attachments
CMD fizzy comment attachments download
CMD fizzy comment attachments help
CMD fizzy comment attachments show
CMD fizzy comment create
CMD fizzy comment delete
CMD fizzy comment help
CMD fizzy comment list
CMD fizzy comment show
CMD fizzy comment update
CMD fizzy completion
CMD fizzy help
CMD fizzy identity
CMD fizzy identity help
CMD fizzy identity show
CMD fizzy migrate
CMD fizzy migrate board
CMD fizzy migrate help
CMD fizzy notification
CMD fizzy notification help
CMD fizzy notification list
CMD fizzy notification read
CMD fizzy notification read-all
CMD fizzy notification settings-show
CMD fizzy notification settings-update
CMD fizzy notification tray
CMD fizzy notification unread
CMD fizzy pin
CMD fizzy pin help
CMD fizzy pin list
CMD fizzy reaction
CMD fizzy reaction create
CMD fizzy reaction delete
CMD fizzy reaction help
CMD fizzy reaction list
CMD fizzy search
CMD fizzy setup
CMD fizzy setup claude
CMD fizzy setup help
CMD fizzy signup
CMD fizzy signup complete
CMD fizzy signup help
CMD fizzy signup start
CMD fizzy signup verify
CMD fizzy skill
CMD fizzy skill help
CMD fizzy skill install
CMD fizzy step
CMD fizzy step create
CMD fizzy step delete
CMD fizzy step help
CMD fizzy step list
CMD fizzy step show
CMD fizzy step update
CMD fizzy tag
CMD fizzy tag help
CMD fizzy tag list
CMD fizzy upload
CMD fizzy upload file
CMD fizzy upload help
CMD fizzy user
CMD fizzy user avatar-remove
CMD fizzy user deactivate
CMD fizzy user help
CMD fizzy user list
CMD fizzy user push-subscription-create
CMD fizzy user push-subscription-delete
CMD fizzy user role
CMD fizzy user show
CMD fizzy user update
CMD fizzy version
CMD fizzy webhook
CMD fizzy webhook create
CMD fizzy webhook delete
CMD fizzy webhook help
CMD fizzy webhook list
CMD fizzy webhook reactivate
CMD fizzy webhook show
CMD fizzy webhook update
FLAG fizzy --agent type=bool
FLAG fizzy --api-url type=string
FLAG fizzy --count type=bool
FLAG fizzy --help type=bool
FLAG fizzy --ids-only type=bool
FLAG fizzy --json type=bool
FLAG fizzy --limit type=int
FLAG fizzy --markdown type=bool
FLAG fizzy --profile type=string
FLAG fizzy --quiet type=bool
FLAG fizzy --styled type=bool
FLAG fizzy --token type=string
FLAG fizzy --verbose type=bool
FLAG fizzy account --agent type=bool
FLAG fizzy account --api-url type=string
FLAG fizzy account --count type=bool
FLAG fizzy account --help type=bool
FLAG fizzy account --ids-only type=bool
FLAG fizzy account --json type=bool
FLAG fizzy account --limit type=int
FLAG fizzy account --markdown type=bool
FLAG fizzy account --profile type=string
FLAG fizzy account --quiet type=bool
FLAG fizzy account --styled type=bool
FLAG fizzy account --token type=string
FLAG fizzy account --verbose type=bool
FLAG fizzy account entropy --agent type=bool
FLAG fizzy account entropy --api-url type=string
FLAG fizzy account entropy --auto_postpone_period_in_days type=int
FLAG fizzy account entropy --count type=bool
FLAG fizzy account entropy --help type=bool
FLAG fizzy account entropy --ids-only type=bool
FLAG fizzy account entropy --json type=bool
FLAG fizzy account entropy --limit type=int
FLAG fizzy account entropy --markdown type=bool
FLAG fizzy account entropy --profile type=string
FLAG fizzy account entropy --quiet type=bool
FLAG fizzy account entropy --styled type=bool
FLAG fizzy account entropy --token type=string
FLAG fizzy account entropy --verbose type=bool
FLAG fizzy account export-create --agent type=bool
FLAG fizzy account export-create --api-url type=string
FLAG fizzy account export-create --count type=bool
FLAG fizzy account export-create --help type=bool
FLAG fizzy account export-create --ids-only type=bool
FLAG fizzy account export-create --json type=bool
FLAG fizzy account export-create --limit type=int
FLAG fizzy account export-create --markdown type=bool
FLAG fizzy account export-create --profile type=string
FLAG fizzy account export-create --quiet type=bool
FLAG fizzy account export-create --styled type=bool
FLAG fizzy account export-create --token type=string
FLAG fizzy account export-create --verbose type=bool
FLAG fizzy account export-show --agent type=bool
FLAG fizzy account export-show --api-url type=string
FLAG fizzy account export-show --count type=bool
FLAG fizzy account export-show --help type=bool
FLAG fizzy account export-show --ids-only type=bool
FLAG fizzy account export-show --json type=bool
FLAG fizzy account export-show --limit type=int
FLAG fizzy account export-show --markdown type=bool
FLAG fizzy account export-show --profile type=string
FLAG fizzy account export-show --quiet type=bool
FLAG fizzy account export-show --styled type=bool
FLAG fizzy account export-show --token type=string
FLAG fizzy account export-show --verbose type=bool
FLAG fizzy account help --agent type=bool
FLAG fizzy account help --api-url type=string
FLAG fizzy account help --count type=bool
FLAG fizzy account help --help type=bool
FLAG fizzy account help --ids-only type=bool
FLAG fizzy account help --json type=bool
FLAG fizzy account help --limit type=int
FLAG fizzy account help --markdown type=bool
FLAG fizzy account help --profile type=string
FLAG fizzy account help --quiet type=bool
FLAG fizzy account help --styled type=bool
FLAG fizzy account help --token type=string
FLAG fizzy account help --verbose type=bool
FLAG fizzy account join-code-reset --agent type=bool
FLAG fizzy account join-code-reset --api-url type=string
FLAG fizzy account join-code-reset --count type=bool
FLAG fizzy account join-code-reset --help type=bool
FLAG fizzy account join-code-reset --ids-only type=bool
FLAG fizzy account join-code-reset --json type=bool
FLAG fizzy account join-code-reset --limit type=int
FLAG fizzy account join-code-reset --markdown type=bool
FLAG fizzy account join-code-reset --profile type=string
FLAG fizzy account join-code-reset --quiet type=bool
FLAG fizzy account join-code-reset --styled type=bool
FLAG fizzy account join-code-reset --token type=string
FLAG fizzy account join-code-reset --verbose type=bool
FLAG fizzy account join-code-show --agent type=bool
FLAG fizzy account join-code-show --api-url type=string
FLAG fizzy account join-code-show --count type=bool
FLAG fizzy account join-code-show --help type=bool
FLAG fizzy account join-code-show --ids-only type=bool
FLAG fizzy account join-code-show --json type=bool
FLAG fizzy account join-code-show --limit type=int
FLAG fizzy account join-code-show --markdown type=bool
FLAG fizzy account join-code-show --profile type=string
FLAG fizzy account join-code-show --quiet type=bool
FLAG fizzy account join-code-show --styled type=bool
FLAG fizzy account join-code-show --token type=string
FLAG fizzy account join-code-show --verbose type=bool
FLAG fizzy account join-code-update --agent type=bool
FLAG fizzy account join-code-update --api-url type=string
FLAG fizzy account join-code-update --count type=bool
FLAG fizzy account join-code-update --help type=bool
FLAG fizzy account join-code-update --ids-only type=bool
FLAG fizzy account join-code-update --json type=bool
FLAG fizzy account join-code-update --limit type=int
FLAG fizzy account join-code-update --markdown type=bool
FLAG fizzy account join-code-update --profile type=string
FLAG fizzy account join-code-update --quiet type=bool
FLAG fizzy account join-code-update --styled type=bool
FLAG fizzy account join-code-update --token type=string
FLAG fizzy account join-code-update --usage-limit type=int
FLAG fizzy account join-code-update --verbose type=bool
FLAG fizzy account settings-update --agent type=bool
FLAG fizzy account settings-update --api-url type=string
FLAG fizzy account settings-update --count type=bool
FLAG fizzy account settings-update --help type=bool
FLAG fizzy account settings-update --ids-only type=bool
FLAG fizzy account settings-update --json type=bool
FLAG fizzy account settings-update --limit type=int
FLAG fizzy account settings-update --markdown type=bool
FLAG fizzy account settings-update --name type=string
FLAG fizzy account settings-update --profile type=string
FLAG fizzy account settings-update --quiet type=bool
FLAG fizzy account settings-update --styled type=bool
FLAG fizzy account settings-update --token type=string
FLAG fizzy account settings-update --verbose type=bool
FLAG fizzy account show --agent type=bool
FLAG fizzy account show --api-url type=string
FLAG fizzy account show --count type=bool
FLAG fizzy account show --help type=bool
FLAG fizzy account show --ids-only type=bool
FLAG fizzy account show --json type=bool
FLAG fizzy account show --limit type=int
FLAG fizzy account show --markdown type=bool
FLAG fizzy account show --profile type=string
FLAG fizzy account show --quiet type=bool
FLAG fizzy account show --styled type=bool
FLAG fizzy account show --token type=string
FLAG fizzy account show --verbose type=bool
FLAG fizzy auth --agent type=bool
FLAG fizzy auth --api-url type=string
FLAG fizzy auth --count type=bool
FLAG fizzy auth --help type=bool
FLAG fizzy auth --ids-only type=bool
FLAG fizzy auth --json type=bool
FLAG fizzy auth --limit type=int
FLAG fizzy auth --markdown type=bool
FLAG fizzy auth --profile type=string
FLAG fizzy auth --quiet type=bool
FLAG fizzy auth --styled type=bool
FLAG fizzy auth --token type=string
FLAG fizzy auth --verbose type=bool
FLAG fizzy auth help --agent type=bool
FLAG fizzy auth help --api-url type=string
FLAG fizzy auth help --count type=bool
FLAG fizzy auth help --help type=bool
FLAG fizzy auth help --ids-only type=bool
FLAG fizzy auth help --json type=bool
FLAG fizzy auth help --limit type=int
FLAG fizzy auth help --markdown type=bool
FLAG fizzy auth help --profile type=string
FLAG fizzy auth help --quiet type=bool
FLAG fizzy auth help --styled type=bool
FLAG fizzy auth help --token type=string
FLAG fizzy auth help --verbose type=bool
FLAG fizzy auth list --agent type=bool
FLAG fizzy auth list --api-url type=string
FLAG fizzy auth list --count type=bool
FLAG fizzy auth list --help type=bool
FLAG fizzy auth list --ids-only type=bool
FLAG fizzy auth list --json type=bool
FLAG fizzy auth list --limit type=int
FLAG fizzy auth list --markdown type=bool
FLAG fizzy auth list --profile type=string
FLAG fizzy auth list --quiet type=bool
FLAG fizzy auth list --styled type=bool
FLAG fizzy auth list --token type=string
FLAG fizzy auth list --verbose type=bool
FLAG fizzy auth login --agent type=bool
FLAG fizzy auth login --api-url type=string
FLAG fizzy auth login --count type=bool
FLAG fizzy auth login --help type=bool
FLAG fizzy auth login --ids-only type=bool
FLAG fizzy auth login --json type=bool
FLAG fizzy auth login --limit type=int
FLAG fizzy auth login --markdown type=bool
FLAG fizzy auth login --profile type=string
FLAG fizzy auth login --quiet type=bool
FLAG fizzy auth login --styled type=bool
FLAG fizzy auth login --token type=string
FLAG fizzy auth login --verbose type=bool
FLAG fizzy auth logout --agent type=bool
FLAG fizzy auth logout --all type=bool
FLAG fizzy auth logout --api-url type=string
FLAG fizzy auth logout --count type=bool
FLAG fizzy auth logout --help type=bool
FLAG fizzy auth logout --ids-only type=bool
FLAG fizzy auth logout --json type=bool
FLAG fizzy auth logout --limit type=int
FLAG fizzy auth logout --markdown type=bool
FLAG fizzy auth logout --profile type=string
FLAG fizzy auth logout --quiet type=bool
FLAG fizzy auth logout --styled type=bool
FLAG fizzy auth logout --token type=string
FLAG fizzy auth logout --verbose type=bool
FLAG fizzy auth status --agent type=bool
FLAG fizzy auth status --api-url type=string
FLAG fizzy auth status --count type=bool
FLAG fizzy auth status --help type=bool
FLAG fizzy auth status --ids-only type=bool
FLAG fizzy auth status --json type=bool
FLAG fizzy auth status --limit type=int
FLAG fizzy auth status --markdown type=bool
FLAG fizzy auth status --profile type=string
FLAG fizzy auth status --quiet type=bool
FLAG fizzy auth status --styled type=bool
FLAG fizzy auth status --token type=string
FLAG fizzy auth status --verbose type=bool
FLAG fizzy auth switch --agent type=bool
FLAG fizzy auth switch --api-url type=string
FLAG fizzy auth switch --count type=bool
FLAG fizzy auth switch --help type=bool
FLAG fizzy auth switch --ids-only type=bool
FLAG fizzy auth switch --json type=bool
FLAG fizzy auth switch --limit type=int
FLAG fizzy auth switch --markdown type=bool
FLAG fizzy auth switch --profile type=string
FLAG fizzy auth switch --quiet type=bool
FLAG fizzy auth switch --styled type=bool
FLAG fizzy auth switch --token type=string
FLAG fizzy auth switch --verbose type=bool
FLAG fizzy board --agent type=bool
FLAG fizzy board --api-url type=string
FLAG fizzy board --count type=bool
FLAG fizzy board --help type=bool
FLAG fizzy board --ids-only type=bool
FLAG fizzy board --json type=bool
FLAG fizzy board --limit type=int
FLAG fizzy board --markdown type=bool
FLAG fizzy board --profile type=string
FLAG fizzy board --quiet type=bool
FLAG fizzy board --styled type=bool
FLAG fizzy board --token type=string
FLAG fizzy board --verbose type=bool
FLAG fizzy board closed --agent type=bool
FLAG fizzy board closed --all type=bool
FLAG fizzy board closed --api-url type=string
FLAG fizzy board closed --board type=string
FLAG fizzy board closed --count type=bool
FLAG fizzy board closed --help type=bool
FLAG fizzy board closed --ids-only type=bool
FLAG fizzy board closed --json type=bool
FLAG fizzy board closed --limit type=int
FLAG fizzy board closed --markdown type=bool
FLAG fizzy board closed --page type=int
FLAG fizzy board closed --profile type=string
FLAG fizzy board closed --quiet type=bool
FLAG fizzy board closed --styled type=bool
FLAG fizzy board closed --token type=string
FLAG fizzy board closed --verbose type=bool
FLAG fizzy board create --agent type=bool
FLAG fizzy board create --all_access type=string
FLAG fizzy board create --api-url type=string
FLAG fizzy board create --auto_postpone_period_in_days type=int
FLAG fizzy board create --count type=bool
FLAG fizzy board create --help type=bool
FLAG fizzy board create --ids-only type=bool
FLAG fizzy board create --json type=bool
FLAG fizzy board create --limit type=int
FLAG fizzy board create --markdown type=bool
FLAG fizzy board create --name type=string
FLAG fizzy board create --profile type=string
FLAG fizzy board create --quiet type=bool
FLAG fizzy board create --styled type=bool
FLAG fizzy board create --token type=string
FLAG fizzy board create --verbose type=bool
FLAG fizzy board delete --agent type=bool
FLAG fizzy board delete --api-url type=string
FLAG fizzy board delete --count type=bool
FLAG fizzy board delete --help type=bool
FLAG fizzy board delete --ids-only type=bool
FLAG fizzy board delete --json type=bool
FLAG fizzy board delete --limit type=int
FLAG fizzy board delete --markdown type=bool
FLAG fizzy board delete --profile type=string
FLAG fizzy board delete --quiet type=bool
FLAG fizzy board delete --styled type=bool
FLAG fizzy board delete --token type=string
FLAG fizzy board delete --verbose type=bool
FLAG fizzy board entropy --agent type=bool
FLAG fizzy board entropy --api-url type=string
FLAG fizzy board entropy --auto_postpone_period_in_days type=int
FLAG fizzy board entropy --count type=bool
FLAG fizzy board entropy --help type=bool
FLAG fizzy board entropy --ids-only type=bool
FLAG fizzy board entropy --json type=bool
FLAG fizzy board entropy --limit type=int
FLAG fizzy board entropy --markdown type=bool
FLAG fizzy board entropy --profile type=string
FLAG fizzy board entropy --quiet type=bool
FLAG fizzy board entropy --styled type=bool
FLAG fizzy board entropy --token type=string
FLAG fizzy board entropy --verbose type=bool
FLAG fizzy board help --agent type=bool
FLAG fizzy board help --api-url type=string
FLAG fizzy board help --count type=bool
FLAG fizzy board help --help type=bool
FLAG fizzy board help --ids-only type=bool
FLAG fizzy board help --json type=bool
FLAG fizzy board help --limit type=int
FLAG fizzy board help --markdown type=bool
FLAG fizzy board help --profile type=string
FLAG fizzy board help --quiet type=bool
FLAG fizzy board help --styled type=bool
FLAG fizzy board help --token type=string
FLAG fizzy board help --verbose type=bool
FLAG fizzy board involvement --agent type=bool
FLAG fizzy board involvement --api-url type=string
FLAG fizzy board involvement --count type=bool
FLAG fizzy board involvement --help type=bool
FLAG fizzy board involvement --ids-only type=bool
FLAG fizzy board involvement --involvement type=string
FLAG fizzy board involvement --json type=bool
FLAG fizzy board involvement --limit type=int
FLAG fizzy board involvement --markdown type=bool
FLAG fizzy board involvement --profile type=string
FLAG fizzy board involvement --quiet type=bool
FLAG fizzy board involvement --styled type=bool
FLAG fizzy board involvement --token type=string
FLAG fizzy board involvement --verbose type=bool
FLAG fizzy board list --agent type=bool
FLAG fizzy board list --all type=bool
FLAG fizzy board list --api-url type=string
FLAG fizzy board list --count type=bool
FLAG fizzy board list --help type=bool
FLAG fizzy board list --ids-only type=bool
FLAG fizzy board list --json type=bool
FLAG fizzy board list --limit type=int
FLAG fizzy board list --markdown type=bool
FLAG fizzy board list --page type=int
FLAG fizzy board list --profile type=string
FLAG fizzy board list --quiet type=bool
FLAG fizzy board list --styled type=bool
FLAG fizzy board list --token type=string
FLAG fizzy board list --verbose type=bool
FLAG fizzy board postponed --agent type=bool
FLAG fizzy board postponed --all type=bool
FLAG fizzy board postponed --api-url type=string
FLAG fizzy board postponed --board type=string
FLAG fizzy board postponed --count type=bool
FLAG fizzy board postponed --help type=bool
FLAG fizzy board postponed --ids-only type=bool
FLAG fizzy board postponed --json type=bool
FLAG fizzy board postponed --limit type=int
FLAG fizzy board postponed --markdown type=bool
FLAG fizzy board postponed --page type=int
FLAG fizzy board postponed --profile type=string
FLAG fizzy board postponed --quiet type=bool
FLAG fizzy board postponed --styled type=bool
FLAG fizzy board postponed --token type=string
FLAG fizzy board postponed --verbose type=bool
FLAG fizzy board publish --agent type=bool
FLAG fizzy board publish --api-url type=string
FLAG fizzy board publish --count type=bool
FLAG fizzy board publish --help type=bool
FLAG fizzy board publish --ids-only type=bool
FLAG fizzy board publish --json type=bool
FLAG fizzy board publish --limit type=int
FLAG fizzy board publish --markdown type=bool
FLAG fizzy board publish --profile type=string
FLAG fizzy board publish --quiet type=bool
FLAG fizzy board publish --styled type=bool
FLAG fizzy board publish --token type=string
FLAG fizzy board publish --verbose type=bool
FLAG fizzy board show --agent type=bool
FLAG fizzy board show --api-url type=string
FLAG fizzy board show --count type=bool
FLAG fizzy board show --help type=bool
FLAG fizzy board show --ids-only type=bool
FLAG fizzy board show --json type=bool
FLAG fizzy board show --limit type=int
FLAG fizzy board show --markdown type=bool
FLAG fizzy board show --profile type=string
FLAG fizzy board show --quiet type=bool
FLAG fizzy board show --styled type=bool
FLAG fizzy board show --token type=string
FLAG fizzy board show --verbose type=bool
FLAG fizzy board stream --agent type=bool
FLAG fizzy board stream --all type=bool
FLAG fizzy board stream --api-url type=string
FLAG fizzy board stream --board type=string
FLAG fizzy board stream --count type=bool
FLAG fizzy board stream --help type=bool
FLAG fizzy board stream --ids-only type=bool
FLAG fizzy board stream --json type=bool
FLAG fizzy board stream --limit type=int
FLAG fizzy board stream --markdown type=bool
FLAG fizzy board stream --page type=int
FLAG fizzy board stream --profile type=string
FLAG fizzy board stream --quiet type=bool
FLAG fizzy board stream --styled type=bool
FLAG fizzy board stream --token type=string
FLAG fizzy board stream --verbose type=bool
FLAG fizzy board unpublish --agent type=bool
FLAG fizzy board unpublish --api-url type=string
FLAG fizzy board unpublish --count type=bool
FLAG fizzy board unpublish --help type=bool
FLAG fizzy board unpublish --ids-only type=bool
FLAG fizzy board unpublish --json type=bool
FLAG fizzy board unpublish --limit type=int
FLAG fizzy board unpublish --markdown type=bool
FLAG fizzy board unpublish --profile type=string
FLAG fizzy board unpublish --quiet type=bool
FLAG fizzy board unpublish --styled type=bool
FLAG fizzy board unpublish --token type=string
FLAG fizzy board unpublish --verbose type=bool
FLAG fizzy board update --agent type=bool
FLAG fizzy board update --all_access type=string
FLAG fizzy board update --api-url type=string
FLAG fizzy board update --auto_postpone_period_in_days type=int
FLAG fizzy board update --count type=bool
FLAG fizzy board update --help type=bool
FLAG fizzy board update --ids-only type=bool
FLAG fizzy board update --json type=bool
FLAG fizzy board update --limit type=int
FLAG fizzy board update --markdown type=bool
FLAG fizzy board update --name type=string
FLAG fizzy board update --profile type=string
FLAG fizzy board update --quiet type=bool
FLAG fizzy board update --styled type=bool
FLAG fizzy board update --token type=string
FLAG fizzy board update --verbose type=bool
FLAG fizzy card --agent type=bool
FLAG fizzy card --api-url type=string
FLAG fizzy card --count type=bool
FLAG fizzy card --help type=bool
FLAG fizzy card --ids-only type=bool
FLAG fizzy card --json type=bool
FLAG fizzy card --limit type=int
FLAG fizzy card --markdown type=bool
FLAG fizzy card --profile type=string
FLAG fizzy card --quiet type=bool
FLAG fizzy card --styled type=bool
FLAG fizzy card --token type=string
FLAG fizzy card --verbose type=bool
FLAG fizzy card assign --agent type=bool
FLAG fizzy card assign --api-url type=string
FLAG fizzy card assign --count type=bool
FLAG fizzy card assign --help type=bool
FLAG fizzy card assign --ids-only type=bool
FLAG fizzy card assign --json type=bool
FLAG fizzy card assign --limit type=int
FLAG fizzy card assign --markdown type=bool
FLAG fizzy card assign --profile type=string
FLAG fizzy card assign --quiet type=bool
FLAG fizzy card assign --styled type=bool
FLAG fizzy card assign --token type=string
FLAG fizzy card assign --user type=string
FLAG fizzy card assign --verbose type=bool
FLAG fizzy card attachments --agent type=bool
FLAG fizzy card attachments --api-url type=string
FLAG fizzy card attachments --count type=bool
FLAG fizzy card attachments --help type=bool
FLAG fizzy card attachments --ids-only type=bool
FLAG fizzy card attachments --json type=bool
FLAG fizzy card attachments --limit type=int
FLAG fizzy card attachments --markdown type=bool
FLAG fizzy card attachments --profile type=string
FLAG fizzy card attachments --quiet type=bool
FLAG fizzy card attachments --styled type=bool
FLAG fizzy card attachments --token type=string
FLAG fizzy card attachments --verbose type=bool
FLAG fizzy card attachments download --agent type=bool
FLAG fizzy card attachments download --api-url type=string
FLAG fizzy card attachments download --count type=bool
FLAG fizzy card attachments download --help type=bool
FLAG fizzy card attachments download --ids-only type=bool
FLAG fizzy card attachments download --include-comments type=bool
FLAG fizzy card attachments download --json type=bool
FLAG fizzy card attachments download --limit type=int
FLAG fizzy card attachments download --markdown type=bool
FLAG fizzy card attachments download --output type=string
FLAG fizzy card attachments download --profile type=string
FLAG fizzy card attachments download --quiet type=bool
FLAG fizzy card attachments download --styled type=bool
FLAG fizzy card attachments download --token type=string
FLAG fizzy card attachments download --verbose type=bool
FLAG fizzy card attachments help --agent type=bool
FLAG fizzy card attachments help --api-url type=string
FLAG fizzy card attachments help --count type=bool
FLAG fizzy card attachments help --help type=bool
FLAG fizzy card attachments help --ids-only type=bool
FLAG fizzy card attachments help --json type=bool
FLAG fizzy card attachments help --limit type=int
FLAG fizzy card attachments help --markdown type=bool
FLAG fizzy card attachments help --profile type=string
FLAG fizzy card attachments help --quiet type=bool
FLAG fizzy card attachments help --styled type=bool
FLAG fizzy card attachments help --token type=string
FLAG fizzy card attachments help --verbose type=bool
FLAG fizzy card attachments show --agent type=bool
FLAG fizzy card attachments show --api-url type=string
FLAG fizzy card attachments show --count type=bool
FLAG fizzy card attachments show --help type=bool
FLAG fizzy card attachments show --ids-only type=bool
FLAG fizzy card attachments show --include-comments type=bool
FLAG fizzy card attachments show --json type=bool
FLAG fizzy card attachments show --limit type=int
FLAG fizzy card attachments show --markdown type=bool
FLAG fizzy card attachments show --profile type=string
FLAG fizzy card attachments show --quiet type=bool
FLAG fizzy card attachments show --styled type=bool
FLAG fizzy card attachments show --token type=string
FLAG fizzy card attachments show --verbose type=bool
FLAG fizzy card close --agent type=bool
FLAG fizzy card close --api-url type=string
FLAG fizzy card close --count type=bool
FLAG fizzy card close --help type=bool
FLAG fizzy card close --ids-only type=bool
FLAG fizzy card close --json type=bool
FLAG fizzy card close --limit type=int
FLAG fizzy card close --markdown type=bool
FLAG fizzy card close --profile type=string
FLAG fizzy card close --quiet type=bool
FLAG fizzy card close --styled type=bool
FLAG fizzy card close --token type=string
FLAG fizzy card close --verbose type=bool
FLAG fizzy card column --agent type=bool
FLAG fizzy card column --api-url type=string
FLAG fizzy card column --column type=string
FLAG fizzy card column --count type=bool
FLAG fizzy card column --help type=bool
FLAG fizzy card column --ids-only type=bool
FLAG fizzy card column --json type=bool
FLAG fizzy card column --limit type=int
FLAG fizzy card column --markdown type=bool
FLAG fizzy card column --profile type=string
FLAG fizzy card column --quiet type=bool
FLAG fizzy card column --styled type=bool
FLAG fizzy card column --token type=string
FLAG fizzy card column --verbose type=bool
FLAG fizzy card create --agent type=bool
FLAG fizzy card create --api-url type=string
FLAG fizzy card create --board type=string
FLAG fizzy card create --count type=bool
FLAG fizzy card create --created-at type=string
FLAG fizzy card create --description type=string
FLAG fizzy card create --description_file type=string
FLAG fizzy card create --help type=bool
FLAG fizzy card create --ids-only type=bool
FLAG fizzy card create --image type=string
FLAG fizzy card create --json type=bool
FLAG fizzy card create --limit type=int
FLAG fizzy card create --markdown type=bool
FLAG fizzy card create --profile type=string
FLAG fizzy card create --quiet type=bool
FLAG fizzy card create --styled type=bool
FLAG fizzy card create --title type=string
FLAG fizzy card create --token type=string
FLAG fizzy card create --verbose type=bool
FLAG fizzy card delete --agent type=bool
FLAG fizzy card delete --api-url type=string
FLAG fizzy card delete --count type=bool
FLAG fizzy card delete --help type=bool
FLAG fizzy card delete --ids-only type=bool
FLAG fizzy card delete --json type=bool
FLAG fizzy card delete --limit type=int
FLAG fizzy card delete --markdown type=bool
FLAG fizzy card delete --profile type=string
FLAG fizzy card delete --quiet type=bool
FLAG fizzy card delete --styled type=bool
FLAG fizzy card delete --token type=string
FLAG fizzy card delete --verbose type=bool
FLAG fizzy card golden --agent type=bool
FLAG fizzy card golden --api-url type=string
FLAG fizzy card golden --count type=bool
FLAG fizzy card golden --help type=bool
FLAG fizzy card golden --ids-only type=bool
FLAG fizzy card golden --json type=bool
FLAG fizzy card golden --limit type=int
FLAG fizzy card golden --markdown type=bool
FLAG fizzy card golden --profile type=string
FLAG fizzy card golden --quiet type=bool
FLAG fizzy card golden --styled type=bool
FLAG fizzy card golden --token type=string
FLAG fizzy card golden --verbose type=bool
FLAG fizzy card help --agent type=bool
FLAG fizzy card help --api-url type=string
FLAG fizzy card help --count type=bool
FLAG fizzy card help --help type=bool
FLAG fizzy card help --ids-only type=bool
FLAG fizzy card help --json type=bool
FLAG fizzy card help --limit type=int
FLAG fizzy card help --markdown type=bool
FLAG fizzy card help --profile type=string
FLAG fizzy card help --quiet type=bool
FLAG fizzy card help --styled type=bool
FLAG fizzy card help --token type=string
FLAG fizzy card help --verbose type=bool
FLAG fizzy card image-remove --agent type=bool
FLAG fizzy card image-remove --api-url type=string
FLAG fizzy card image-remove --count type=bool
FLAG fizzy card image-remove --help type=bool
FLAG fizzy card image-remove --ids-only type=bool
FLAG fizzy card image-remove --json type=bool
FLAG fizzy card image-remove --limit type=int
FLAG fizzy card image-remove --markdown type=bool
FLAG fizzy card image-remove --profile type=string
FLAG fizzy card image-remove --quiet type=bool
FLAG fizzy card image-remove --styled type=bool
FLAG fizzy card image-remove --token type=string
FLAG fizzy card image-remove --verbose type=bool
FLAG fizzy card list --agent type=bool
FLAG fizzy card list --all type=bool
FLAG fizzy card list --api-url type=string
FLAG fizzy card list --assignee type=string
FLAG fizzy card list --board type=string
FLAG fizzy card list --closed type=string
FLAG fizzy card list --closer type=string
FLAG fizzy card list --column type=string
FLAG fizzy card list --count type=bool
FLAG fizzy card list --created type=string
FLAG fizzy card list --creator type=string
FLAG fizzy card list --help type=bool
FLAG fizzy card list --ids-only type=bool
FLAG fizzy card list --indexed-by type=string
FLAG fizzy card list --json type=bool
FLAG fizzy card list --limit type=int
FLAG fizzy card list --markdown type=bool
FLAG fizzy card list --page type=int
FLAG fizzy card list --profile type=string
FLAG fizzy card list --quiet type=bool
FLAG fizzy card list --search type=string
FLAG fizzy card list --sort type=string
FLAG fizzy card list --styled type=bool
FLAG fizzy card list --tag type=string
FLAG fizzy card list --token type=string
FLAG fizzy card list --unassigned type=bool
FLAG fizzy card list --verbose type=bool
FLAG fizzy card mark-read --agent type=bool
FLAG fizzy card mark-read --api-url type=string
FLAG fizzy card mark-read --count type=bool
FLAG fizzy card mark-read --help type=bool
FLAG fizzy card mark-read --ids-only type=bool
FLAG fizzy card mark-read --json type=bool
FLAG fizzy card mark-read --limit type=int
FLAG fizzy card mark-read --markdown type=bool
FLAG fizzy card mark-read --profile type=string
FLAG fizzy card mark-read --quiet type=bool
FLAG fizzy card mark-read --styled type=bool
FLAG fizzy card mark-read --token type=string
FLAG fizzy card mark-read --verbose type=bool
FLAG fizzy card mark-unread --agent type=bool
FLAG fizzy card mark-unread --api-url type=string
FLAG fizzy card mark-unread --count type=bool
FLAG fizzy card mark-unread --help type=bool
FLAG fizzy card mark-unread --ids-only type=bool
FLAG fizzy card mark-unread --json type=bool
FLAG fizzy card mark-unread --limit type=int
FLAG fizzy card mark-unread --markdown type=bool
FLAG fizzy card mark-unread --profile type=string
FLAG fizzy card mark-unread --quiet type=bool
FLAG fizzy card mark-unread --styled type=bool
FLAG fizzy card mark-unread --token type=string
FLAG fizzy card mark-unread --verbose type=bool
FLAG fizzy card move --agent type=bool
FLAG fizzy card move --api-url type=string
FLAG fizzy card move --count type=bool
FLAG fizzy card move --help type=bool
FLAG fizzy card move --ids-only type=bool
FLAG fizzy card move --json type=bool
FLAG fizzy card move --limit type=int
FLAG fizzy card move --markdown type=bool
FLAG fizzy card move --profile type=string
FLAG fizzy card move --quiet type=bool
FLAG fizzy card move --styled type=bool
FLAG fizzy card move --to type=string
FLAG fizzy card move --token type=string
FLAG fizzy card move --verbose type=bool
FLAG fizzy card pin --agent type=bool
FLAG fizzy card pin --api-url type=string
FLAG fizzy card pin --count type=bool
FLAG fizzy card pin --help type=bool
FLAG fizzy card pin --ids-only type=bool
FLAG fizzy card pin --json type=bool
FLAG fizzy card pin --limit type=int
FLAG fizzy card pin --markdown type=bool
FLAG fizzy card pin --profile type=string
FLAG fizzy card pin --quiet type=bool
FLAG fizzy card pin --styled type=bool
FLAG fizzy card pin --token type=string
FLAG fizzy card pin --verbose type=bool
FLAG fizzy card postpone --agent type=bool
FLAG fizzy card postpone --api-url type=string
FLAG fizzy card postpone --count type=bool
FLAG fizzy card postpone --help type=bool
FLAG fizzy card postpone --ids-only type=bool
FLAG fizzy card postpone --json type=bool
FLAG fizzy card postpone --limit type=int
FLAG fizzy card postpone --markdown type=bool
FLAG fizzy card postpone --profile type=string
FLAG fizzy card postpone --quiet type=bool
FLAG fizzy card postpone --styled type=bool
FLAG fizzy card postpone --token type=string
FLAG fizzy card postpone --verbose type=bool
FLAG fizzy card publish --agent type=bool
FLAG fizzy card publish --api-url type=string
FLAG fizzy card publish --count type=bool
FLAG fizzy card publish --help type=bool
FLAG fizzy card publish --ids-only type=bool
FLAG fizzy card publish --json type=bool
FLAG fizzy card publish --limit type=int
FLAG fizzy card publish --markdown type=bool
FLAG fizzy card publish --profile type=string
FLAG fizzy card publish --quiet type=bool
FLAG fizzy card publish --styled type=bool
FLAG fizzy card publish --token type=string
FLAG fizzy card publish --verbose type=bool
FLAG fizzy card reopen --agent type=bool
FLAG fizzy card reopen --api-url type=string
FLAG fizzy card reopen --count type=bool
FLAG fizzy card reopen --help type=bool
FLAG fizzy card reopen --ids-only type=bool
FLAG fizzy card reopen --json type=bool
FLAG fizzy card reopen --limit type=int
FLAG fizzy card reopen --markdown type=bool
FLAG fizzy card reopen --profile type=string
FLAG fizzy card reopen --quiet type=bool
FLAG fizzy card reopen --styled type=bool
FLAG fizzy card reopen --token type=string
FLAG fizzy card reopen --verbose type=bool
FLAG fizzy card self-assign --agent type=bool
FLAG fizzy card self-assign --api-url type=string
FLAG fizzy card self-assign --count type=bool
FLAG fizzy card self-assign --help type=bool
FLAG fizzy card self-assign --ids-only type=bool
FLAG fizzy card self-assign --json type=bool
FLAG fizzy card self-assign --limit type=int
FLAG fizzy card self-assign --markdown type=bool
FLAG fizzy card self-assign --profile type=string
FLAG fizzy card self-assign --quiet type=bool
FLAG fizzy card self-assign --styled type=bool
FLAG fizzy card self-assign --token type=string
FLAG fizzy card self-assign --verbose type=bool
FLAG fizzy card show --agent type=bool
FLAG fizzy card show --api-url type=string
FLAG fizzy card show --count type=bool
FLAG fizzy card show --help type=bool
FLAG fizzy card show --ids-only type=bool
FLAG fizzy card show --json type=bool
FLAG fizzy card show --limit type=int
FLAG fizzy card show --markdown type=bool
FLAG fizzy card show --profile type=string
FLAG fizzy card show --quiet type=bool
FLAG fizzy card show --styled type=bool
FLAG fizzy card show --token type=string
FLAG fizzy card show --verbose type=bool
FLAG fizzy card tag --agent type=bool
FLAG fizzy card tag --api-url type=string
FLAG fizzy card tag --count type=bool
FLAG fizzy card tag --help type=bool
FLAG fizzy card tag --ids-only type=bool
FLAG fizzy card tag --json type=bool
FLAG fizzy card tag --limit type=int
FLAG fizzy card tag --markdown type=bool
FLAG fizzy card tag --profile type=string
FLAG fizzy card tag --quiet type=bool
FLAG fizzy card tag --styled type=bool
FLAG fizzy card tag --tag type=string
FLAG fizzy card tag --token type=string
FLAG fizzy card tag --verbose type=bool
FLAG fizzy card ungolden --agent type=bool
FLAG fizzy card ungolden --api-url type=string
FLAG fizzy card ungolden --count type=bool
FLAG fizzy card ungolden --help type=bool
FLAG fizzy card ungolden --ids-only type=bool
FLAG fizzy card ungolden --json type=bool
FLAG fizzy card ungolden --limit type=int
FLAG fizzy card ungolden --markdown type=bool
FLAG fizzy card ungolden --profile type=string
FLAG fizzy card ungolden --quiet type=bool
FLAG fizzy card ungolden --styled type=bool
FLAG fizzy card ungolden --token type=string
FLAG fizzy card ungolden --verbose type=bool
FLAG fizzy card unpin --agent type=bool
FLAG fizzy card unpin --api-url type=string
FLAG fizzy card unpin --count type=bool
FLAG fizzy card unpin --help type=bool
FLAG fizzy card unpin --ids-only type=bool
FLAG fizzy card unpin --json type=bool
FLAG fizzy card unpin --limit type=int
FLAG fizzy card unpin --markdown type=bool
FLAG fizzy card unpin --profile type=string
FLAG fizzy card unpin --quiet type=bool
FLAG fizzy card unpin --styled type=bool
FLAG fizzy card unpin --token type=string
FLAG fizzy card unpin --verbose type=bool
FLAG fizzy card untriage --agent type=bool
FLAG fizzy card untriage --api-url type=string
FLAG fizzy card untriage --count type=bool
FLAG fizzy card untriage --help type=bool
FLAG fizzy card untriage --ids-only type=bool
FLAG fizzy card untriage --json type=bool
FLAG fizzy card untriage --limit type=int
FLAG fizzy card untriage --markdown type=bool
FLAG fizzy card untriage --profile type=string
FLAG fizzy card untriage --quiet type=bool
FLAG fizzy card untriage --styled type=bool
FLAG fizzy card untriage --token type=string
FLAG fizzy card untriage --verbose type=bool
FLAG fizzy card unwatch --agent type=bool
FLAG fizzy card unwatch --api-url type=string
FLAG fizzy card unwatch --count type=bool
FLAG fizzy card unwatch --help type=bool
FLAG fizzy card unwatch --ids-only type=bool
FLAG fizzy card unwatch --json type=bool
FLAG fizzy card unwatch --limit type=int
FLAG fizzy card unwatch --markdown type=bool
FLAG fizzy card unwatch --profile type=string
FLAG fizzy card unwatch --quiet type=bool
FLAG fizzy card unwatch --styled type=bool
FLAG fizzy card unwatch --token type=string
FLAG fizzy card unwatch --verbose type=bool
FLAG fizzy card update --agent type=bool
FLAG fizzy card update --api-url type=string
FLAG fizzy card update --count type=bool
FLAG fizzy card update --created-at type=string
FLAG fizzy card update --description type=string
FLAG fizzy card update --description_file type=string
FLAG fizzy card update --help type=bool
FLAG fizzy card update --ids-only type=bool
FLAG fizzy card update --image type=string
FLAG fizzy card update --json type=bool
FLAG fizzy card update --limit type=int
FLAG fizzy card update --markdown type=bool
FLAG fizzy card update --profile type=string
FLAG fizzy card update --quiet type=bool
FLAG fizzy card update --styled type=bool
FLAG fizzy card update --title type=string
FLAG fizzy card update --token type=string
FLAG fizzy card update --verbose type=bool