faces-cli 1.4.6 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/compile/import.js +55 -20
- package/dist/commands/compile/upload.js +51 -9
- package/oclif.manifest.json +385 -385
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -537,10 +537,23 @@
|
|
|
537
537
|
"usage.js"
|
|
538
538
|
]
|
|
539
539
|
},
|
|
540
|
-
"
|
|
540
|
+
"auth:connect": {
|
|
541
541
|
"aliases": [],
|
|
542
|
-
"args": {
|
|
543
|
-
|
|
542
|
+
"args": {
|
|
543
|
+
"provider": {
|
|
544
|
+
"description": "OAuth provider to connect",
|
|
545
|
+
"name": "provider",
|
|
546
|
+
"options": [
|
|
547
|
+
"openai"
|
|
548
|
+
],
|
|
549
|
+
"required": true
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
553
|
+
"examples": [
|
|
554
|
+
"<%= config.bin %> auth connect openai",
|
|
555
|
+
"<%= config.bin %> auth connect openai --manual"
|
|
556
|
+
],
|
|
544
557
|
"flags": {
|
|
545
558
|
"json": {
|
|
546
559
|
"description": "Format output as json.",
|
|
@@ -573,22 +586,16 @@
|
|
|
573
586
|
"multiple": false,
|
|
574
587
|
"type": "option"
|
|
575
588
|
},
|
|
576
|
-
"
|
|
577
|
-
"description": "
|
|
578
|
-
"name": "
|
|
579
|
-
"allowNo": false,
|
|
580
|
-
"type": "boolean"
|
|
581
|
-
},
|
|
582
|
-
"generate": {
|
|
583
|
-
"description": "Fix + generate missing descriptions via LLM",
|
|
584
|
-
"name": "generate",
|
|
589
|
+
"manual": {
|
|
590
|
+
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
591
|
+
"name": "manual",
|
|
585
592
|
"allowNo": false,
|
|
586
593
|
"type": "boolean"
|
|
587
594
|
}
|
|
588
595
|
},
|
|
589
596
|
"hasDynamicHelp": false,
|
|
590
597
|
"hiddenAliases": [],
|
|
591
|
-
"id": "
|
|
598
|
+
"id": "auth:connect",
|
|
592
599
|
"pluginAlias": "faces-cli",
|
|
593
600
|
"pluginName": "faces-cli",
|
|
594
601
|
"pluginType": "core",
|
|
@@ -598,14 +605,18 @@
|
|
|
598
605
|
"relativePath": [
|
|
599
606
|
"dist",
|
|
600
607
|
"commands",
|
|
601
|
-
"
|
|
602
|
-
"
|
|
608
|
+
"auth",
|
|
609
|
+
"connect.js"
|
|
603
610
|
]
|
|
604
611
|
},
|
|
605
|
-
"
|
|
612
|
+
"auth:connections": {
|
|
606
613
|
"aliases": [],
|
|
607
614
|
"args": {},
|
|
608
|
-
"description": "List
|
|
615
|
+
"description": "List connected OAuth provider accounts",
|
|
616
|
+
"examples": [
|
|
617
|
+
"<%= config.bin %> auth connections",
|
|
618
|
+
"<%= config.bin %> auth connections --json"
|
|
619
|
+
],
|
|
609
620
|
"flags": {
|
|
610
621
|
"json": {
|
|
611
622
|
"description": "Format output as json.",
|
|
@@ -641,7 +652,7 @@
|
|
|
641
652
|
},
|
|
642
653
|
"hasDynamicHelp": false,
|
|
643
654
|
"hiddenAliases": [],
|
|
644
|
-
"id": "
|
|
655
|
+
"id": "auth:connections",
|
|
645
656
|
"pluginAlias": "faces-cli",
|
|
646
657
|
"pluginName": "faces-cli",
|
|
647
658
|
"pluginType": "core",
|
|
@@ -651,20 +662,26 @@
|
|
|
651
662
|
"relativePath": [
|
|
652
663
|
"dist",
|
|
653
664
|
"commands",
|
|
654
|
-
"
|
|
655
|
-
"
|
|
665
|
+
"auth",
|
|
666
|
+
"connections.js"
|
|
656
667
|
]
|
|
657
668
|
},
|
|
658
|
-
"
|
|
669
|
+
"auth:disconnect": {
|
|
659
670
|
"aliases": [],
|
|
660
671
|
"args": {
|
|
661
|
-
"
|
|
662
|
-
"description": "
|
|
663
|
-
"name": "
|
|
672
|
+
"provider": {
|
|
673
|
+
"description": "OAuth provider to disconnect",
|
|
674
|
+
"name": "provider",
|
|
675
|
+
"options": [
|
|
676
|
+
"openai"
|
|
677
|
+
],
|
|
664
678
|
"required": true
|
|
665
679
|
}
|
|
666
680
|
},
|
|
667
|
-
"description": "
|
|
681
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
682
|
+
"examples": [
|
|
683
|
+
"<%= config.bin %> auth disconnect openai"
|
|
684
|
+
],
|
|
668
685
|
"flags": {
|
|
669
686
|
"json": {
|
|
670
687
|
"description": "Format output as json.",
|
|
@@ -696,67 +713,11 @@
|
|
|
696
713
|
"hasDynamicHelp": false,
|
|
697
714
|
"multiple": false,
|
|
698
715
|
"type": "option"
|
|
699
|
-
},
|
|
700
|
-
"message": {
|
|
701
|
-
"char": "m",
|
|
702
|
-
"description": "User message (repeatable)",
|
|
703
|
-
"name": "message",
|
|
704
|
-
"required": false,
|
|
705
|
-
"hasDynamicHelp": false,
|
|
706
|
-
"multiple": true,
|
|
707
|
-
"type": "option"
|
|
708
|
-
},
|
|
709
|
-
"llm": {
|
|
710
|
-
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
711
|
-
"name": "llm",
|
|
712
|
-
"hasDynamicHelp": false,
|
|
713
|
-
"multiple": false,
|
|
714
|
-
"type": "option"
|
|
715
|
-
},
|
|
716
|
-
"system": {
|
|
717
|
-
"description": "System prompt / instructions",
|
|
718
|
-
"name": "system",
|
|
719
|
-
"hasDynamicHelp": false,
|
|
720
|
-
"multiple": false,
|
|
721
|
-
"type": "option"
|
|
722
|
-
},
|
|
723
|
-
"stream": {
|
|
724
|
-
"description": "Stream the response",
|
|
725
|
-
"name": "stream",
|
|
726
|
-
"allowNo": false,
|
|
727
|
-
"type": "boolean"
|
|
728
|
-
},
|
|
729
|
-
"max-tokens": {
|
|
730
|
-
"description": "Max tokens",
|
|
731
|
-
"name": "max-tokens",
|
|
732
|
-
"hasDynamicHelp": false,
|
|
733
|
-
"multiple": false,
|
|
734
|
-
"type": "option"
|
|
735
|
-
},
|
|
736
|
-
"temperature": {
|
|
737
|
-
"description": "Temperature (0.0-2.0)",
|
|
738
|
-
"name": "temperature",
|
|
739
|
-
"hasDynamicHelp": false,
|
|
740
|
-
"multiple": false,
|
|
741
|
-
"type": "option"
|
|
742
|
-
},
|
|
743
|
-
"file": {
|
|
744
|
-
"description": "Read message from file",
|
|
745
|
-
"name": "file",
|
|
746
|
-
"hasDynamicHelp": false,
|
|
747
|
-
"multiple": false,
|
|
748
|
-
"type": "option"
|
|
749
|
-
},
|
|
750
|
-
"responses": {
|
|
751
|
-
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
752
|
-
"name": "responses",
|
|
753
|
-
"allowNo": false,
|
|
754
|
-
"type": "boolean"
|
|
755
716
|
}
|
|
756
717
|
},
|
|
757
718
|
"hasDynamicHelp": false,
|
|
758
719
|
"hiddenAliases": [],
|
|
759
|
-
"id": "
|
|
720
|
+
"id": "auth:disconnect",
|
|
760
721
|
"pluginAlias": "faces-cli",
|
|
761
722
|
"pluginName": "faces-cli",
|
|
762
723
|
"pluginType": "core",
|
|
@@ -766,20 +727,14 @@
|
|
|
766
727
|
"relativePath": [
|
|
767
728
|
"dist",
|
|
768
729
|
"commands",
|
|
769
|
-
"
|
|
770
|
-
"
|
|
730
|
+
"auth",
|
|
731
|
+
"disconnect.js"
|
|
771
732
|
]
|
|
772
733
|
},
|
|
773
|
-
"
|
|
734
|
+
"auth:login": {
|
|
774
735
|
"aliases": [],
|
|
775
|
-
"args": {
|
|
776
|
-
|
|
777
|
-
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
778
|
-
"name": "face_model",
|
|
779
|
-
"required": true
|
|
780
|
-
}
|
|
781
|
-
},
|
|
782
|
-
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
736
|
+
"args": {},
|
|
737
|
+
"description": "Login and save JWT credentials",
|
|
783
738
|
"flags": {
|
|
784
739
|
"json": {
|
|
785
740
|
"description": "Format output as json.",
|
|
@@ -812,32 +767,18 @@
|
|
|
812
767
|
"multiple": false,
|
|
813
768
|
"type": "option"
|
|
814
769
|
},
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
"name": "message",
|
|
770
|
+
"email": {
|
|
771
|
+
"description": "Account email",
|
|
772
|
+
"name": "email",
|
|
819
773
|
"required": true,
|
|
820
774
|
"hasDynamicHelp": false,
|
|
821
|
-
"multiple": true,
|
|
822
|
-
"type": "option"
|
|
823
|
-
},
|
|
824
|
-
"system": {
|
|
825
|
-
"description": "System prompt",
|
|
826
|
-
"name": "system",
|
|
827
|
-
"hasDynamicHelp": false,
|
|
828
775
|
"multiple": false,
|
|
829
776
|
"type": "option"
|
|
830
777
|
},
|
|
831
|
-
"
|
|
832
|
-
"description": "
|
|
833
|
-
"name": "
|
|
834
|
-
"
|
|
835
|
-
"type": "boolean"
|
|
836
|
-
},
|
|
837
|
-
"max-tokens": {
|
|
838
|
-
"description": "Max tokens",
|
|
839
|
-
"name": "max-tokens",
|
|
840
|
-
"default": 1024,
|
|
778
|
+
"password": {
|
|
779
|
+
"description": "Account password",
|
|
780
|
+
"name": "password",
|
|
781
|
+
"required": true,
|
|
841
782
|
"hasDynamicHelp": false,
|
|
842
783
|
"multiple": false,
|
|
843
784
|
"type": "option"
|
|
@@ -845,7 +786,7 @@
|
|
|
845
786
|
},
|
|
846
787
|
"hasDynamicHelp": false,
|
|
847
788
|
"hiddenAliases": [],
|
|
848
|
-
"id": "
|
|
789
|
+
"id": "auth:login",
|
|
849
790
|
"pluginAlias": "faces-cli",
|
|
850
791
|
"pluginName": "faces-cli",
|
|
851
792
|
"pluginType": "core",
|
|
@@ -855,20 +796,14 @@
|
|
|
855
796
|
"relativePath": [
|
|
856
797
|
"dist",
|
|
857
798
|
"commands",
|
|
858
|
-
"
|
|
859
|
-
"
|
|
799
|
+
"auth",
|
|
800
|
+
"login.js"
|
|
860
801
|
]
|
|
861
802
|
},
|
|
862
|
-
"
|
|
803
|
+
"auth:logout": {
|
|
863
804
|
"aliases": [],
|
|
864
|
-
"args": {
|
|
865
|
-
|
|
866
|
-
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
867
|
-
"name": "face_model",
|
|
868
|
-
"required": true
|
|
869
|
-
}
|
|
870
|
-
},
|
|
871
|
-
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
805
|
+
"args": {},
|
|
806
|
+
"description": "Clear saved credentials",
|
|
872
807
|
"flags": {
|
|
873
808
|
"json": {
|
|
874
809
|
"description": "Format output as json.",
|
|
@@ -900,33 +835,11 @@
|
|
|
900
835
|
"hasDynamicHelp": false,
|
|
901
836
|
"multiple": false,
|
|
902
837
|
"type": "option"
|
|
903
|
-
},
|
|
904
|
-
"message": {
|
|
905
|
-
"char": "m",
|
|
906
|
-
"description": "User input message",
|
|
907
|
-
"name": "message",
|
|
908
|
-
"required": true,
|
|
909
|
-
"hasDynamicHelp": false,
|
|
910
|
-
"multiple": false,
|
|
911
|
-
"type": "option"
|
|
912
|
-
},
|
|
913
|
-
"instructions": {
|
|
914
|
-
"description": "System instructions",
|
|
915
|
-
"name": "instructions",
|
|
916
|
-
"hasDynamicHelp": false,
|
|
917
|
-
"multiple": false,
|
|
918
|
-
"type": "option"
|
|
919
|
-
},
|
|
920
|
-
"stream": {
|
|
921
|
-
"description": "Stream the response",
|
|
922
|
-
"name": "stream",
|
|
923
|
-
"allowNo": false,
|
|
924
|
-
"type": "boolean"
|
|
925
838
|
}
|
|
926
839
|
},
|
|
927
840
|
"hasDynamicHelp": false,
|
|
928
841
|
"hiddenAliases": [],
|
|
929
|
-
"id": "
|
|
842
|
+
"id": "auth:logout",
|
|
930
843
|
"pluginAlias": "faces-cli",
|
|
931
844
|
"pluginName": "faces-cli",
|
|
932
845
|
"pluginType": "core",
|
|
@@ -936,20 +849,14 @@
|
|
|
936
849
|
"relativePath": [
|
|
937
850
|
"dist",
|
|
938
851
|
"commands",
|
|
939
|
-
"
|
|
940
|
-
"
|
|
852
|
+
"auth",
|
|
853
|
+
"logout.js"
|
|
941
854
|
]
|
|
942
855
|
},
|
|
943
|
-
"
|
|
856
|
+
"auth:refresh": {
|
|
944
857
|
"aliases": [],
|
|
945
|
-
"args": {
|
|
946
|
-
|
|
947
|
-
"description": "Face alias",
|
|
948
|
-
"name": "face_id",
|
|
949
|
-
"required": true
|
|
950
|
-
}
|
|
951
|
-
},
|
|
952
|
-
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
858
|
+
"args": {},
|
|
859
|
+
"description": "Exchange current JWT for a fresh one",
|
|
953
860
|
"flags": {
|
|
954
861
|
"json": {
|
|
955
862
|
"description": "Format output as json.",
|
|
@@ -981,50 +888,11 @@
|
|
|
981
888
|
"hasDynamicHelp": false,
|
|
982
889
|
"multiple": false,
|
|
983
890
|
"type": "option"
|
|
984
|
-
},
|
|
985
|
-
"url": {
|
|
986
|
-
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
987
|
-
"name": "url",
|
|
988
|
-
"required": true,
|
|
989
|
-
"hasDynamicHelp": false,
|
|
990
|
-
"multiple": false,
|
|
991
|
-
"type": "option"
|
|
992
|
-
},
|
|
993
|
-
"type": {
|
|
994
|
-
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
995
|
-
"name": "type",
|
|
996
|
-
"default": "document",
|
|
997
|
-
"hasDynamicHelp": false,
|
|
998
|
-
"multiple": false,
|
|
999
|
-
"options": [
|
|
1000
|
-
"document",
|
|
1001
|
-
"thread"
|
|
1002
|
-
],
|
|
1003
|
-
"type": "option"
|
|
1004
|
-
},
|
|
1005
|
-
"perspective": {
|
|
1006
|
-
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1007
|
-
"name": "perspective",
|
|
1008
|
-
"default": "third-person",
|
|
1009
|
-
"hasDynamicHelp": false,
|
|
1010
|
-
"multiple": false,
|
|
1011
|
-
"options": [
|
|
1012
|
-
"first-person",
|
|
1013
|
-
"third-person"
|
|
1014
|
-
],
|
|
1015
|
-
"type": "option"
|
|
1016
|
-
},
|
|
1017
|
-
"face-speaker": {
|
|
1018
|
-
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1019
|
-
"name": "face-speaker",
|
|
1020
|
-
"hasDynamicHelp": false,
|
|
1021
|
-
"multiple": false,
|
|
1022
|
-
"type": "option"
|
|
1023
891
|
}
|
|
1024
892
|
},
|
|
1025
893
|
"hasDynamicHelp": false,
|
|
1026
894
|
"hiddenAliases": [],
|
|
1027
|
-
"id": "
|
|
895
|
+
"id": "auth:refresh",
|
|
1028
896
|
"pluginAlias": "faces-cli",
|
|
1029
897
|
"pluginName": "faces-cli",
|
|
1030
898
|
"pluginType": "core",
|
|
@@ -1034,20 +902,14 @@
|
|
|
1034
902
|
"relativePath": [
|
|
1035
903
|
"dist",
|
|
1036
904
|
"commands",
|
|
1037
|
-
"
|
|
1038
|
-
"
|
|
905
|
+
"auth",
|
|
906
|
+
"refresh.js"
|
|
1039
907
|
]
|
|
1040
908
|
},
|
|
1041
|
-
"
|
|
909
|
+
"auth:register": {
|
|
1042
910
|
"aliases": [],
|
|
1043
|
-
"args": {
|
|
1044
|
-
|
|
1045
|
-
"description": "Face alias",
|
|
1046
|
-
"name": "alias",
|
|
1047
|
-
"required": true
|
|
1048
|
-
}
|
|
1049
|
-
},
|
|
1050
|
-
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
911
|
+
"args": {},
|
|
912
|
+
"description": "Create a new Faces account",
|
|
1051
913
|
"flags": {
|
|
1052
914
|
"json": {
|
|
1053
915
|
"description": "Format output as json.",
|
|
@@ -1080,41 +942,40 @@
|
|
|
1080
942
|
"multiple": false,
|
|
1081
943
|
"type": "option"
|
|
1082
944
|
},
|
|
1083
|
-
"
|
|
1084
|
-
"description": "
|
|
1085
|
-
"name": "
|
|
945
|
+
"email": {
|
|
946
|
+
"description": "Email address",
|
|
947
|
+
"name": "email",
|
|
1086
948
|
"required": true,
|
|
1087
949
|
"hasDynamicHelp": false,
|
|
1088
950
|
"multiple": false,
|
|
1089
951
|
"type": "option"
|
|
1090
952
|
},
|
|
1091
|
-
"
|
|
1092
|
-
"description": "
|
|
1093
|
-
"name": "
|
|
1094
|
-
"
|
|
953
|
+
"password": {
|
|
954
|
+
"description": "Password",
|
|
955
|
+
"name": "password",
|
|
956
|
+
"required": true,
|
|
1095
957
|
"hasDynamicHelp": false,
|
|
1096
958
|
"multiple": false,
|
|
1097
|
-
"options": [
|
|
1098
|
-
"document",
|
|
1099
|
-
"thread"
|
|
1100
|
-
],
|
|
1101
959
|
"type": "option"
|
|
1102
960
|
},
|
|
1103
|
-
"
|
|
1104
|
-
"description": "
|
|
1105
|
-
"name": "
|
|
1106
|
-
"default": "third-person",
|
|
961
|
+
"name": {
|
|
962
|
+
"description": "Display name (defaults to username)",
|
|
963
|
+
"name": "name",
|
|
1107
964
|
"hasDynamicHelp": false,
|
|
1108
965
|
"multiple": false,
|
|
1109
|
-
"options": [
|
|
1110
|
-
"first-person",
|
|
1111
|
-
"third-person"
|
|
1112
|
-
],
|
|
1113
966
|
"type": "option"
|
|
1114
967
|
},
|
|
1115
|
-
"
|
|
1116
|
-
"description": "
|
|
1117
|
-
"name": "
|
|
968
|
+
"username": {
|
|
969
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
970
|
+
"name": "username",
|
|
971
|
+
"required": true,
|
|
972
|
+
"hasDynamicHelp": false,
|
|
973
|
+
"multiple": false,
|
|
974
|
+
"type": "option"
|
|
975
|
+
},
|
|
976
|
+
"invite-key": {
|
|
977
|
+
"description": "Invite key (if required)",
|
|
978
|
+
"name": "invite-key",
|
|
1118
979
|
"hasDynamicHelp": false,
|
|
1119
980
|
"multiple": false,
|
|
1120
981
|
"type": "option"
|
|
@@ -1122,7 +983,7 @@
|
|
|
1122
983
|
},
|
|
1123
984
|
"hasDynamicHelp": false,
|
|
1124
985
|
"hiddenAliases": [],
|
|
1125
|
-
"id": "
|
|
986
|
+
"id": "auth:register",
|
|
1126
987
|
"pluginAlias": "faces-cli",
|
|
1127
988
|
"pluginName": "faces-cli",
|
|
1128
989
|
"pluginType": "core",
|
|
@@ -1132,14 +993,14 @@
|
|
|
1132
993
|
"relativePath": [
|
|
1133
994
|
"dist",
|
|
1134
995
|
"commands",
|
|
1135
|
-
"
|
|
1136
|
-
"
|
|
996
|
+
"auth",
|
|
997
|
+
"register.js"
|
|
1137
998
|
]
|
|
1138
999
|
},
|
|
1139
|
-
"
|
|
1000
|
+
"auth:whoami": {
|
|
1140
1001
|
"aliases": [],
|
|
1141
1002
|
"args": {},
|
|
1142
|
-
"description": "
|
|
1003
|
+
"description": "Print current user profile",
|
|
1143
1004
|
"flags": {
|
|
1144
1005
|
"json": {
|
|
1145
1006
|
"description": "Format output as json.",
|
|
@@ -1171,17 +1032,11 @@
|
|
|
1171
1032
|
"hasDynamicHelp": false,
|
|
1172
1033
|
"multiple": false,
|
|
1173
1034
|
"type": "option"
|
|
1174
|
-
},
|
|
1175
|
-
"yes": {
|
|
1176
|
-
"description": "Skip confirmation",
|
|
1177
|
-
"name": "yes",
|
|
1178
|
-
"allowNo": false,
|
|
1179
|
-
"type": "boolean"
|
|
1180
1035
|
}
|
|
1181
1036
|
},
|
|
1182
1037
|
"hasDynamicHelp": false,
|
|
1183
1038
|
"hiddenAliases": [],
|
|
1184
|
-
"id": "
|
|
1039
|
+
"id": "auth:whoami",
|
|
1185
1040
|
"pluginAlias": "faces-cli",
|
|
1186
1041
|
"pluginName": "faces-cli",
|
|
1187
1042
|
"pluginType": "core",
|
|
@@ -1191,25 +1046,14 @@
|
|
|
1191
1046
|
"relativePath": [
|
|
1192
1047
|
"dist",
|
|
1193
1048
|
"commands",
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1049
|
+
"auth",
|
|
1050
|
+
"whoami.js"
|
|
1196
1051
|
]
|
|
1197
1052
|
},
|
|
1198
|
-
"
|
|
1053
|
+
"catalog:doctor": {
|
|
1199
1054
|
"aliases": [],
|
|
1200
|
-
"args": {
|
|
1201
|
-
|
|
1202
|
-
"description": "Config key",
|
|
1203
|
-
"name": "key",
|
|
1204
|
-
"required": true
|
|
1205
|
-
},
|
|
1206
|
-
"value": {
|
|
1207
|
-
"description": "Config value",
|
|
1208
|
-
"name": "value",
|
|
1209
|
-
"required": true
|
|
1210
|
-
}
|
|
1211
|
-
},
|
|
1212
|
-
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
1055
|
+
"args": {},
|
|
1056
|
+
"description": "Diagnose and repair the local face catalog",
|
|
1213
1057
|
"flags": {
|
|
1214
1058
|
"json": {
|
|
1215
1059
|
"description": "Format output as json.",
|
|
@@ -1241,11 +1085,23 @@
|
|
|
1241
1085
|
"hasDynamicHelp": false,
|
|
1242
1086
|
"multiple": false,
|
|
1243
1087
|
"type": "option"
|
|
1088
|
+
},
|
|
1089
|
+
"fix": {
|
|
1090
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
1091
|
+
"name": "fix",
|
|
1092
|
+
"allowNo": false,
|
|
1093
|
+
"type": "boolean"
|
|
1094
|
+
},
|
|
1095
|
+
"generate": {
|
|
1096
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
1097
|
+
"name": "generate",
|
|
1098
|
+
"allowNo": false,
|
|
1099
|
+
"type": "boolean"
|
|
1244
1100
|
}
|
|
1245
1101
|
},
|
|
1246
1102
|
"hasDynamicHelp": false,
|
|
1247
1103
|
"hiddenAliases": [],
|
|
1248
|
-
"id": "
|
|
1104
|
+
"id": "catalog:doctor",
|
|
1249
1105
|
"pluginAlias": "faces-cli",
|
|
1250
1106
|
"pluginName": "faces-cli",
|
|
1251
1107
|
"pluginType": "core",
|
|
@@ -1255,14 +1111,14 @@
|
|
|
1255
1111
|
"relativePath": [
|
|
1256
1112
|
"dist",
|
|
1257
1113
|
"commands",
|
|
1258
|
-
"
|
|
1259
|
-
"
|
|
1114
|
+
"catalog",
|
|
1115
|
+
"doctor.js"
|
|
1260
1116
|
]
|
|
1261
1117
|
},
|
|
1262
|
-
"
|
|
1118
|
+
"catalog:list": {
|
|
1263
1119
|
"aliases": [],
|
|
1264
1120
|
"args": {},
|
|
1265
|
-
"description": "
|
|
1121
|
+
"description": "List all faces in the local catalog",
|
|
1266
1122
|
"flags": {
|
|
1267
1123
|
"json": {
|
|
1268
1124
|
"description": "Format output as json.",
|
|
@@ -1298,7 +1154,7 @@
|
|
|
1298
1154
|
},
|
|
1299
1155
|
"hasDynamicHelp": false,
|
|
1300
1156
|
"hiddenAliases": [],
|
|
1301
|
-
"id": "
|
|
1157
|
+
"id": "catalog:list",
|
|
1302
1158
|
"pluginAlias": "faces-cli",
|
|
1303
1159
|
"pluginName": "faces-cli",
|
|
1304
1160
|
"pluginType": "core",
|
|
@@ -1308,27 +1164,20 @@
|
|
|
1308
1164
|
"relativePath": [
|
|
1309
1165
|
"dist",
|
|
1310
1166
|
"commands",
|
|
1311
|
-
"
|
|
1312
|
-
"
|
|
1167
|
+
"catalog",
|
|
1168
|
+
"list.js"
|
|
1313
1169
|
]
|
|
1314
1170
|
},
|
|
1315
|
-
"
|
|
1171
|
+
"chat:chat": {
|
|
1316
1172
|
"aliases": [],
|
|
1317
1173
|
"args": {
|
|
1318
|
-
"
|
|
1319
|
-
"description": "
|
|
1320
|
-
"name": "
|
|
1321
|
-
"options": [
|
|
1322
|
-
"openai"
|
|
1323
|
-
],
|
|
1174
|
+
"face_username": {
|
|
1175
|
+
"description": "Face alias (or alias@model)",
|
|
1176
|
+
"name": "face_username",
|
|
1324
1177
|
"required": true
|
|
1325
1178
|
}
|
|
1326
1179
|
},
|
|
1327
|
-
"description": "
|
|
1328
|
-
"examples": [
|
|
1329
|
-
"<%= config.bin %> auth connect openai",
|
|
1330
|
-
"<%= config.bin %> auth connect openai --manual"
|
|
1331
|
-
],
|
|
1180
|
+
"description": "Chat via a face. Auto-routes to the correct API endpoint based on model provider.",
|
|
1332
1181
|
"flags": {
|
|
1333
1182
|
"json": {
|
|
1334
1183
|
"description": "Format output as json.",
|
|
@@ -1361,16 +1210,66 @@
|
|
|
1361
1210
|
"multiple": false,
|
|
1362
1211
|
"type": "option"
|
|
1363
1212
|
},
|
|
1364
|
-
"
|
|
1365
|
-
"
|
|
1366
|
-
"
|
|
1213
|
+
"message": {
|
|
1214
|
+
"char": "m",
|
|
1215
|
+
"description": "User message (repeatable)",
|
|
1216
|
+
"name": "message",
|
|
1217
|
+
"required": false,
|
|
1218
|
+
"hasDynamicHelp": false,
|
|
1219
|
+
"multiple": true,
|
|
1220
|
+
"type": "option"
|
|
1221
|
+
},
|
|
1222
|
+
"llm": {
|
|
1223
|
+
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1224
|
+
"name": "llm",
|
|
1225
|
+
"hasDynamicHelp": false,
|
|
1226
|
+
"multiple": false,
|
|
1227
|
+
"type": "option"
|
|
1228
|
+
},
|
|
1229
|
+
"system": {
|
|
1230
|
+
"description": "System prompt / instructions",
|
|
1231
|
+
"name": "system",
|
|
1232
|
+
"hasDynamicHelp": false,
|
|
1233
|
+
"multiple": false,
|
|
1234
|
+
"type": "option"
|
|
1235
|
+
},
|
|
1236
|
+
"stream": {
|
|
1237
|
+
"description": "Stream the response",
|
|
1238
|
+
"name": "stream",
|
|
1239
|
+
"allowNo": false,
|
|
1240
|
+
"type": "boolean"
|
|
1241
|
+
},
|
|
1242
|
+
"max-tokens": {
|
|
1243
|
+
"description": "Max tokens",
|
|
1244
|
+
"name": "max-tokens",
|
|
1245
|
+
"hasDynamicHelp": false,
|
|
1246
|
+
"multiple": false,
|
|
1247
|
+
"type": "option"
|
|
1248
|
+
},
|
|
1249
|
+
"temperature": {
|
|
1250
|
+
"description": "Temperature (0.0-2.0)",
|
|
1251
|
+
"name": "temperature",
|
|
1252
|
+
"hasDynamicHelp": false,
|
|
1253
|
+
"multiple": false,
|
|
1254
|
+
"type": "option"
|
|
1255
|
+
},
|
|
1256
|
+
"file": {
|
|
1257
|
+
"description": "Read message from file",
|
|
1258
|
+
"name": "file",
|
|
1259
|
+
"hasDynamicHelp": false,
|
|
1260
|
+
"multiple": false,
|
|
1261
|
+
"type": "option"
|
|
1262
|
+
},
|
|
1263
|
+
"responses": {
|
|
1264
|
+
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
1265
|
+
"name": "responses",
|
|
1367
1266
|
"allowNo": false,
|
|
1368
1267
|
"type": "boolean"
|
|
1369
1268
|
}
|
|
1370
1269
|
},
|
|
1371
1270
|
"hasDynamicHelp": false,
|
|
1372
1271
|
"hiddenAliases": [],
|
|
1373
|
-
"id": "
|
|
1272
|
+
"id": "chat:chat",
|
|
1374
1273
|
"pluginAlias": "faces-cli",
|
|
1375
1274
|
"pluginName": "faces-cli",
|
|
1376
1275
|
"pluginType": "core",
|
|
@@ -1380,18 +1279,20 @@
|
|
|
1380
1279
|
"relativePath": [
|
|
1381
1280
|
"dist",
|
|
1382
1281
|
"commands",
|
|
1383
|
-
"
|
|
1384
|
-
"
|
|
1282
|
+
"chat",
|
|
1283
|
+
"chat.js"
|
|
1385
1284
|
]
|
|
1386
1285
|
},
|
|
1387
|
-
"
|
|
1286
|
+
"chat:messages": {
|
|
1388
1287
|
"aliases": [],
|
|
1389
|
-
"args": {
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1288
|
+
"args": {
|
|
1289
|
+
"face_model": {
|
|
1290
|
+
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
1291
|
+
"name": "face_model",
|
|
1292
|
+
"required": true
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
1395
1296
|
"flags": {
|
|
1396
1297
|
"json": {
|
|
1397
1298
|
"description": "Format output as json.",
|
|
@@ -1423,11 +1324,41 @@
|
|
|
1423
1324
|
"hasDynamicHelp": false,
|
|
1424
1325
|
"multiple": false,
|
|
1425
1326
|
"type": "option"
|
|
1327
|
+
},
|
|
1328
|
+
"message": {
|
|
1329
|
+
"char": "m",
|
|
1330
|
+
"description": "User message (repeatable)",
|
|
1331
|
+
"name": "message",
|
|
1332
|
+
"required": true,
|
|
1333
|
+
"hasDynamicHelp": false,
|
|
1334
|
+
"multiple": true,
|
|
1335
|
+
"type": "option"
|
|
1336
|
+
},
|
|
1337
|
+
"system": {
|
|
1338
|
+
"description": "System prompt",
|
|
1339
|
+
"name": "system",
|
|
1340
|
+
"hasDynamicHelp": false,
|
|
1341
|
+
"multiple": false,
|
|
1342
|
+
"type": "option"
|
|
1343
|
+
},
|
|
1344
|
+
"stream": {
|
|
1345
|
+
"description": "Stream the response",
|
|
1346
|
+
"name": "stream",
|
|
1347
|
+
"allowNo": false,
|
|
1348
|
+
"type": "boolean"
|
|
1349
|
+
},
|
|
1350
|
+
"max-tokens": {
|
|
1351
|
+
"description": "Max tokens",
|
|
1352
|
+
"name": "max-tokens",
|
|
1353
|
+
"default": 1024,
|
|
1354
|
+
"hasDynamicHelp": false,
|
|
1355
|
+
"multiple": false,
|
|
1356
|
+
"type": "option"
|
|
1426
1357
|
}
|
|
1427
1358
|
},
|
|
1428
1359
|
"hasDynamicHelp": false,
|
|
1429
1360
|
"hiddenAliases": [],
|
|
1430
|
-
"id": "
|
|
1361
|
+
"id": "chat:messages",
|
|
1431
1362
|
"pluginAlias": "faces-cli",
|
|
1432
1363
|
"pluginName": "faces-cli",
|
|
1433
1364
|
"pluginType": "core",
|
|
@@ -1437,26 +1368,20 @@
|
|
|
1437
1368
|
"relativePath": [
|
|
1438
1369
|
"dist",
|
|
1439
1370
|
"commands",
|
|
1440
|
-
"
|
|
1441
|
-
"
|
|
1371
|
+
"chat",
|
|
1372
|
+
"messages.js"
|
|
1442
1373
|
]
|
|
1443
1374
|
},
|
|
1444
|
-
"
|
|
1375
|
+
"chat:responses": {
|
|
1445
1376
|
"aliases": [],
|
|
1446
1377
|
"args": {
|
|
1447
|
-
"
|
|
1448
|
-
"description": "
|
|
1449
|
-
"name": "
|
|
1450
|
-
"options": [
|
|
1451
|
-
"openai"
|
|
1452
|
-
],
|
|
1378
|
+
"face_model": {
|
|
1379
|
+
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
1380
|
+
"name": "face_model",
|
|
1453
1381
|
"required": true
|
|
1454
1382
|
}
|
|
1455
1383
|
},
|
|
1456
|
-
"description": "
|
|
1457
|
-
"examples": [
|
|
1458
|
-
"<%= config.bin %> auth disconnect openai"
|
|
1459
|
-
],
|
|
1384
|
+
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
1460
1385
|
"flags": {
|
|
1461
1386
|
"json": {
|
|
1462
1387
|
"description": "Format output as json.",
|
|
@@ -1488,11 +1413,33 @@
|
|
|
1488
1413
|
"hasDynamicHelp": false,
|
|
1489
1414
|
"multiple": false,
|
|
1490
1415
|
"type": "option"
|
|
1416
|
+
},
|
|
1417
|
+
"message": {
|
|
1418
|
+
"char": "m",
|
|
1419
|
+
"description": "User input message",
|
|
1420
|
+
"name": "message",
|
|
1421
|
+
"required": true,
|
|
1422
|
+
"hasDynamicHelp": false,
|
|
1423
|
+
"multiple": false,
|
|
1424
|
+
"type": "option"
|
|
1425
|
+
},
|
|
1426
|
+
"instructions": {
|
|
1427
|
+
"description": "System instructions",
|
|
1428
|
+
"name": "instructions",
|
|
1429
|
+
"hasDynamicHelp": false,
|
|
1430
|
+
"multiple": false,
|
|
1431
|
+
"type": "option"
|
|
1432
|
+
},
|
|
1433
|
+
"stream": {
|
|
1434
|
+
"description": "Stream the response",
|
|
1435
|
+
"name": "stream",
|
|
1436
|
+
"allowNo": false,
|
|
1437
|
+
"type": "boolean"
|
|
1491
1438
|
}
|
|
1492
1439
|
},
|
|
1493
1440
|
"hasDynamicHelp": false,
|
|
1494
1441
|
"hiddenAliases": [],
|
|
1495
|
-
"id": "
|
|
1442
|
+
"id": "chat:responses",
|
|
1496
1443
|
"pluginAlias": "faces-cli",
|
|
1497
1444
|
"pluginName": "faces-cli",
|
|
1498
1445
|
"pluginType": "core",
|
|
@@ -1502,14 +1449,20 @@
|
|
|
1502
1449
|
"relativePath": [
|
|
1503
1450
|
"dist",
|
|
1504
1451
|
"commands",
|
|
1505
|
-
"
|
|
1506
|
-
"
|
|
1452
|
+
"chat",
|
|
1453
|
+
"responses.js"
|
|
1507
1454
|
]
|
|
1508
1455
|
},
|
|
1509
|
-
"
|
|
1456
|
+
"compile:import": {
|
|
1510
1457
|
"aliases": [],
|
|
1511
|
-
"args": {
|
|
1512
|
-
|
|
1458
|
+
"args": {
|
|
1459
|
+
"face_id": {
|
|
1460
|
+
"description": "Face alias",
|
|
1461
|
+
"name": "face_id",
|
|
1462
|
+
"required": true
|
|
1463
|
+
}
|
|
1464
|
+
},
|
|
1465
|
+
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
1513
1466
|
"flags": {
|
|
1514
1467
|
"json": {
|
|
1515
1468
|
"description": "Format output as json.",
|
|
@@ -1542,18 +1495,41 @@
|
|
|
1542
1495
|
"multiple": false,
|
|
1543
1496
|
"type": "option"
|
|
1544
1497
|
},
|
|
1545
|
-
"
|
|
1546
|
-
"description": "
|
|
1547
|
-
"name": "
|
|
1498
|
+
"url": {
|
|
1499
|
+
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
1500
|
+
"name": "url",
|
|
1548
1501
|
"required": true,
|
|
1549
1502
|
"hasDynamicHelp": false,
|
|
1550
1503
|
"multiple": false,
|
|
1551
1504
|
"type": "option"
|
|
1552
1505
|
},
|
|
1553
|
-
"
|
|
1554
|
-
"description": "
|
|
1555
|
-
"name": "
|
|
1556
|
-
"
|
|
1506
|
+
"type": {
|
|
1507
|
+
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
1508
|
+
"name": "type",
|
|
1509
|
+
"default": "document",
|
|
1510
|
+
"hasDynamicHelp": false,
|
|
1511
|
+
"multiple": false,
|
|
1512
|
+
"options": [
|
|
1513
|
+
"document",
|
|
1514
|
+
"thread"
|
|
1515
|
+
],
|
|
1516
|
+
"type": "option"
|
|
1517
|
+
},
|
|
1518
|
+
"perspective": {
|
|
1519
|
+
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1520
|
+
"name": "perspective",
|
|
1521
|
+
"default": "third-person",
|
|
1522
|
+
"hasDynamicHelp": false,
|
|
1523
|
+
"multiple": false,
|
|
1524
|
+
"options": [
|
|
1525
|
+
"first-person",
|
|
1526
|
+
"third-person"
|
|
1527
|
+
],
|
|
1528
|
+
"type": "option"
|
|
1529
|
+
},
|
|
1530
|
+
"face-speaker": {
|
|
1531
|
+
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1532
|
+
"name": "face-speaker",
|
|
1557
1533
|
"hasDynamicHelp": false,
|
|
1558
1534
|
"multiple": false,
|
|
1559
1535
|
"type": "option"
|
|
@@ -1561,7 +1537,7 @@
|
|
|
1561
1537
|
},
|
|
1562
1538
|
"hasDynamicHelp": false,
|
|
1563
1539
|
"hiddenAliases": [],
|
|
1564
|
-
"id": "
|
|
1540
|
+
"id": "compile:import",
|
|
1565
1541
|
"pluginAlias": "faces-cli",
|
|
1566
1542
|
"pluginName": "faces-cli",
|
|
1567
1543
|
"pluginType": "core",
|
|
@@ -1571,14 +1547,20 @@
|
|
|
1571
1547
|
"relativePath": [
|
|
1572
1548
|
"dist",
|
|
1573
1549
|
"commands",
|
|
1574
|
-
"
|
|
1575
|
-
"
|
|
1550
|
+
"compile",
|
|
1551
|
+
"import.js"
|
|
1576
1552
|
]
|
|
1577
1553
|
},
|
|
1578
|
-
"
|
|
1554
|
+
"compile:upload": {
|
|
1579
1555
|
"aliases": [],
|
|
1580
|
-
"args": {
|
|
1581
|
-
|
|
1556
|
+
"args": {
|
|
1557
|
+
"alias": {
|
|
1558
|
+
"description": "Face alias",
|
|
1559
|
+
"name": "alias",
|
|
1560
|
+
"required": true
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
1582
1564
|
"flags": {
|
|
1583
1565
|
"json": {
|
|
1584
1566
|
"description": "Format output as json.",
|
|
@@ -1610,11 +1592,50 @@
|
|
|
1610
1592
|
"hasDynamicHelp": false,
|
|
1611
1593
|
"multiple": false,
|
|
1612
1594
|
"type": "option"
|
|
1595
|
+
},
|
|
1596
|
+
"file": {
|
|
1597
|
+
"description": "File to upload",
|
|
1598
|
+
"name": "file",
|
|
1599
|
+
"required": true,
|
|
1600
|
+
"hasDynamicHelp": false,
|
|
1601
|
+
"multiple": false,
|
|
1602
|
+
"type": "option"
|
|
1603
|
+
},
|
|
1604
|
+
"kind": {
|
|
1605
|
+
"description": "Upload kind: document or thread",
|
|
1606
|
+
"name": "kind",
|
|
1607
|
+
"default": "document",
|
|
1608
|
+
"hasDynamicHelp": false,
|
|
1609
|
+
"multiple": false,
|
|
1610
|
+
"options": [
|
|
1611
|
+
"document",
|
|
1612
|
+
"thread"
|
|
1613
|
+
],
|
|
1614
|
+
"type": "option"
|
|
1615
|
+
},
|
|
1616
|
+
"perspective": {
|
|
1617
|
+
"description": "Perspective (document only)",
|
|
1618
|
+
"name": "perspective",
|
|
1619
|
+
"default": "third-person",
|
|
1620
|
+
"hasDynamicHelp": false,
|
|
1621
|
+
"multiple": false,
|
|
1622
|
+
"options": [
|
|
1623
|
+
"first-person",
|
|
1624
|
+
"third-person"
|
|
1625
|
+
],
|
|
1626
|
+
"type": "option"
|
|
1627
|
+
},
|
|
1628
|
+
"face-speaker": {
|
|
1629
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1630
|
+
"name": "face-speaker",
|
|
1631
|
+
"hasDynamicHelp": false,
|
|
1632
|
+
"multiple": false,
|
|
1633
|
+
"type": "option"
|
|
1613
1634
|
}
|
|
1614
1635
|
},
|
|
1615
1636
|
"hasDynamicHelp": false,
|
|
1616
1637
|
"hiddenAliases": [],
|
|
1617
|
-
"id": "
|
|
1638
|
+
"id": "compile:upload",
|
|
1618
1639
|
"pluginAlias": "faces-cli",
|
|
1619
1640
|
"pluginName": "faces-cli",
|
|
1620
1641
|
"pluginType": "core",
|
|
@@ -1624,14 +1645,14 @@
|
|
|
1624
1645
|
"relativePath": [
|
|
1625
1646
|
"dist",
|
|
1626
1647
|
"commands",
|
|
1627
|
-
"
|
|
1628
|
-
"
|
|
1648
|
+
"compile",
|
|
1649
|
+
"upload.js"
|
|
1629
1650
|
]
|
|
1630
1651
|
},
|
|
1631
|
-
"
|
|
1652
|
+
"config:clear": {
|
|
1632
1653
|
"aliases": [],
|
|
1633
1654
|
"args": {},
|
|
1634
|
-
"description": "
|
|
1655
|
+
"description": "Delete all saved credentials and config",
|
|
1635
1656
|
"flags": {
|
|
1636
1657
|
"json": {
|
|
1637
1658
|
"description": "Format output as json.",
|
|
@@ -1663,11 +1684,17 @@
|
|
|
1663
1684
|
"hasDynamicHelp": false,
|
|
1664
1685
|
"multiple": false,
|
|
1665
1686
|
"type": "option"
|
|
1687
|
+
},
|
|
1688
|
+
"yes": {
|
|
1689
|
+
"description": "Skip confirmation",
|
|
1690
|
+
"name": "yes",
|
|
1691
|
+
"allowNo": false,
|
|
1692
|
+
"type": "boolean"
|
|
1666
1693
|
}
|
|
1667
1694
|
},
|
|
1668
1695
|
"hasDynamicHelp": false,
|
|
1669
1696
|
"hiddenAliases": [],
|
|
1670
|
-
"id": "
|
|
1697
|
+
"id": "config:clear",
|
|
1671
1698
|
"pluginAlias": "faces-cli",
|
|
1672
1699
|
"pluginName": "faces-cli",
|
|
1673
1700
|
"pluginType": "core",
|
|
@@ -1677,14 +1704,25 @@
|
|
|
1677
1704
|
"relativePath": [
|
|
1678
1705
|
"dist",
|
|
1679
1706
|
"commands",
|
|
1680
|
-
"
|
|
1681
|
-
"
|
|
1707
|
+
"config",
|
|
1708
|
+
"clear.js"
|
|
1682
1709
|
]
|
|
1683
1710
|
},
|
|
1684
|
-
"
|
|
1711
|
+
"config:set": {
|
|
1685
1712
|
"aliases": [],
|
|
1686
|
-
"args": {
|
|
1687
|
-
|
|
1713
|
+
"args": {
|
|
1714
|
+
"key": {
|
|
1715
|
+
"description": "Config key",
|
|
1716
|
+
"name": "key",
|
|
1717
|
+
"required": true
|
|
1718
|
+
},
|
|
1719
|
+
"value": {
|
|
1720
|
+
"description": "Config value",
|
|
1721
|
+
"name": "value",
|
|
1722
|
+
"required": true
|
|
1723
|
+
}
|
|
1724
|
+
},
|
|
1725
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
1688
1726
|
"flags": {
|
|
1689
1727
|
"json": {
|
|
1690
1728
|
"description": "Format output as json.",
|
|
@@ -1716,49 +1754,11 @@
|
|
|
1716
1754
|
"hasDynamicHelp": false,
|
|
1717
1755
|
"multiple": false,
|
|
1718
1756
|
"type": "option"
|
|
1719
|
-
},
|
|
1720
|
-
"email": {
|
|
1721
|
-
"description": "Email address",
|
|
1722
|
-
"name": "email",
|
|
1723
|
-
"required": true,
|
|
1724
|
-
"hasDynamicHelp": false,
|
|
1725
|
-
"multiple": false,
|
|
1726
|
-
"type": "option"
|
|
1727
|
-
},
|
|
1728
|
-
"password": {
|
|
1729
|
-
"description": "Password",
|
|
1730
|
-
"name": "password",
|
|
1731
|
-
"required": true,
|
|
1732
|
-
"hasDynamicHelp": false,
|
|
1733
|
-
"multiple": false,
|
|
1734
|
-
"type": "option"
|
|
1735
|
-
},
|
|
1736
|
-
"name": {
|
|
1737
|
-
"description": "Display name (defaults to username)",
|
|
1738
|
-
"name": "name",
|
|
1739
|
-
"hasDynamicHelp": false,
|
|
1740
|
-
"multiple": false,
|
|
1741
|
-
"type": "option"
|
|
1742
|
-
},
|
|
1743
|
-
"username": {
|
|
1744
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
1745
|
-
"name": "username",
|
|
1746
|
-
"required": true,
|
|
1747
|
-
"hasDynamicHelp": false,
|
|
1748
|
-
"multiple": false,
|
|
1749
|
-
"type": "option"
|
|
1750
|
-
},
|
|
1751
|
-
"invite-key": {
|
|
1752
|
-
"description": "Invite key (if required)",
|
|
1753
|
-
"name": "invite-key",
|
|
1754
|
-
"hasDynamicHelp": false,
|
|
1755
|
-
"multiple": false,
|
|
1756
|
-
"type": "option"
|
|
1757
1757
|
}
|
|
1758
1758
|
},
|
|
1759
1759
|
"hasDynamicHelp": false,
|
|
1760
1760
|
"hiddenAliases": [],
|
|
1761
|
-
"id": "
|
|
1761
|
+
"id": "config:set",
|
|
1762
1762
|
"pluginAlias": "faces-cli",
|
|
1763
1763
|
"pluginName": "faces-cli",
|
|
1764
1764
|
"pluginType": "core",
|
|
@@ -1768,14 +1768,14 @@
|
|
|
1768
1768
|
"relativePath": [
|
|
1769
1769
|
"dist",
|
|
1770
1770
|
"commands",
|
|
1771
|
-
"
|
|
1772
|
-
"
|
|
1771
|
+
"config",
|
|
1772
|
+
"set.js"
|
|
1773
1773
|
]
|
|
1774
1774
|
},
|
|
1775
|
-
"
|
|
1775
|
+
"config:show": {
|
|
1776
1776
|
"aliases": [],
|
|
1777
1777
|
"args": {},
|
|
1778
|
-
"description": "Print current
|
|
1778
|
+
"description": "Print current config (credentials are masked)",
|
|
1779
1779
|
"flags": {
|
|
1780
1780
|
"json": {
|
|
1781
1781
|
"description": "Format output as json.",
|
|
@@ -1811,7 +1811,7 @@
|
|
|
1811
1811
|
},
|
|
1812
1812
|
"hasDynamicHelp": false,
|
|
1813
1813
|
"hiddenAliases": [],
|
|
1814
|
-
"id": "
|
|
1814
|
+
"id": "config:show",
|
|
1815
1815
|
"pluginAlias": "faces-cli",
|
|
1816
1816
|
"pluginName": "faces-cli",
|
|
1817
1817
|
"pluginType": "core",
|
|
@@ -1821,8 +1821,8 @@
|
|
|
1821
1821
|
"relativePath": [
|
|
1822
1822
|
"dist",
|
|
1823
1823
|
"commands",
|
|
1824
|
-
"
|
|
1825
|
-
"
|
|
1824
|
+
"config",
|
|
1825
|
+
"show.js"
|
|
1826
1826
|
]
|
|
1827
1827
|
},
|
|
1828
1828
|
"keys:create": {
|
|
@@ -3851,5 +3851,5 @@
|
|
|
3851
3851
|
]
|
|
3852
3852
|
}
|
|
3853
3853
|
},
|
|
3854
|
-
"version": "1.
|
|
3854
|
+
"version": "1.5.0"
|
|
3855
3855
|
}
|