faces-cli 1.3.1 → 1.4.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/catalog.d.ts +36 -0
- package/dist/catalog.js +167 -0
- package/dist/client.js +2 -1
- package/dist/commands/auth/register.js +1 -0
- package/dist/commands/auth/whoami.js +1 -1
- package/dist/commands/catalog/doctor.d.ts +12 -0
- package/dist/commands/catalog/doctor.js +196 -0
- package/dist/commands/catalog/list.d.ts +10 -0
- package/dist/commands/catalog/list.js +35 -0
- package/dist/commands/chat/chat.d.ts +4 -0
- package/dist/commands/chat/chat.js +146 -39
- package/dist/commands/chat/messages.js +1 -1
- package/dist/commands/chat/responses.js +1 -1
- package/dist/commands/compile/doc/create.d.ts +1 -0
- package/dist/commands/compile/doc/create.js +5 -2
- package/dist/commands/compile/doc/edit.d.ts +17 -0
- package/dist/commands/compile/doc/edit.js +48 -0
- package/dist/commands/compile/doc/index.d.ts +18 -0
- package/dist/commands/compile/doc/index.js +95 -0
- package/dist/commands/compile/doc/list.js +1 -1
- package/dist/commands/compile/doc/make.d.ts +14 -0
- package/dist/commands/compile/doc/make.js +55 -0
- package/dist/commands/compile/import.js +2 -3
- package/dist/commands/compile/thread/create.js +2 -2
- package/dist/commands/compile/{doc/sync.d.ts → thread/delete.d.ts} +2 -2
- package/dist/commands/compile/{doc/sync.js → thread/delete.js} +7 -7
- package/dist/commands/compile/thread/edit.d.ts +14 -0
- package/dist/commands/compile/thread/edit.js +29 -0
- package/dist/commands/compile/{doc/prepare.d.ts → thread/get.d.ts} +2 -2
- package/dist/commands/compile/{doc/prepare.js → thread/get.js} +5 -5
- package/dist/commands/compile/thread/list.js +1 -1
- package/dist/commands/compile/thread/message.js +1 -1
- package/dist/commands/face/create.d.ts +2 -0
- package/dist/commands/face/create.js +17 -2
- package/dist/commands/face/delete.js +6 -0
- package/dist/commands/face/get.js +5 -3
- package/dist/commands/face/list.js +20 -3
- package/dist/commands/face/update.d.ts +2 -0
- package/dist/commands/face/update.js +39 -9
- package/dist/config.d.ts +2 -0
- package/dist/poll.d.ts +30 -0
- package/dist/poll.js +40 -0
- package/dist/utils.d.ts +5 -0
- package/dist/utils.js +16 -0
- package/oclif.manifest.json +970 -477
- package/package.json +4 -1
package/oclif.manifest.json
CHANGED
|
@@ -566,16 +566,619 @@
|
|
|
566
566
|
"whoami.js"
|
|
567
567
|
]
|
|
568
568
|
},
|
|
569
|
+
"catalog:doctor": {
|
|
570
|
+
"aliases": [],
|
|
571
|
+
"args": {},
|
|
572
|
+
"description": "Diagnose and repair the local face catalog",
|
|
573
|
+
"flags": {
|
|
574
|
+
"json": {
|
|
575
|
+
"description": "Format output as json.",
|
|
576
|
+
"helpGroup": "GLOBAL",
|
|
577
|
+
"name": "json",
|
|
578
|
+
"allowNo": false,
|
|
579
|
+
"type": "boolean"
|
|
580
|
+
},
|
|
581
|
+
"base-url": {
|
|
582
|
+
"description": "API base URL",
|
|
583
|
+
"env": "FACES_BASE_URL",
|
|
584
|
+
"name": "base-url",
|
|
585
|
+
"hasDynamicHelp": false,
|
|
586
|
+
"multiple": false,
|
|
587
|
+
"type": "option"
|
|
588
|
+
},
|
|
589
|
+
"token": {
|
|
590
|
+
"description": "JWT bearer token",
|
|
591
|
+
"env": "FACES_TOKEN",
|
|
592
|
+
"name": "token",
|
|
593
|
+
"hasDynamicHelp": false,
|
|
594
|
+
"multiple": false,
|
|
595
|
+
"type": "option"
|
|
596
|
+
},
|
|
597
|
+
"api-key": {
|
|
598
|
+
"description": "API key",
|
|
599
|
+
"env": "FACES_API_KEY",
|
|
600
|
+
"name": "api-key",
|
|
601
|
+
"hasDynamicHelp": false,
|
|
602
|
+
"multiple": false,
|
|
603
|
+
"type": "option"
|
|
604
|
+
},
|
|
605
|
+
"fix": {
|
|
606
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
607
|
+
"name": "fix",
|
|
608
|
+
"allowNo": false,
|
|
609
|
+
"type": "boolean"
|
|
610
|
+
},
|
|
611
|
+
"generate": {
|
|
612
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
613
|
+
"name": "generate",
|
|
614
|
+
"allowNo": false,
|
|
615
|
+
"type": "boolean"
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"hasDynamicHelp": false,
|
|
619
|
+
"hiddenAliases": [],
|
|
620
|
+
"id": "catalog:doctor",
|
|
621
|
+
"pluginAlias": "faces-cli",
|
|
622
|
+
"pluginName": "faces-cli",
|
|
623
|
+
"pluginType": "core",
|
|
624
|
+
"strict": true,
|
|
625
|
+
"enableJsonFlag": true,
|
|
626
|
+
"isESM": true,
|
|
627
|
+
"relativePath": [
|
|
628
|
+
"dist",
|
|
629
|
+
"commands",
|
|
630
|
+
"catalog",
|
|
631
|
+
"doctor.js"
|
|
632
|
+
]
|
|
633
|
+
},
|
|
634
|
+
"catalog:list": {
|
|
635
|
+
"aliases": [],
|
|
636
|
+
"args": {},
|
|
637
|
+
"description": "List all faces in the local catalog",
|
|
638
|
+
"flags": {
|
|
639
|
+
"json": {
|
|
640
|
+
"description": "Format output as json.",
|
|
641
|
+
"helpGroup": "GLOBAL",
|
|
642
|
+
"name": "json",
|
|
643
|
+
"allowNo": false,
|
|
644
|
+
"type": "boolean"
|
|
645
|
+
},
|
|
646
|
+
"base-url": {
|
|
647
|
+
"description": "API base URL",
|
|
648
|
+
"env": "FACES_BASE_URL",
|
|
649
|
+
"name": "base-url",
|
|
650
|
+
"hasDynamicHelp": false,
|
|
651
|
+
"multiple": false,
|
|
652
|
+
"type": "option"
|
|
653
|
+
},
|
|
654
|
+
"token": {
|
|
655
|
+
"description": "JWT bearer token",
|
|
656
|
+
"env": "FACES_TOKEN",
|
|
657
|
+
"name": "token",
|
|
658
|
+
"hasDynamicHelp": false,
|
|
659
|
+
"multiple": false,
|
|
660
|
+
"type": "option"
|
|
661
|
+
},
|
|
662
|
+
"api-key": {
|
|
663
|
+
"description": "API key",
|
|
664
|
+
"env": "FACES_API_KEY",
|
|
665
|
+
"name": "api-key",
|
|
666
|
+
"hasDynamicHelp": false,
|
|
667
|
+
"multiple": false,
|
|
668
|
+
"type": "option"
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"hasDynamicHelp": false,
|
|
672
|
+
"hiddenAliases": [],
|
|
673
|
+
"id": "catalog:list",
|
|
674
|
+
"pluginAlias": "faces-cli",
|
|
675
|
+
"pluginName": "faces-cli",
|
|
676
|
+
"pluginType": "core",
|
|
677
|
+
"strict": true,
|
|
678
|
+
"enableJsonFlag": true,
|
|
679
|
+
"isESM": true,
|
|
680
|
+
"relativePath": [
|
|
681
|
+
"dist",
|
|
682
|
+
"commands",
|
|
683
|
+
"catalog",
|
|
684
|
+
"list.js"
|
|
685
|
+
]
|
|
686
|
+
},
|
|
687
|
+
"billing:balance": {
|
|
688
|
+
"aliases": [],
|
|
689
|
+
"args": {},
|
|
690
|
+
"description": "Show credit balance and payment method status",
|
|
691
|
+
"flags": {
|
|
692
|
+
"json": {
|
|
693
|
+
"description": "Format output as json.",
|
|
694
|
+
"helpGroup": "GLOBAL",
|
|
695
|
+
"name": "json",
|
|
696
|
+
"allowNo": false,
|
|
697
|
+
"type": "boolean"
|
|
698
|
+
},
|
|
699
|
+
"base-url": {
|
|
700
|
+
"description": "API base URL",
|
|
701
|
+
"env": "FACES_BASE_URL",
|
|
702
|
+
"name": "base-url",
|
|
703
|
+
"hasDynamicHelp": false,
|
|
704
|
+
"multiple": false,
|
|
705
|
+
"type": "option"
|
|
706
|
+
},
|
|
707
|
+
"token": {
|
|
708
|
+
"description": "JWT bearer token",
|
|
709
|
+
"env": "FACES_TOKEN",
|
|
710
|
+
"name": "token",
|
|
711
|
+
"hasDynamicHelp": false,
|
|
712
|
+
"multiple": false,
|
|
713
|
+
"type": "option"
|
|
714
|
+
},
|
|
715
|
+
"api-key": {
|
|
716
|
+
"description": "API key",
|
|
717
|
+
"env": "FACES_API_KEY",
|
|
718
|
+
"name": "api-key",
|
|
719
|
+
"hasDynamicHelp": false,
|
|
720
|
+
"multiple": false,
|
|
721
|
+
"type": "option"
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
"hasDynamicHelp": false,
|
|
725
|
+
"hiddenAliases": [],
|
|
726
|
+
"id": "billing:balance",
|
|
727
|
+
"pluginAlias": "faces-cli",
|
|
728
|
+
"pluginName": "faces-cli",
|
|
729
|
+
"pluginType": "core",
|
|
730
|
+
"strict": true,
|
|
731
|
+
"enableJsonFlag": true,
|
|
732
|
+
"isESM": true,
|
|
733
|
+
"relativePath": [
|
|
734
|
+
"dist",
|
|
735
|
+
"commands",
|
|
736
|
+
"billing",
|
|
737
|
+
"balance.js"
|
|
738
|
+
]
|
|
739
|
+
},
|
|
740
|
+
"billing:card-setup": {
|
|
741
|
+
"aliases": [],
|
|
742
|
+
"args": {},
|
|
743
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
744
|
+
"flags": {
|
|
745
|
+
"json": {
|
|
746
|
+
"description": "Format output as json.",
|
|
747
|
+
"helpGroup": "GLOBAL",
|
|
748
|
+
"name": "json",
|
|
749
|
+
"allowNo": false,
|
|
750
|
+
"type": "boolean"
|
|
751
|
+
},
|
|
752
|
+
"base-url": {
|
|
753
|
+
"description": "API base URL",
|
|
754
|
+
"env": "FACES_BASE_URL",
|
|
755
|
+
"name": "base-url",
|
|
756
|
+
"hasDynamicHelp": false,
|
|
757
|
+
"multiple": false,
|
|
758
|
+
"type": "option"
|
|
759
|
+
},
|
|
760
|
+
"token": {
|
|
761
|
+
"description": "JWT bearer token",
|
|
762
|
+
"env": "FACES_TOKEN",
|
|
763
|
+
"name": "token",
|
|
764
|
+
"hasDynamicHelp": false,
|
|
765
|
+
"multiple": false,
|
|
766
|
+
"type": "option"
|
|
767
|
+
},
|
|
768
|
+
"api-key": {
|
|
769
|
+
"description": "API key",
|
|
770
|
+
"env": "FACES_API_KEY",
|
|
771
|
+
"name": "api-key",
|
|
772
|
+
"hasDynamicHelp": false,
|
|
773
|
+
"multiple": false,
|
|
774
|
+
"type": "option"
|
|
775
|
+
}
|
|
776
|
+
},
|
|
777
|
+
"hasDynamicHelp": false,
|
|
778
|
+
"hiddenAliases": [],
|
|
779
|
+
"id": "billing:card-setup",
|
|
780
|
+
"pluginAlias": "faces-cli",
|
|
781
|
+
"pluginName": "faces-cli",
|
|
782
|
+
"pluginType": "core",
|
|
783
|
+
"strict": true,
|
|
784
|
+
"enableJsonFlag": true,
|
|
785
|
+
"isESM": true,
|
|
786
|
+
"relativePath": [
|
|
787
|
+
"dist",
|
|
788
|
+
"commands",
|
|
789
|
+
"billing",
|
|
790
|
+
"card-setup.js"
|
|
791
|
+
]
|
|
792
|
+
},
|
|
793
|
+
"billing:checkout": {
|
|
794
|
+
"aliases": [],
|
|
795
|
+
"args": {},
|
|
796
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
797
|
+
"flags": {
|
|
798
|
+
"json": {
|
|
799
|
+
"description": "Format output as json.",
|
|
800
|
+
"helpGroup": "GLOBAL",
|
|
801
|
+
"name": "json",
|
|
802
|
+
"allowNo": false,
|
|
803
|
+
"type": "boolean"
|
|
804
|
+
},
|
|
805
|
+
"base-url": {
|
|
806
|
+
"description": "API base URL",
|
|
807
|
+
"env": "FACES_BASE_URL",
|
|
808
|
+
"name": "base-url",
|
|
809
|
+
"hasDynamicHelp": false,
|
|
810
|
+
"multiple": false,
|
|
811
|
+
"type": "option"
|
|
812
|
+
},
|
|
813
|
+
"token": {
|
|
814
|
+
"description": "JWT bearer token",
|
|
815
|
+
"env": "FACES_TOKEN",
|
|
816
|
+
"name": "token",
|
|
817
|
+
"hasDynamicHelp": false,
|
|
818
|
+
"multiple": false,
|
|
819
|
+
"type": "option"
|
|
820
|
+
},
|
|
821
|
+
"api-key": {
|
|
822
|
+
"description": "API key",
|
|
823
|
+
"env": "FACES_API_KEY",
|
|
824
|
+
"name": "api-key",
|
|
825
|
+
"hasDynamicHelp": false,
|
|
826
|
+
"multiple": false,
|
|
827
|
+
"type": "option"
|
|
828
|
+
},
|
|
829
|
+
"plan": {
|
|
830
|
+
"description": "Plan to upgrade to",
|
|
831
|
+
"name": "plan",
|
|
832
|
+
"required": true,
|
|
833
|
+
"hasDynamicHelp": false,
|
|
834
|
+
"multiple": false,
|
|
835
|
+
"options": [
|
|
836
|
+
"standard",
|
|
837
|
+
"pro"
|
|
838
|
+
],
|
|
839
|
+
"type": "option"
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
"hasDynamicHelp": false,
|
|
843
|
+
"hiddenAliases": [],
|
|
844
|
+
"id": "billing:checkout",
|
|
845
|
+
"pluginAlias": "faces-cli",
|
|
846
|
+
"pluginName": "faces-cli",
|
|
847
|
+
"pluginType": "core",
|
|
848
|
+
"strict": true,
|
|
849
|
+
"enableJsonFlag": true,
|
|
850
|
+
"isESM": true,
|
|
851
|
+
"relativePath": [
|
|
852
|
+
"dist",
|
|
853
|
+
"commands",
|
|
854
|
+
"billing",
|
|
855
|
+
"checkout.js"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
"billing:llm-costs": {
|
|
859
|
+
"aliases": [],
|
|
860
|
+
"args": {},
|
|
861
|
+
"description": "List available LLMs and their per-token costs",
|
|
862
|
+
"flags": {
|
|
863
|
+
"json": {
|
|
864
|
+
"description": "Format output as json.",
|
|
865
|
+
"helpGroup": "GLOBAL",
|
|
866
|
+
"name": "json",
|
|
867
|
+
"allowNo": false,
|
|
868
|
+
"type": "boolean"
|
|
869
|
+
},
|
|
870
|
+
"base-url": {
|
|
871
|
+
"description": "API base URL",
|
|
872
|
+
"env": "FACES_BASE_URL",
|
|
873
|
+
"name": "base-url",
|
|
874
|
+
"hasDynamicHelp": false,
|
|
875
|
+
"multiple": false,
|
|
876
|
+
"type": "option"
|
|
877
|
+
},
|
|
878
|
+
"token": {
|
|
879
|
+
"description": "JWT bearer token",
|
|
880
|
+
"env": "FACES_TOKEN",
|
|
881
|
+
"name": "token",
|
|
882
|
+
"hasDynamicHelp": false,
|
|
883
|
+
"multiple": false,
|
|
884
|
+
"type": "option"
|
|
885
|
+
},
|
|
886
|
+
"api-key": {
|
|
887
|
+
"description": "API key",
|
|
888
|
+
"env": "FACES_API_KEY",
|
|
889
|
+
"name": "api-key",
|
|
890
|
+
"hasDynamicHelp": false,
|
|
891
|
+
"multiple": false,
|
|
892
|
+
"type": "option"
|
|
893
|
+
},
|
|
894
|
+
"provider": {
|
|
895
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
896
|
+
"name": "provider",
|
|
897
|
+
"hasDynamicHelp": false,
|
|
898
|
+
"multiple": false,
|
|
899
|
+
"type": "option"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"hasDynamicHelp": false,
|
|
903
|
+
"hiddenAliases": [],
|
|
904
|
+
"id": "billing:llm-costs",
|
|
905
|
+
"pluginAlias": "faces-cli",
|
|
906
|
+
"pluginName": "faces-cli",
|
|
907
|
+
"pluginType": "core",
|
|
908
|
+
"strict": true,
|
|
909
|
+
"enableJsonFlag": true,
|
|
910
|
+
"isESM": true,
|
|
911
|
+
"relativePath": [
|
|
912
|
+
"dist",
|
|
913
|
+
"commands",
|
|
914
|
+
"billing",
|
|
915
|
+
"llm-costs.js"
|
|
916
|
+
]
|
|
917
|
+
},
|
|
918
|
+
"billing:quota": {
|
|
919
|
+
"aliases": [],
|
|
920
|
+
"args": {},
|
|
921
|
+
"description": "Show compile token quota and per-face stats",
|
|
922
|
+
"flags": {
|
|
923
|
+
"json": {
|
|
924
|
+
"description": "Format output as json.",
|
|
925
|
+
"helpGroup": "GLOBAL",
|
|
926
|
+
"name": "json",
|
|
927
|
+
"allowNo": false,
|
|
928
|
+
"type": "boolean"
|
|
929
|
+
},
|
|
930
|
+
"base-url": {
|
|
931
|
+
"description": "API base URL",
|
|
932
|
+
"env": "FACES_BASE_URL",
|
|
933
|
+
"name": "base-url",
|
|
934
|
+
"hasDynamicHelp": false,
|
|
935
|
+
"multiple": false,
|
|
936
|
+
"type": "option"
|
|
937
|
+
},
|
|
938
|
+
"token": {
|
|
939
|
+
"description": "JWT bearer token",
|
|
940
|
+
"env": "FACES_TOKEN",
|
|
941
|
+
"name": "token",
|
|
942
|
+
"hasDynamicHelp": false,
|
|
943
|
+
"multiple": false,
|
|
944
|
+
"type": "option"
|
|
945
|
+
},
|
|
946
|
+
"api-key": {
|
|
947
|
+
"description": "API key",
|
|
948
|
+
"env": "FACES_API_KEY",
|
|
949
|
+
"name": "api-key",
|
|
950
|
+
"hasDynamicHelp": false,
|
|
951
|
+
"multiple": false,
|
|
952
|
+
"type": "option"
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"hasDynamicHelp": false,
|
|
956
|
+
"hiddenAliases": [],
|
|
957
|
+
"id": "billing:quota",
|
|
958
|
+
"pluginAlias": "faces-cli",
|
|
959
|
+
"pluginName": "faces-cli",
|
|
960
|
+
"pluginType": "core",
|
|
961
|
+
"strict": true,
|
|
962
|
+
"enableJsonFlag": true,
|
|
963
|
+
"isESM": true,
|
|
964
|
+
"relativePath": [
|
|
965
|
+
"dist",
|
|
966
|
+
"commands",
|
|
967
|
+
"billing",
|
|
968
|
+
"quota.js"
|
|
969
|
+
]
|
|
970
|
+
},
|
|
971
|
+
"billing:subscription": {
|
|
972
|
+
"aliases": [],
|
|
973
|
+
"args": {},
|
|
974
|
+
"description": "Show current plan, face count, and renewal date",
|
|
975
|
+
"flags": {
|
|
976
|
+
"json": {
|
|
977
|
+
"description": "Format output as json.",
|
|
978
|
+
"helpGroup": "GLOBAL",
|
|
979
|
+
"name": "json",
|
|
980
|
+
"allowNo": false,
|
|
981
|
+
"type": "boolean"
|
|
982
|
+
},
|
|
983
|
+
"base-url": {
|
|
984
|
+
"description": "API base URL",
|
|
985
|
+
"env": "FACES_BASE_URL",
|
|
986
|
+
"name": "base-url",
|
|
987
|
+
"hasDynamicHelp": false,
|
|
988
|
+
"multiple": false,
|
|
989
|
+
"type": "option"
|
|
990
|
+
},
|
|
991
|
+
"token": {
|
|
992
|
+
"description": "JWT bearer token",
|
|
993
|
+
"env": "FACES_TOKEN",
|
|
994
|
+
"name": "token",
|
|
995
|
+
"hasDynamicHelp": false,
|
|
996
|
+
"multiple": false,
|
|
997
|
+
"type": "option"
|
|
998
|
+
},
|
|
999
|
+
"api-key": {
|
|
1000
|
+
"description": "API key",
|
|
1001
|
+
"env": "FACES_API_KEY",
|
|
1002
|
+
"name": "api-key",
|
|
1003
|
+
"hasDynamicHelp": false,
|
|
1004
|
+
"multiple": false,
|
|
1005
|
+
"type": "option"
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
"hasDynamicHelp": false,
|
|
1009
|
+
"hiddenAliases": [],
|
|
1010
|
+
"id": "billing:subscription",
|
|
1011
|
+
"pluginAlias": "faces-cli",
|
|
1012
|
+
"pluginName": "faces-cli",
|
|
1013
|
+
"pluginType": "core",
|
|
1014
|
+
"strict": true,
|
|
1015
|
+
"enableJsonFlag": true,
|
|
1016
|
+
"isESM": true,
|
|
1017
|
+
"relativePath": [
|
|
1018
|
+
"dist",
|
|
1019
|
+
"commands",
|
|
1020
|
+
"billing",
|
|
1021
|
+
"subscription.js"
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
"billing:topup": {
|
|
1025
|
+
"aliases": [],
|
|
1026
|
+
"args": {},
|
|
1027
|
+
"description": "Top up credit balance using saved payment method",
|
|
1028
|
+
"flags": {
|
|
1029
|
+
"json": {
|
|
1030
|
+
"description": "Format output as json.",
|
|
1031
|
+
"helpGroup": "GLOBAL",
|
|
1032
|
+
"name": "json",
|
|
1033
|
+
"allowNo": false,
|
|
1034
|
+
"type": "boolean"
|
|
1035
|
+
},
|
|
1036
|
+
"base-url": {
|
|
1037
|
+
"description": "API base URL",
|
|
1038
|
+
"env": "FACES_BASE_URL",
|
|
1039
|
+
"name": "base-url",
|
|
1040
|
+
"hasDynamicHelp": false,
|
|
1041
|
+
"multiple": false,
|
|
1042
|
+
"type": "option"
|
|
1043
|
+
},
|
|
1044
|
+
"token": {
|
|
1045
|
+
"description": "JWT bearer token",
|
|
1046
|
+
"env": "FACES_TOKEN",
|
|
1047
|
+
"name": "token",
|
|
1048
|
+
"hasDynamicHelp": false,
|
|
1049
|
+
"multiple": false,
|
|
1050
|
+
"type": "option"
|
|
1051
|
+
},
|
|
1052
|
+
"api-key": {
|
|
1053
|
+
"description": "API key",
|
|
1054
|
+
"env": "FACES_API_KEY",
|
|
1055
|
+
"name": "api-key",
|
|
1056
|
+
"hasDynamicHelp": false,
|
|
1057
|
+
"multiple": false,
|
|
1058
|
+
"type": "option"
|
|
1059
|
+
},
|
|
1060
|
+
"amount": {
|
|
1061
|
+
"description": "Top-up amount in USD (min $1)",
|
|
1062
|
+
"name": "amount",
|
|
1063
|
+
"required": true,
|
|
1064
|
+
"hasDynamicHelp": false,
|
|
1065
|
+
"multiple": false,
|
|
1066
|
+
"type": "option"
|
|
1067
|
+
},
|
|
1068
|
+
"payment-ref": {
|
|
1069
|
+
"description": "Payment reference (admin/test path)",
|
|
1070
|
+
"name": "payment-ref",
|
|
1071
|
+
"hasDynamicHelp": false,
|
|
1072
|
+
"multiple": false,
|
|
1073
|
+
"type": "option"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"hasDynamicHelp": false,
|
|
1077
|
+
"hiddenAliases": [],
|
|
1078
|
+
"id": "billing:topup",
|
|
1079
|
+
"pluginAlias": "faces-cli",
|
|
1080
|
+
"pluginName": "faces-cli",
|
|
1081
|
+
"pluginType": "core",
|
|
1082
|
+
"strict": true,
|
|
1083
|
+
"enableJsonFlag": true,
|
|
1084
|
+
"isESM": true,
|
|
1085
|
+
"relativePath": [
|
|
1086
|
+
"dist",
|
|
1087
|
+
"commands",
|
|
1088
|
+
"billing",
|
|
1089
|
+
"topup.js"
|
|
1090
|
+
]
|
|
1091
|
+
},
|
|
1092
|
+
"billing:usage": {
|
|
1093
|
+
"aliases": [],
|
|
1094
|
+
"args": {},
|
|
1095
|
+
"description": "Aggregated usage analytics",
|
|
1096
|
+
"flags": {
|
|
1097
|
+
"json": {
|
|
1098
|
+
"description": "Format output as json.",
|
|
1099
|
+
"helpGroup": "GLOBAL",
|
|
1100
|
+
"name": "json",
|
|
1101
|
+
"allowNo": false,
|
|
1102
|
+
"type": "boolean"
|
|
1103
|
+
},
|
|
1104
|
+
"base-url": {
|
|
1105
|
+
"description": "API base URL",
|
|
1106
|
+
"env": "FACES_BASE_URL",
|
|
1107
|
+
"name": "base-url",
|
|
1108
|
+
"hasDynamicHelp": false,
|
|
1109
|
+
"multiple": false,
|
|
1110
|
+
"type": "option"
|
|
1111
|
+
},
|
|
1112
|
+
"token": {
|
|
1113
|
+
"description": "JWT bearer token",
|
|
1114
|
+
"env": "FACES_TOKEN",
|
|
1115
|
+
"name": "token",
|
|
1116
|
+
"hasDynamicHelp": false,
|
|
1117
|
+
"multiple": false,
|
|
1118
|
+
"type": "option"
|
|
1119
|
+
},
|
|
1120
|
+
"api-key": {
|
|
1121
|
+
"description": "API key",
|
|
1122
|
+
"env": "FACES_API_KEY",
|
|
1123
|
+
"name": "api-key",
|
|
1124
|
+
"hasDynamicHelp": false,
|
|
1125
|
+
"multiple": false,
|
|
1126
|
+
"type": "option"
|
|
1127
|
+
},
|
|
1128
|
+
"group-by": {
|
|
1129
|
+
"description": "Group results",
|
|
1130
|
+
"name": "group-by",
|
|
1131
|
+
"hasDynamicHelp": false,
|
|
1132
|
+
"multiple": false,
|
|
1133
|
+
"options": [
|
|
1134
|
+
"api_key",
|
|
1135
|
+
"model",
|
|
1136
|
+
"llm",
|
|
1137
|
+
"date"
|
|
1138
|
+
],
|
|
1139
|
+
"type": "option"
|
|
1140
|
+
},
|
|
1141
|
+
"from": {
|
|
1142
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1143
|
+
"name": "from",
|
|
1144
|
+
"hasDynamicHelp": false,
|
|
1145
|
+
"multiple": false,
|
|
1146
|
+
"type": "option"
|
|
1147
|
+
},
|
|
1148
|
+
"to": {
|
|
1149
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1150
|
+
"name": "to",
|
|
1151
|
+
"hasDynamicHelp": false,
|
|
1152
|
+
"multiple": false,
|
|
1153
|
+
"type": "option"
|
|
1154
|
+
}
|
|
1155
|
+
},
|
|
1156
|
+
"hasDynamicHelp": false,
|
|
1157
|
+
"hiddenAliases": [],
|
|
1158
|
+
"id": "billing:usage",
|
|
1159
|
+
"pluginAlias": "faces-cli",
|
|
1160
|
+
"pluginName": "faces-cli",
|
|
1161
|
+
"pluginType": "core",
|
|
1162
|
+
"strict": true,
|
|
1163
|
+
"enableJsonFlag": true,
|
|
1164
|
+
"isESM": true,
|
|
1165
|
+
"relativePath": [
|
|
1166
|
+
"dist",
|
|
1167
|
+
"commands",
|
|
1168
|
+
"billing",
|
|
1169
|
+
"usage.js"
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
569
1172
|
"chat:chat": {
|
|
570
1173
|
"aliases": [],
|
|
571
1174
|
"args": {
|
|
572
1175
|
"face_username": {
|
|
573
|
-
"description": "Face username",
|
|
1176
|
+
"description": "Face username (or face@model)",
|
|
574
1177
|
"name": "face_username",
|
|
575
1178
|
"required": true
|
|
576
1179
|
}
|
|
577
1180
|
},
|
|
578
|
-
"description": "
|
|
1181
|
+
"description": "Chat via a face. Auto-routes to the correct API endpoint based on model provider.",
|
|
579
1182
|
"flags": {
|
|
580
1183
|
"json": {
|
|
581
1184
|
"description": "Format output as json.",
|
|
@@ -618,14 +1221,14 @@
|
|
|
618
1221
|
"type": "option"
|
|
619
1222
|
},
|
|
620
1223
|
"llm": {
|
|
621
|
-
"description": "LLM override (e.g. claude-sonnet-4-6)",
|
|
1224
|
+
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
622
1225
|
"name": "llm",
|
|
623
1226
|
"hasDynamicHelp": false,
|
|
624
1227
|
"multiple": false,
|
|
625
1228
|
"type": "option"
|
|
626
1229
|
},
|
|
627
1230
|
"system": {
|
|
628
|
-
"description": "System prompt
|
|
1231
|
+
"description": "System prompt / instructions",
|
|
629
1232
|
"name": "system",
|
|
630
1233
|
"hasDynamicHelp": false,
|
|
631
1234
|
"multiple": false,
|
|
@@ -657,6 +1260,12 @@
|
|
|
657
1260
|
"hasDynamicHelp": false,
|
|
658
1261
|
"multiple": false,
|
|
659
1262
|
"type": "option"
|
|
1263
|
+
},
|
|
1264
|
+
"responses": {
|
|
1265
|
+
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
1266
|
+
"name": "responses",
|
|
1267
|
+
"allowNo": false,
|
|
1268
|
+
"type": "boolean"
|
|
660
1269
|
}
|
|
661
1270
|
},
|
|
662
1271
|
"hasDynamicHelp": false,
|
|
@@ -684,7 +1293,7 @@
|
|
|
684
1293
|
"required": true
|
|
685
1294
|
}
|
|
686
1295
|
},
|
|
687
|
-
"description": "Anthropic Messages API proxy via a face (
|
|
1296
|
+
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
688
1297
|
"flags": {
|
|
689
1298
|
"json": {
|
|
690
1299
|
"description": "Format output as json.",
|
|
@@ -773,7 +1382,7 @@
|
|
|
773
1382
|
"required": true
|
|
774
1383
|
}
|
|
775
1384
|
},
|
|
776
|
-
"description": "OpenAI Responses API proxy via a face",
|
|
1385
|
+
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
777
1386
|
"flags": {
|
|
778
1387
|
"json": {
|
|
779
1388
|
"description": "Format output as json.",
|
|
@@ -1171,6 +1780,20 @@
|
|
|
1171
1780
|
"multiple": false,
|
|
1172
1781
|
"type": "option"
|
|
1173
1782
|
},
|
|
1783
|
+
"description": {
|
|
1784
|
+
"description": "Description for local catalog",
|
|
1785
|
+
"name": "description",
|
|
1786
|
+
"hasDynamicHelp": false,
|
|
1787
|
+
"multiple": false,
|
|
1788
|
+
"type": "option"
|
|
1789
|
+
},
|
|
1790
|
+
"default-model": {
|
|
1791
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1792
|
+
"name": "default-model",
|
|
1793
|
+
"hasDynamicHelp": false,
|
|
1794
|
+
"multiple": false,
|
|
1795
|
+
"type": "option"
|
|
1796
|
+
},
|
|
1174
1797
|
"formula": {
|
|
1175
1798
|
"description": "Boolean formula over owned concrete face usernames (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
1176
1799
|
"name": "formula",
|
|
@@ -1642,6 +2265,20 @@
|
|
|
1642
2265
|
"multiple": false,
|
|
1643
2266
|
"type": "option"
|
|
1644
2267
|
},
|
|
2268
|
+
"description": {
|
|
2269
|
+
"description": "Description for local catalog",
|
|
2270
|
+
"name": "description",
|
|
2271
|
+
"hasDynamicHelp": false,
|
|
2272
|
+
"multiple": false,
|
|
2273
|
+
"type": "option"
|
|
2274
|
+
},
|
|
2275
|
+
"default-model": {
|
|
2276
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2277
|
+
"name": "default-model",
|
|
2278
|
+
"hasDynamicHelp": false,
|
|
2279
|
+
"multiple": false,
|
|
2280
|
+
"type": "option"
|
|
2281
|
+
},
|
|
1645
2282
|
"formula": {
|
|
1646
2283
|
"description": "New boolean formula (synthetic faces only)",
|
|
1647
2284
|
"name": "formula",
|
|
@@ -1732,251 +2369,20 @@
|
|
|
1732
2369
|
},
|
|
1733
2370
|
"kind": {
|
|
1734
2371
|
"description": "Upload kind: document or thread",
|
|
1735
|
-
"name": "kind",
|
|
1736
|
-
"default": "document",
|
|
1737
|
-
"hasDynamicHelp": false,
|
|
1738
|
-
"multiple": false,
|
|
1739
|
-
"options": [
|
|
1740
|
-
"document",
|
|
1741
|
-
"thread"
|
|
1742
|
-
],
|
|
1743
|
-
"type": "option"
|
|
1744
|
-
}
|
|
1745
|
-
},
|
|
1746
|
-
"hasDynamicHelp": false,
|
|
1747
|
-
"hiddenAliases": [],
|
|
1748
|
-
"id": "face:upload",
|
|
1749
|
-
"pluginAlias": "faces-cli",
|
|
1750
|
-
"pluginName": "faces-cli",
|
|
1751
|
-
"pluginType": "core",
|
|
1752
|
-
"strict": true,
|
|
1753
|
-
"enableJsonFlag": true,
|
|
1754
|
-
"isESM": true,
|
|
1755
|
-
"relativePath": [
|
|
1756
|
-
"dist",
|
|
1757
|
-
"commands",
|
|
1758
|
-
"face",
|
|
1759
|
-
"upload.js"
|
|
1760
|
-
]
|
|
1761
|
-
},
|
|
1762
|
-
"billing:balance": {
|
|
1763
|
-
"aliases": [],
|
|
1764
|
-
"args": {},
|
|
1765
|
-
"description": "Show credit balance and payment method status",
|
|
1766
|
-
"flags": {
|
|
1767
|
-
"json": {
|
|
1768
|
-
"description": "Format output as json.",
|
|
1769
|
-
"helpGroup": "GLOBAL",
|
|
1770
|
-
"name": "json",
|
|
1771
|
-
"allowNo": false,
|
|
1772
|
-
"type": "boolean"
|
|
1773
|
-
},
|
|
1774
|
-
"base-url": {
|
|
1775
|
-
"description": "API base URL",
|
|
1776
|
-
"env": "FACES_BASE_URL",
|
|
1777
|
-
"name": "base-url",
|
|
1778
|
-
"hasDynamicHelp": false,
|
|
1779
|
-
"multiple": false,
|
|
1780
|
-
"type": "option"
|
|
1781
|
-
},
|
|
1782
|
-
"token": {
|
|
1783
|
-
"description": "JWT bearer token",
|
|
1784
|
-
"env": "FACES_TOKEN",
|
|
1785
|
-
"name": "token",
|
|
1786
|
-
"hasDynamicHelp": false,
|
|
1787
|
-
"multiple": false,
|
|
1788
|
-
"type": "option"
|
|
1789
|
-
},
|
|
1790
|
-
"api-key": {
|
|
1791
|
-
"description": "API key",
|
|
1792
|
-
"env": "FACES_API_KEY",
|
|
1793
|
-
"name": "api-key",
|
|
1794
|
-
"hasDynamicHelp": false,
|
|
1795
|
-
"multiple": false,
|
|
1796
|
-
"type": "option"
|
|
1797
|
-
}
|
|
1798
|
-
},
|
|
1799
|
-
"hasDynamicHelp": false,
|
|
1800
|
-
"hiddenAliases": [],
|
|
1801
|
-
"id": "billing:balance",
|
|
1802
|
-
"pluginAlias": "faces-cli",
|
|
1803
|
-
"pluginName": "faces-cli",
|
|
1804
|
-
"pluginType": "core",
|
|
1805
|
-
"strict": true,
|
|
1806
|
-
"enableJsonFlag": true,
|
|
1807
|
-
"isESM": true,
|
|
1808
|
-
"relativePath": [
|
|
1809
|
-
"dist",
|
|
1810
|
-
"commands",
|
|
1811
|
-
"billing",
|
|
1812
|
-
"balance.js"
|
|
1813
|
-
]
|
|
1814
|
-
},
|
|
1815
|
-
"billing:card-setup": {
|
|
1816
|
-
"aliases": [],
|
|
1817
|
-
"args": {},
|
|
1818
|
-
"description": "Get a Stripe card setup URL to save a payment method",
|
|
1819
|
-
"flags": {
|
|
1820
|
-
"json": {
|
|
1821
|
-
"description": "Format output as json.",
|
|
1822
|
-
"helpGroup": "GLOBAL",
|
|
1823
|
-
"name": "json",
|
|
1824
|
-
"allowNo": false,
|
|
1825
|
-
"type": "boolean"
|
|
1826
|
-
},
|
|
1827
|
-
"base-url": {
|
|
1828
|
-
"description": "API base URL",
|
|
1829
|
-
"env": "FACES_BASE_URL",
|
|
1830
|
-
"name": "base-url",
|
|
1831
|
-
"hasDynamicHelp": false,
|
|
1832
|
-
"multiple": false,
|
|
1833
|
-
"type": "option"
|
|
1834
|
-
},
|
|
1835
|
-
"token": {
|
|
1836
|
-
"description": "JWT bearer token",
|
|
1837
|
-
"env": "FACES_TOKEN",
|
|
1838
|
-
"name": "token",
|
|
1839
|
-
"hasDynamicHelp": false,
|
|
1840
|
-
"multiple": false,
|
|
1841
|
-
"type": "option"
|
|
1842
|
-
},
|
|
1843
|
-
"api-key": {
|
|
1844
|
-
"description": "API key",
|
|
1845
|
-
"env": "FACES_API_KEY",
|
|
1846
|
-
"name": "api-key",
|
|
1847
|
-
"hasDynamicHelp": false,
|
|
1848
|
-
"multiple": false,
|
|
1849
|
-
"type": "option"
|
|
1850
|
-
}
|
|
1851
|
-
},
|
|
1852
|
-
"hasDynamicHelp": false,
|
|
1853
|
-
"hiddenAliases": [],
|
|
1854
|
-
"id": "billing:card-setup",
|
|
1855
|
-
"pluginAlias": "faces-cli",
|
|
1856
|
-
"pluginName": "faces-cli",
|
|
1857
|
-
"pluginType": "core",
|
|
1858
|
-
"strict": true,
|
|
1859
|
-
"enableJsonFlag": true,
|
|
1860
|
-
"isESM": true,
|
|
1861
|
-
"relativePath": [
|
|
1862
|
-
"dist",
|
|
1863
|
-
"commands",
|
|
1864
|
-
"billing",
|
|
1865
|
-
"card-setup.js"
|
|
1866
|
-
]
|
|
1867
|
-
},
|
|
1868
|
-
"billing:checkout": {
|
|
1869
|
-
"aliases": [],
|
|
1870
|
-
"args": {},
|
|
1871
|
-
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
1872
|
-
"flags": {
|
|
1873
|
-
"json": {
|
|
1874
|
-
"description": "Format output as json.",
|
|
1875
|
-
"helpGroup": "GLOBAL",
|
|
1876
|
-
"name": "json",
|
|
1877
|
-
"allowNo": false,
|
|
1878
|
-
"type": "boolean"
|
|
1879
|
-
},
|
|
1880
|
-
"base-url": {
|
|
1881
|
-
"description": "API base URL",
|
|
1882
|
-
"env": "FACES_BASE_URL",
|
|
1883
|
-
"name": "base-url",
|
|
1884
|
-
"hasDynamicHelp": false,
|
|
1885
|
-
"multiple": false,
|
|
1886
|
-
"type": "option"
|
|
1887
|
-
},
|
|
1888
|
-
"token": {
|
|
1889
|
-
"description": "JWT bearer token",
|
|
1890
|
-
"env": "FACES_TOKEN",
|
|
1891
|
-
"name": "token",
|
|
1892
|
-
"hasDynamicHelp": false,
|
|
1893
|
-
"multiple": false,
|
|
1894
|
-
"type": "option"
|
|
1895
|
-
},
|
|
1896
|
-
"api-key": {
|
|
1897
|
-
"description": "API key",
|
|
1898
|
-
"env": "FACES_API_KEY",
|
|
1899
|
-
"name": "api-key",
|
|
1900
|
-
"hasDynamicHelp": false,
|
|
1901
|
-
"multiple": false,
|
|
1902
|
-
"type": "option"
|
|
1903
|
-
},
|
|
1904
|
-
"plan": {
|
|
1905
|
-
"description": "Plan to upgrade to",
|
|
1906
|
-
"name": "plan",
|
|
1907
|
-
"required": true,
|
|
1908
|
-
"hasDynamicHelp": false,
|
|
1909
|
-
"multiple": false,
|
|
1910
|
-
"options": [
|
|
1911
|
-
"standard",
|
|
1912
|
-
"pro"
|
|
1913
|
-
],
|
|
1914
|
-
"type": "option"
|
|
1915
|
-
}
|
|
1916
|
-
},
|
|
1917
|
-
"hasDynamicHelp": false,
|
|
1918
|
-
"hiddenAliases": [],
|
|
1919
|
-
"id": "billing:checkout",
|
|
1920
|
-
"pluginAlias": "faces-cli",
|
|
1921
|
-
"pluginName": "faces-cli",
|
|
1922
|
-
"pluginType": "core",
|
|
1923
|
-
"strict": true,
|
|
1924
|
-
"enableJsonFlag": true,
|
|
1925
|
-
"isESM": true,
|
|
1926
|
-
"relativePath": [
|
|
1927
|
-
"dist",
|
|
1928
|
-
"commands",
|
|
1929
|
-
"billing",
|
|
1930
|
-
"checkout.js"
|
|
1931
|
-
]
|
|
1932
|
-
},
|
|
1933
|
-
"billing:llm-costs": {
|
|
1934
|
-
"aliases": [],
|
|
1935
|
-
"args": {},
|
|
1936
|
-
"description": "List available LLMs and their per-token costs",
|
|
1937
|
-
"flags": {
|
|
1938
|
-
"json": {
|
|
1939
|
-
"description": "Format output as json.",
|
|
1940
|
-
"helpGroup": "GLOBAL",
|
|
1941
|
-
"name": "json",
|
|
1942
|
-
"allowNo": false,
|
|
1943
|
-
"type": "boolean"
|
|
1944
|
-
},
|
|
1945
|
-
"base-url": {
|
|
1946
|
-
"description": "API base URL",
|
|
1947
|
-
"env": "FACES_BASE_URL",
|
|
1948
|
-
"name": "base-url",
|
|
1949
|
-
"hasDynamicHelp": false,
|
|
1950
|
-
"multiple": false,
|
|
1951
|
-
"type": "option"
|
|
1952
|
-
},
|
|
1953
|
-
"token": {
|
|
1954
|
-
"description": "JWT bearer token",
|
|
1955
|
-
"env": "FACES_TOKEN",
|
|
1956
|
-
"name": "token",
|
|
1957
|
-
"hasDynamicHelp": false,
|
|
1958
|
-
"multiple": false,
|
|
1959
|
-
"type": "option"
|
|
1960
|
-
},
|
|
1961
|
-
"api-key": {
|
|
1962
|
-
"description": "API key",
|
|
1963
|
-
"env": "FACES_API_KEY",
|
|
1964
|
-
"name": "api-key",
|
|
1965
|
-
"hasDynamicHelp": false,
|
|
1966
|
-
"multiple": false,
|
|
1967
|
-
"type": "option"
|
|
1968
|
-
},
|
|
1969
|
-
"provider": {
|
|
1970
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
1971
|
-
"name": "provider",
|
|
2372
|
+
"name": "kind",
|
|
2373
|
+
"default": "document",
|
|
1972
2374
|
"hasDynamicHelp": false,
|
|
1973
2375
|
"multiple": false,
|
|
2376
|
+
"options": [
|
|
2377
|
+
"document",
|
|
2378
|
+
"thread"
|
|
2379
|
+
],
|
|
1974
2380
|
"type": "option"
|
|
1975
2381
|
}
|
|
1976
2382
|
},
|
|
1977
2383
|
"hasDynamicHelp": false,
|
|
1978
2384
|
"hiddenAliases": [],
|
|
1979
|
-
"id": "
|
|
2385
|
+
"id": "face:upload",
|
|
1980
2386
|
"pluginAlias": "faces-cli",
|
|
1981
2387
|
"pluginName": "faces-cli",
|
|
1982
2388
|
"pluginType": "core",
|
|
@@ -1986,14 +2392,14 @@
|
|
|
1986
2392
|
"relativePath": [
|
|
1987
2393
|
"dist",
|
|
1988
2394
|
"commands",
|
|
1989
|
-
"
|
|
1990
|
-
"
|
|
2395
|
+
"face",
|
|
2396
|
+
"upload.js"
|
|
1991
2397
|
]
|
|
1992
2398
|
},
|
|
1993
|
-
"
|
|
2399
|
+
"keys:create": {
|
|
1994
2400
|
"aliases": [],
|
|
1995
2401
|
"args": {},
|
|
1996
|
-
"description": "
|
|
2402
|
+
"description": "Create a new API key (JWT required)",
|
|
1997
2403
|
"flags": {
|
|
1998
2404
|
"json": {
|
|
1999
2405
|
"description": "Format output as json.",
|
|
@@ -2025,11 +2431,47 @@
|
|
|
2025
2431
|
"hasDynamicHelp": false,
|
|
2026
2432
|
"multiple": false,
|
|
2027
2433
|
"type": "option"
|
|
2434
|
+
},
|
|
2435
|
+
"name": {
|
|
2436
|
+
"description": "Key name/label",
|
|
2437
|
+
"name": "name",
|
|
2438
|
+
"required": true,
|
|
2439
|
+
"hasDynamicHelp": false,
|
|
2440
|
+
"multiple": false,
|
|
2441
|
+
"type": "option"
|
|
2442
|
+
},
|
|
2443
|
+
"expires-days": {
|
|
2444
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
2445
|
+
"name": "expires-days",
|
|
2446
|
+
"hasDynamicHelp": false,
|
|
2447
|
+
"multiple": false,
|
|
2448
|
+
"type": "option"
|
|
2449
|
+
},
|
|
2450
|
+
"budget": {
|
|
2451
|
+
"description": "Spend budget in USD",
|
|
2452
|
+
"name": "budget",
|
|
2453
|
+
"hasDynamicHelp": false,
|
|
2454
|
+
"multiple": false,
|
|
2455
|
+
"type": "option"
|
|
2456
|
+
},
|
|
2457
|
+
"face": {
|
|
2458
|
+
"description": "Allowed face username (repeatable)",
|
|
2459
|
+
"name": "face",
|
|
2460
|
+
"hasDynamicHelp": false,
|
|
2461
|
+
"multiple": true,
|
|
2462
|
+
"type": "option"
|
|
2463
|
+
},
|
|
2464
|
+
"model": {
|
|
2465
|
+
"description": "Allowed model name (repeatable)",
|
|
2466
|
+
"name": "model",
|
|
2467
|
+
"hasDynamicHelp": false,
|
|
2468
|
+
"multiple": true,
|
|
2469
|
+
"type": "option"
|
|
2028
2470
|
}
|
|
2029
2471
|
},
|
|
2030
2472
|
"hasDynamicHelp": false,
|
|
2031
2473
|
"hiddenAliases": [],
|
|
2032
|
-
"id": "
|
|
2474
|
+
"id": "keys:create",
|
|
2033
2475
|
"pluginAlias": "faces-cli",
|
|
2034
2476
|
"pluginName": "faces-cli",
|
|
2035
2477
|
"pluginType": "core",
|
|
@@ -2039,14 +2481,14 @@
|
|
|
2039
2481
|
"relativePath": [
|
|
2040
2482
|
"dist",
|
|
2041
2483
|
"commands",
|
|
2042
|
-
"
|
|
2043
|
-
"
|
|
2484
|
+
"keys",
|
|
2485
|
+
"create.js"
|
|
2044
2486
|
]
|
|
2045
2487
|
},
|
|
2046
|
-
"
|
|
2488
|
+
"keys:list": {
|
|
2047
2489
|
"aliases": [],
|
|
2048
2490
|
"args": {},
|
|
2049
|
-
"description": "
|
|
2491
|
+
"description": "List all API keys (JWT required)",
|
|
2050
2492
|
"flags": {
|
|
2051
2493
|
"json": {
|
|
2052
2494
|
"description": "Format output as json.",
|
|
@@ -2082,7 +2524,7 @@
|
|
|
2082
2524
|
},
|
|
2083
2525
|
"hasDynamicHelp": false,
|
|
2084
2526
|
"hiddenAliases": [],
|
|
2085
|
-
"id": "
|
|
2527
|
+
"id": "keys:list",
|
|
2086
2528
|
"pluginAlias": "faces-cli",
|
|
2087
2529
|
"pluginName": "faces-cli",
|
|
2088
2530
|
"pluginType": "core",
|
|
@@ -2092,14 +2534,20 @@
|
|
|
2092
2534
|
"relativePath": [
|
|
2093
2535
|
"dist",
|
|
2094
2536
|
"commands",
|
|
2095
|
-
"
|
|
2096
|
-
"
|
|
2537
|
+
"keys",
|
|
2538
|
+
"list.js"
|
|
2097
2539
|
]
|
|
2098
2540
|
},
|
|
2099
|
-
"
|
|
2541
|
+
"keys:revoke": {
|
|
2100
2542
|
"aliases": [],
|
|
2101
|
-
"args": {
|
|
2102
|
-
|
|
2543
|
+
"args": {
|
|
2544
|
+
"key_id": {
|
|
2545
|
+
"description": "Key ID",
|
|
2546
|
+
"name": "key_id",
|
|
2547
|
+
"required": true
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
"description": "Revoke an API key (JWT required)",
|
|
2103
2551
|
"flags": {
|
|
2104
2552
|
"json": {
|
|
2105
2553
|
"description": "Format output as json.",
|
|
@@ -2132,25 +2580,16 @@
|
|
|
2132
2580
|
"multiple": false,
|
|
2133
2581
|
"type": "option"
|
|
2134
2582
|
},
|
|
2135
|
-
"
|
|
2136
|
-
"description": "
|
|
2137
|
-
"name": "
|
|
2138
|
-
"
|
|
2139
|
-
"
|
|
2140
|
-
"multiple": false,
|
|
2141
|
-
"type": "option"
|
|
2142
|
-
},
|
|
2143
|
-
"payment-ref": {
|
|
2144
|
-
"description": "Payment reference (admin/test path)",
|
|
2145
|
-
"name": "payment-ref",
|
|
2146
|
-
"hasDynamicHelp": false,
|
|
2147
|
-
"multiple": false,
|
|
2148
|
-
"type": "option"
|
|
2583
|
+
"yes": {
|
|
2584
|
+
"description": "Skip confirmation",
|
|
2585
|
+
"name": "yes",
|
|
2586
|
+
"allowNo": false,
|
|
2587
|
+
"type": "boolean"
|
|
2149
2588
|
}
|
|
2150
2589
|
},
|
|
2151
2590
|
"hasDynamicHelp": false,
|
|
2152
2591
|
"hiddenAliases": [],
|
|
2153
|
-
"id": "
|
|
2592
|
+
"id": "keys:revoke",
|
|
2154
2593
|
"pluginAlias": "faces-cli",
|
|
2155
2594
|
"pluginName": "faces-cli",
|
|
2156
2595
|
"pluginType": "core",
|
|
@@ -2160,14 +2599,20 @@
|
|
|
2160
2599
|
"relativePath": [
|
|
2161
2600
|
"dist",
|
|
2162
2601
|
"commands",
|
|
2163
|
-
"
|
|
2164
|
-
"
|
|
2602
|
+
"keys",
|
|
2603
|
+
"revoke.js"
|
|
2165
2604
|
]
|
|
2166
2605
|
},
|
|
2167
|
-
"
|
|
2606
|
+
"keys:update": {
|
|
2168
2607
|
"aliases": [],
|
|
2169
|
-
"args": {
|
|
2170
|
-
|
|
2608
|
+
"args": {
|
|
2609
|
+
"key_id": {
|
|
2610
|
+
"description": "Key ID",
|
|
2611
|
+
"name": "key_id",
|
|
2612
|
+
"required": true
|
|
2613
|
+
}
|
|
2614
|
+
},
|
|
2615
|
+
"description": "Update API key metadata (JWT required)",
|
|
2171
2616
|
"flags": {
|
|
2172
2617
|
"json": {
|
|
2173
2618
|
"description": "Format output as json.",
|
|
@@ -2200,37 +2645,30 @@
|
|
|
2200
2645
|
"multiple": false,
|
|
2201
2646
|
"type": "option"
|
|
2202
2647
|
},
|
|
2203
|
-
"
|
|
2204
|
-
"description": "
|
|
2205
|
-
"name": "
|
|
2648
|
+
"name": {
|
|
2649
|
+
"description": "New key name",
|
|
2650
|
+
"name": "name",
|
|
2206
2651
|
"hasDynamicHelp": false,
|
|
2207
2652
|
"multiple": false,
|
|
2208
|
-
"options": [
|
|
2209
|
-
"api_key",
|
|
2210
|
-
"model",
|
|
2211
|
-
"llm",
|
|
2212
|
-
"date"
|
|
2213
|
-
],
|
|
2214
2653
|
"type": "option"
|
|
2215
2654
|
},
|
|
2216
|
-
"
|
|
2217
|
-
"description": "
|
|
2218
|
-
"name": "
|
|
2655
|
+
"budget": {
|
|
2656
|
+
"description": "New spend budget in USD",
|
|
2657
|
+
"name": "budget",
|
|
2219
2658
|
"hasDynamicHelp": false,
|
|
2220
2659
|
"multiple": false,
|
|
2221
2660
|
"type": "option"
|
|
2222
2661
|
},
|
|
2223
|
-
"
|
|
2224
|
-
"description": "
|
|
2225
|
-
"name": "
|
|
2226
|
-
"
|
|
2227
|
-
"
|
|
2228
|
-
"type": "option"
|
|
2662
|
+
"reset-spent": {
|
|
2663
|
+
"description": "Reset spent amount to zero",
|
|
2664
|
+
"name": "reset-spent",
|
|
2665
|
+
"allowNo": false,
|
|
2666
|
+
"type": "boolean"
|
|
2229
2667
|
}
|
|
2230
2668
|
},
|
|
2231
2669
|
"hasDynamicHelp": false,
|
|
2232
2670
|
"hiddenAliases": [],
|
|
2233
|
-
"id": "
|
|
2671
|
+
"id": "keys:update",
|
|
2234
2672
|
"pluginAlias": "faces-cli",
|
|
2235
2673
|
"pluginName": "faces-cli",
|
|
2236
2674
|
"pluginType": "core",
|
|
@@ -2240,14 +2678,20 @@
|
|
|
2240
2678
|
"relativePath": [
|
|
2241
2679
|
"dist",
|
|
2242
2680
|
"commands",
|
|
2243
|
-
"
|
|
2244
|
-
"
|
|
2681
|
+
"keys",
|
|
2682
|
+
"update.js"
|
|
2245
2683
|
]
|
|
2246
2684
|
},
|
|
2247
|
-
"
|
|
2685
|
+
"compile:doc:create": {
|
|
2248
2686
|
"aliases": [],
|
|
2249
|
-
"args": {
|
|
2250
|
-
|
|
2687
|
+
"args": {
|
|
2688
|
+
"face_id": {
|
|
2689
|
+
"description": "Face ID or username",
|
|
2690
|
+
"name": "face_id",
|
|
2691
|
+
"required": true
|
|
2692
|
+
}
|
|
2693
|
+
},
|
|
2694
|
+
"description": "Submit a document to a face",
|
|
2251
2695
|
"flags": {
|
|
2252
2696
|
"json": {
|
|
2253
2697
|
"description": "Format output as json.",
|
|
@@ -2280,46 +2724,43 @@
|
|
|
2280
2724
|
"multiple": false,
|
|
2281
2725
|
"type": "option"
|
|
2282
2726
|
},
|
|
2283
|
-
"
|
|
2284
|
-
"description": "
|
|
2285
|
-
"name": "
|
|
2286
|
-
"required": true,
|
|
2727
|
+
"label": {
|
|
2728
|
+
"description": "Document label/title",
|
|
2729
|
+
"name": "label",
|
|
2287
2730
|
"hasDynamicHelp": false,
|
|
2288
2731
|
"multiple": false,
|
|
2289
2732
|
"type": "option"
|
|
2290
2733
|
},
|
|
2291
|
-
"
|
|
2292
|
-
"description": "
|
|
2293
|
-
"name": "
|
|
2734
|
+
"content": {
|
|
2735
|
+
"description": "Inline text content",
|
|
2736
|
+
"name": "content",
|
|
2294
2737
|
"hasDynamicHelp": false,
|
|
2295
2738
|
"multiple": false,
|
|
2296
2739
|
"type": "option"
|
|
2297
2740
|
},
|
|
2298
|
-
"
|
|
2299
|
-
"description": "
|
|
2300
|
-
"name": "
|
|
2741
|
+
"file": {
|
|
2742
|
+
"description": "Read content from file",
|
|
2743
|
+
"name": "file",
|
|
2301
2744
|
"hasDynamicHelp": false,
|
|
2302
2745
|
"multiple": false,
|
|
2303
2746
|
"type": "option"
|
|
2304
2747
|
},
|
|
2305
|
-
"
|
|
2306
|
-
"description": "
|
|
2307
|
-
"name": "
|
|
2308
|
-
"
|
|
2309
|
-
"multiple": true,
|
|
2310
|
-
"type": "option"
|
|
2311
|
-
},
|
|
2312
|
-
"model": {
|
|
2313
|
-
"description": "Allowed model name (repeatable)",
|
|
2314
|
-
"name": "model",
|
|
2748
|
+
"perspective": {
|
|
2749
|
+
"description": "Perspective (first-person or third-person)",
|
|
2750
|
+
"name": "perspective",
|
|
2751
|
+
"default": "first-person",
|
|
2315
2752
|
"hasDynamicHelp": false,
|
|
2316
|
-
"multiple":
|
|
2753
|
+
"multiple": false,
|
|
2754
|
+
"options": [
|
|
2755
|
+
"first-person",
|
|
2756
|
+
"third-person"
|
|
2757
|
+
],
|
|
2317
2758
|
"type": "option"
|
|
2318
2759
|
}
|
|
2319
2760
|
},
|
|
2320
2761
|
"hasDynamicHelp": false,
|
|
2321
2762
|
"hiddenAliases": [],
|
|
2322
|
-
"id": "
|
|
2763
|
+
"id": "compile:doc:create",
|
|
2323
2764
|
"pluginAlias": "faces-cli",
|
|
2324
2765
|
"pluginName": "faces-cli",
|
|
2325
2766
|
"pluginType": "core",
|
|
@@ -2329,14 +2770,21 @@
|
|
|
2329
2770
|
"relativePath": [
|
|
2330
2771
|
"dist",
|
|
2331
2772
|
"commands",
|
|
2332
|
-
"
|
|
2773
|
+
"compile",
|
|
2774
|
+
"doc",
|
|
2333
2775
|
"create.js"
|
|
2334
2776
|
]
|
|
2335
2777
|
},
|
|
2336
|
-
"
|
|
2778
|
+
"compile:doc:delete": {
|
|
2337
2779
|
"aliases": [],
|
|
2338
|
-
"args": {
|
|
2339
|
-
|
|
2780
|
+
"args": {
|
|
2781
|
+
"doc_id": {
|
|
2782
|
+
"description": "Document ID",
|
|
2783
|
+
"name": "doc_id",
|
|
2784
|
+
"required": true
|
|
2785
|
+
}
|
|
2786
|
+
},
|
|
2787
|
+
"description": "Delete a document",
|
|
2340
2788
|
"flags": {
|
|
2341
2789
|
"json": {
|
|
2342
2790
|
"description": "Format output as json.",
|
|
@@ -2372,7 +2820,7 @@
|
|
|
2372
2820
|
},
|
|
2373
2821
|
"hasDynamicHelp": false,
|
|
2374
2822
|
"hiddenAliases": [],
|
|
2375
|
-
"id": "
|
|
2823
|
+
"id": "compile:doc:delete",
|
|
2376
2824
|
"pluginAlias": "faces-cli",
|
|
2377
2825
|
"pluginName": "faces-cli",
|
|
2378
2826
|
"pluginType": "core",
|
|
@@ -2382,20 +2830,21 @@
|
|
|
2382
2830
|
"relativePath": [
|
|
2383
2831
|
"dist",
|
|
2384
2832
|
"commands",
|
|
2385
|
-
"
|
|
2386
|
-
"
|
|
2833
|
+
"compile",
|
|
2834
|
+
"doc",
|
|
2835
|
+
"delete.js"
|
|
2387
2836
|
]
|
|
2388
2837
|
},
|
|
2389
|
-
"
|
|
2838
|
+
"compile:doc:edit": {
|
|
2390
2839
|
"aliases": [],
|
|
2391
2840
|
"args": {
|
|
2392
|
-
"
|
|
2393
|
-
"description": "
|
|
2394
|
-
"name": "
|
|
2841
|
+
"doc_id": {
|
|
2842
|
+
"description": "Document ID",
|
|
2843
|
+
"name": "doc_id",
|
|
2395
2844
|
"required": true
|
|
2396
2845
|
}
|
|
2397
2846
|
},
|
|
2398
|
-
"description": "
|
|
2847
|
+
"description": "Edit a document (label, content, or perspective)",
|
|
2399
2848
|
"flags": {
|
|
2400
2849
|
"json": {
|
|
2401
2850
|
"description": "Format output as json.",
|
|
@@ -2420,24 +2869,50 @@
|
|
|
2420
2869
|
"multiple": false,
|
|
2421
2870
|
"type": "option"
|
|
2422
2871
|
},
|
|
2423
|
-
"api-key": {
|
|
2424
|
-
"description": "API key",
|
|
2425
|
-
"env": "FACES_API_KEY",
|
|
2426
|
-
"name": "api-key",
|
|
2872
|
+
"api-key": {
|
|
2873
|
+
"description": "API key",
|
|
2874
|
+
"env": "FACES_API_KEY",
|
|
2875
|
+
"name": "api-key",
|
|
2876
|
+
"hasDynamicHelp": false,
|
|
2877
|
+
"multiple": false,
|
|
2878
|
+
"type": "option"
|
|
2879
|
+
},
|
|
2880
|
+
"label": {
|
|
2881
|
+
"description": "New label/title",
|
|
2882
|
+
"name": "label",
|
|
2883
|
+
"hasDynamicHelp": false,
|
|
2884
|
+
"multiple": false,
|
|
2885
|
+
"type": "option"
|
|
2886
|
+
},
|
|
2887
|
+
"content": {
|
|
2888
|
+
"description": "New inline text content",
|
|
2889
|
+
"name": "content",
|
|
2890
|
+
"hasDynamicHelp": false,
|
|
2891
|
+
"multiple": false,
|
|
2892
|
+
"type": "option"
|
|
2893
|
+
},
|
|
2894
|
+
"file": {
|
|
2895
|
+
"description": "Read new content from file",
|
|
2896
|
+
"name": "file",
|
|
2897
|
+
"hasDynamicHelp": false,
|
|
2898
|
+
"multiple": false,
|
|
2899
|
+
"type": "option"
|
|
2900
|
+
},
|
|
2901
|
+
"perspective": {
|
|
2902
|
+
"description": "Perspective (first-person or third-person)",
|
|
2903
|
+
"name": "perspective",
|
|
2427
2904
|
"hasDynamicHelp": false,
|
|
2428
2905
|
"multiple": false,
|
|
2906
|
+
"options": [
|
|
2907
|
+
"first-person",
|
|
2908
|
+
"third-person"
|
|
2909
|
+
],
|
|
2429
2910
|
"type": "option"
|
|
2430
|
-
},
|
|
2431
|
-
"yes": {
|
|
2432
|
-
"description": "Skip confirmation",
|
|
2433
|
-
"name": "yes",
|
|
2434
|
-
"allowNo": false,
|
|
2435
|
-
"type": "boolean"
|
|
2436
2911
|
}
|
|
2437
2912
|
},
|
|
2438
2913
|
"hasDynamicHelp": false,
|
|
2439
2914
|
"hiddenAliases": [],
|
|
2440
|
-
"id": "
|
|
2915
|
+
"id": "compile:doc:edit",
|
|
2441
2916
|
"pluginAlias": "faces-cli",
|
|
2442
2917
|
"pluginName": "faces-cli",
|
|
2443
2918
|
"pluginType": "core",
|
|
@@ -2447,20 +2922,21 @@
|
|
|
2447
2922
|
"relativePath": [
|
|
2448
2923
|
"dist",
|
|
2449
2924
|
"commands",
|
|
2450
|
-
"
|
|
2451
|
-
"
|
|
2925
|
+
"compile",
|
|
2926
|
+
"doc",
|
|
2927
|
+
"edit.js"
|
|
2452
2928
|
]
|
|
2453
2929
|
},
|
|
2454
|
-
"
|
|
2930
|
+
"compile:doc:get": {
|
|
2455
2931
|
"aliases": [],
|
|
2456
2932
|
"args": {
|
|
2457
|
-
"
|
|
2458
|
-
"description": "
|
|
2459
|
-
"name": "
|
|
2933
|
+
"doc_id": {
|
|
2934
|
+
"description": "Document ID",
|
|
2935
|
+
"name": "doc_id",
|
|
2460
2936
|
"required": true
|
|
2461
2937
|
}
|
|
2462
2938
|
},
|
|
2463
|
-
"description": "
|
|
2939
|
+
"description": "Get a document by ID",
|
|
2464
2940
|
"flags": {
|
|
2465
2941
|
"json": {
|
|
2466
2942
|
"description": "Format output as json.",
|
|
@@ -2492,31 +2968,11 @@
|
|
|
2492
2968
|
"hasDynamicHelp": false,
|
|
2493
2969
|
"multiple": false,
|
|
2494
2970
|
"type": "option"
|
|
2495
|
-
},
|
|
2496
|
-
"name": {
|
|
2497
|
-
"description": "New key name",
|
|
2498
|
-
"name": "name",
|
|
2499
|
-
"hasDynamicHelp": false,
|
|
2500
|
-
"multiple": false,
|
|
2501
|
-
"type": "option"
|
|
2502
|
-
},
|
|
2503
|
-
"budget": {
|
|
2504
|
-
"description": "New spend budget in USD",
|
|
2505
|
-
"name": "budget",
|
|
2506
|
-
"hasDynamicHelp": false,
|
|
2507
|
-
"multiple": false,
|
|
2508
|
-
"type": "option"
|
|
2509
|
-
},
|
|
2510
|
-
"reset-spent": {
|
|
2511
|
-
"description": "Reset spent amount to zero",
|
|
2512
|
-
"name": "reset-spent",
|
|
2513
|
-
"allowNo": false,
|
|
2514
|
-
"type": "boolean"
|
|
2515
2971
|
}
|
|
2516
2972
|
},
|
|
2517
2973
|
"hasDynamicHelp": false,
|
|
2518
2974
|
"hiddenAliases": [],
|
|
2519
|
-
"id": "
|
|
2975
|
+
"id": "compile:doc:get",
|
|
2520
2976
|
"pluginAlias": "faces-cli",
|
|
2521
2977
|
"pluginName": "faces-cli",
|
|
2522
2978
|
"pluginType": "core",
|
|
@@ -2526,11 +2982,12 @@
|
|
|
2526
2982
|
"relativePath": [
|
|
2527
2983
|
"dist",
|
|
2528
2984
|
"commands",
|
|
2529
|
-
"
|
|
2530
|
-
"
|
|
2985
|
+
"compile",
|
|
2986
|
+
"doc",
|
|
2987
|
+
"get.js"
|
|
2531
2988
|
]
|
|
2532
2989
|
},
|
|
2533
|
-
"compile:
|
|
2990
|
+
"compile:doc": {
|
|
2534
2991
|
"aliases": [],
|
|
2535
2992
|
"args": {
|
|
2536
2993
|
"face_id": {
|
|
@@ -2539,7 +2996,7 @@
|
|
|
2539
2996
|
"required": true
|
|
2540
2997
|
}
|
|
2541
2998
|
},
|
|
2542
|
-
"description": "
|
|
2999
|
+
"description": "Compile a document into a face (create → make in one step)",
|
|
2543
3000
|
"flags": {
|
|
2544
3001
|
"json": {
|
|
2545
3002
|
"description": "Format output as json.",
|
|
@@ -2573,16 +3030,50 @@
|
|
|
2573
3030
|
"type": "option"
|
|
2574
3031
|
},
|
|
2575
3032
|
"label": {
|
|
2576
|
-
"description": "
|
|
3033
|
+
"description": "Document label/title",
|
|
2577
3034
|
"name": "label",
|
|
2578
3035
|
"hasDynamicHelp": false,
|
|
2579
3036
|
"multiple": false,
|
|
2580
3037
|
"type": "option"
|
|
3038
|
+
},
|
|
3039
|
+
"content": {
|
|
3040
|
+
"description": "Inline text content",
|
|
3041
|
+
"name": "content",
|
|
3042
|
+
"hasDynamicHelp": false,
|
|
3043
|
+
"multiple": false,
|
|
3044
|
+
"type": "option"
|
|
3045
|
+
},
|
|
3046
|
+
"file": {
|
|
3047
|
+
"description": "Read content from file",
|
|
3048
|
+
"name": "file",
|
|
3049
|
+
"hasDynamicHelp": false,
|
|
3050
|
+
"multiple": false,
|
|
3051
|
+
"type": "option"
|
|
3052
|
+
},
|
|
3053
|
+
"perspective": {
|
|
3054
|
+
"description": "Perspective",
|
|
3055
|
+
"name": "perspective",
|
|
3056
|
+
"default": "first-person",
|
|
3057
|
+
"hasDynamicHelp": false,
|
|
3058
|
+
"multiple": false,
|
|
3059
|
+
"options": [
|
|
3060
|
+
"first-person",
|
|
3061
|
+
"third-person"
|
|
3062
|
+
],
|
|
3063
|
+
"type": "option"
|
|
3064
|
+
},
|
|
3065
|
+
"timeout": {
|
|
3066
|
+
"description": "Compile timeout in seconds (default: 600)",
|
|
3067
|
+
"name": "timeout",
|
|
3068
|
+
"default": 600,
|
|
3069
|
+
"hasDynamicHelp": false,
|
|
3070
|
+
"multiple": false,
|
|
3071
|
+
"type": "option"
|
|
2581
3072
|
}
|
|
2582
3073
|
},
|
|
2583
3074
|
"hasDynamicHelp": false,
|
|
2584
3075
|
"hiddenAliases": [],
|
|
2585
|
-
"id": "compile:
|
|
3076
|
+
"id": "compile:doc",
|
|
2586
3077
|
"pluginAlias": "faces-cli",
|
|
2587
3078
|
"pluginName": "faces-cli",
|
|
2588
3079
|
"pluginType": "core",
|
|
@@ -2593,11 +3084,11 @@
|
|
|
2593
3084
|
"dist",
|
|
2594
3085
|
"commands",
|
|
2595
3086
|
"compile",
|
|
2596
|
-
"
|
|
2597
|
-
"
|
|
3087
|
+
"doc",
|
|
3088
|
+
"index.js"
|
|
2598
3089
|
]
|
|
2599
3090
|
},
|
|
2600
|
-
"compile:
|
|
3091
|
+
"compile:doc:list": {
|
|
2601
3092
|
"aliases": [],
|
|
2602
3093
|
"args": {
|
|
2603
3094
|
"face_id": {
|
|
@@ -2606,7 +3097,7 @@
|
|
|
2606
3097
|
"required": true
|
|
2607
3098
|
}
|
|
2608
3099
|
},
|
|
2609
|
-
"description": "List
|
|
3100
|
+
"description": "List documents for a face",
|
|
2610
3101
|
"flags": {
|
|
2611
3102
|
"json": {
|
|
2612
3103
|
"description": "Format output as json.",
|
|
@@ -2642,7 +3133,7 @@
|
|
|
2642
3133
|
},
|
|
2643
3134
|
"hasDynamicHelp": false,
|
|
2644
3135
|
"hiddenAliases": [],
|
|
2645
|
-
"id": "compile:
|
|
3136
|
+
"id": "compile:doc:list",
|
|
2646
3137
|
"pluginAlias": "faces-cli",
|
|
2647
3138
|
"pluginName": "faces-cli",
|
|
2648
3139
|
"pluginType": "core",
|
|
@@ -2653,20 +3144,20 @@
|
|
|
2653
3144
|
"dist",
|
|
2654
3145
|
"commands",
|
|
2655
3146
|
"compile",
|
|
2656
|
-
"
|
|
3147
|
+
"doc",
|
|
2657
3148
|
"list.js"
|
|
2658
3149
|
]
|
|
2659
3150
|
},
|
|
2660
|
-
"compile:
|
|
3151
|
+
"compile:doc:make": {
|
|
2661
3152
|
"aliases": [],
|
|
2662
3153
|
"args": {
|
|
2663
|
-
"
|
|
2664
|
-
"description": "
|
|
2665
|
-
"name": "
|
|
3154
|
+
"doc_id": {
|
|
3155
|
+
"description": "Document ID",
|
|
3156
|
+
"name": "doc_id",
|
|
2666
3157
|
"required": true
|
|
2667
3158
|
}
|
|
2668
3159
|
},
|
|
2669
|
-
"description": "
|
|
3160
|
+
"description": "Compile an existing document (prepare + sync in one step)",
|
|
2670
3161
|
"flags": {
|
|
2671
3162
|
"json": {
|
|
2672
3163
|
"description": "Format output as json.",
|
|
@@ -2699,11 +3190,10 @@
|
|
|
2699
3190
|
"multiple": false,
|
|
2700
3191
|
"type": "option"
|
|
2701
3192
|
},
|
|
2702
|
-
"
|
|
2703
|
-
"
|
|
2704
|
-
"
|
|
2705
|
-
"
|
|
2706
|
-
"required": true,
|
|
3193
|
+
"timeout": {
|
|
3194
|
+
"description": "Compile timeout in seconds (default: 600)",
|
|
3195
|
+
"name": "timeout",
|
|
3196
|
+
"default": 600,
|
|
2707
3197
|
"hasDynamicHelp": false,
|
|
2708
3198
|
"multiple": false,
|
|
2709
3199
|
"type": "option"
|
|
@@ -2711,7 +3201,7 @@
|
|
|
2711
3201
|
},
|
|
2712
3202
|
"hasDynamicHelp": false,
|
|
2713
3203
|
"hiddenAliases": [],
|
|
2714
|
-
"id": "compile:
|
|
3204
|
+
"id": "compile:doc:make",
|
|
2715
3205
|
"pluginAlias": "faces-cli",
|
|
2716
3206
|
"pluginName": "faces-cli",
|
|
2717
3207
|
"pluginType": "core",
|
|
@@ -2722,20 +3212,20 @@
|
|
|
2722
3212
|
"dist",
|
|
2723
3213
|
"commands",
|
|
2724
3214
|
"compile",
|
|
2725
|
-
"
|
|
2726
|
-
"
|
|
3215
|
+
"doc",
|
|
3216
|
+
"make.js"
|
|
2727
3217
|
]
|
|
2728
3218
|
},
|
|
2729
|
-
"compile:thread:
|
|
3219
|
+
"compile:thread:create": {
|
|
2730
3220
|
"aliases": [],
|
|
2731
3221
|
"args": {
|
|
2732
|
-
"
|
|
2733
|
-
"description": "
|
|
2734
|
-
"name": "
|
|
3222
|
+
"face_id": {
|
|
3223
|
+
"description": "Face ID or username",
|
|
3224
|
+
"name": "face_id",
|
|
2735
3225
|
"required": true
|
|
2736
3226
|
}
|
|
2737
3227
|
},
|
|
2738
|
-
"description": "
|
|
3228
|
+
"description": "Start a new thread for a face",
|
|
2739
3229
|
"flags": {
|
|
2740
3230
|
"json": {
|
|
2741
3231
|
"description": "Format output as json.",
|
|
@@ -2767,11 +3257,18 @@
|
|
|
2767
3257
|
"hasDynamicHelp": false,
|
|
2768
3258
|
"multiple": false,
|
|
2769
3259
|
"type": "option"
|
|
3260
|
+
},
|
|
3261
|
+
"label": {
|
|
3262
|
+
"description": "Thread label",
|
|
3263
|
+
"name": "label",
|
|
3264
|
+
"hasDynamicHelp": false,
|
|
3265
|
+
"multiple": false,
|
|
3266
|
+
"type": "option"
|
|
2770
3267
|
}
|
|
2771
3268
|
},
|
|
2772
3269
|
"hasDynamicHelp": false,
|
|
2773
3270
|
"hiddenAliases": [],
|
|
2774
|
-
"id": "compile:thread:
|
|
3271
|
+
"id": "compile:thread:create",
|
|
2775
3272
|
"pluginAlias": "faces-cli",
|
|
2776
3273
|
"pluginName": "faces-cli",
|
|
2777
3274
|
"pluginType": "core",
|
|
@@ -2783,19 +3280,19 @@
|
|
|
2783
3280
|
"commands",
|
|
2784
3281
|
"compile",
|
|
2785
3282
|
"thread",
|
|
2786
|
-
"
|
|
3283
|
+
"create.js"
|
|
2787
3284
|
]
|
|
2788
3285
|
},
|
|
2789
|
-
"compile:
|
|
3286
|
+
"compile:thread:delete": {
|
|
2790
3287
|
"aliases": [],
|
|
2791
3288
|
"args": {
|
|
2792
|
-
"
|
|
2793
|
-
"description": "
|
|
2794
|
-
"name": "
|
|
3289
|
+
"thread_id": {
|
|
3290
|
+
"description": "Thread ID",
|
|
3291
|
+
"name": "thread_id",
|
|
2795
3292
|
"required": true
|
|
2796
3293
|
}
|
|
2797
3294
|
},
|
|
2798
|
-
"description": "
|
|
3295
|
+
"description": "Delete a thread",
|
|
2799
3296
|
"flags": {
|
|
2800
3297
|
"json": {
|
|
2801
3298
|
"description": "Format output as json.",
|
|
@@ -2828,31 +3325,16 @@
|
|
|
2828
3325
|
"multiple": false,
|
|
2829
3326
|
"type": "option"
|
|
2830
3327
|
},
|
|
2831
|
-
"
|
|
2832
|
-
"description": "
|
|
2833
|
-
"name": "
|
|
2834
|
-
"
|
|
2835
|
-
"
|
|
2836
|
-
"type": "option"
|
|
2837
|
-
},
|
|
2838
|
-
"content": {
|
|
2839
|
-
"description": "Inline text content",
|
|
2840
|
-
"name": "content",
|
|
2841
|
-
"hasDynamicHelp": false,
|
|
2842
|
-
"multiple": false,
|
|
2843
|
-
"type": "option"
|
|
2844
|
-
},
|
|
2845
|
-
"file": {
|
|
2846
|
-
"description": "Read content from file",
|
|
2847
|
-
"name": "file",
|
|
2848
|
-
"hasDynamicHelp": false,
|
|
2849
|
-
"multiple": false,
|
|
2850
|
-
"type": "option"
|
|
3328
|
+
"yes": {
|
|
3329
|
+
"description": "Skip confirmation",
|
|
3330
|
+
"name": "yes",
|
|
3331
|
+
"allowNo": false,
|
|
3332
|
+
"type": "boolean"
|
|
2851
3333
|
}
|
|
2852
3334
|
},
|
|
2853
3335
|
"hasDynamicHelp": false,
|
|
2854
3336
|
"hiddenAliases": [],
|
|
2855
|
-
"id": "compile:
|
|
3337
|
+
"id": "compile:thread:delete",
|
|
2856
3338
|
"pluginAlias": "faces-cli",
|
|
2857
3339
|
"pluginName": "faces-cli",
|
|
2858
3340
|
"pluginType": "core",
|
|
@@ -2863,20 +3345,20 @@
|
|
|
2863
3345
|
"dist",
|
|
2864
3346
|
"commands",
|
|
2865
3347
|
"compile",
|
|
2866
|
-
"
|
|
2867
|
-
"
|
|
3348
|
+
"thread",
|
|
3349
|
+
"delete.js"
|
|
2868
3350
|
]
|
|
2869
3351
|
},
|
|
2870
|
-
"compile:
|
|
3352
|
+
"compile:thread:edit": {
|
|
2871
3353
|
"aliases": [],
|
|
2872
3354
|
"args": {
|
|
2873
|
-
"
|
|
2874
|
-
"description": "
|
|
2875
|
-
"name": "
|
|
3355
|
+
"thread_id": {
|
|
3356
|
+
"description": "Thread ID",
|
|
3357
|
+
"name": "thread_id",
|
|
2876
3358
|
"required": true
|
|
2877
3359
|
}
|
|
2878
3360
|
},
|
|
2879
|
-
"description": "
|
|
3361
|
+
"description": "Edit a thread (label)",
|
|
2880
3362
|
"flags": {
|
|
2881
3363
|
"json": {
|
|
2882
3364
|
"description": "Format output as json.",
|
|
@@ -2908,11 +3390,19 @@
|
|
|
2908
3390
|
"hasDynamicHelp": false,
|
|
2909
3391
|
"multiple": false,
|
|
2910
3392
|
"type": "option"
|
|
3393
|
+
},
|
|
3394
|
+
"label": {
|
|
3395
|
+
"description": "New thread label",
|
|
3396
|
+
"name": "label",
|
|
3397
|
+
"required": true,
|
|
3398
|
+
"hasDynamicHelp": false,
|
|
3399
|
+
"multiple": false,
|
|
3400
|
+
"type": "option"
|
|
2911
3401
|
}
|
|
2912
3402
|
},
|
|
2913
3403
|
"hasDynamicHelp": false,
|
|
2914
3404
|
"hiddenAliases": [],
|
|
2915
|
-
"id": "compile:
|
|
3405
|
+
"id": "compile:thread:edit",
|
|
2916
3406
|
"pluginAlias": "faces-cli",
|
|
2917
3407
|
"pluginName": "faces-cli",
|
|
2918
3408
|
"pluginType": "core",
|
|
@@ -2923,20 +3413,20 @@
|
|
|
2923
3413
|
"dist",
|
|
2924
3414
|
"commands",
|
|
2925
3415
|
"compile",
|
|
2926
|
-
"
|
|
2927
|
-
"
|
|
3416
|
+
"thread",
|
|
3417
|
+
"edit.js"
|
|
2928
3418
|
]
|
|
2929
3419
|
},
|
|
2930
|
-
"compile:
|
|
3420
|
+
"compile:thread:get": {
|
|
2931
3421
|
"aliases": [],
|
|
2932
3422
|
"args": {
|
|
2933
|
-
"
|
|
2934
|
-
"description": "
|
|
2935
|
-
"name": "
|
|
3423
|
+
"thread_id": {
|
|
3424
|
+
"description": "Thread ID",
|
|
3425
|
+
"name": "thread_id",
|
|
2936
3426
|
"required": true
|
|
2937
3427
|
}
|
|
2938
3428
|
},
|
|
2939
|
-
"description": "Get a
|
|
3429
|
+
"description": "Get a thread by ID",
|
|
2940
3430
|
"flags": {
|
|
2941
3431
|
"json": {
|
|
2942
3432
|
"description": "Format output as json.",
|
|
@@ -2972,7 +3462,7 @@
|
|
|
2972
3462
|
},
|
|
2973
3463
|
"hasDynamicHelp": false,
|
|
2974
3464
|
"hiddenAliases": [],
|
|
2975
|
-
"id": "compile:
|
|
3465
|
+
"id": "compile:thread:get",
|
|
2976
3466
|
"pluginAlias": "faces-cli",
|
|
2977
3467
|
"pluginName": "faces-cli",
|
|
2978
3468
|
"pluginType": "core",
|
|
@@ -2983,11 +3473,11 @@
|
|
|
2983
3473
|
"dist",
|
|
2984
3474
|
"commands",
|
|
2985
3475
|
"compile",
|
|
2986
|
-
"
|
|
3476
|
+
"thread",
|
|
2987
3477
|
"get.js"
|
|
2988
3478
|
]
|
|
2989
3479
|
},
|
|
2990
|
-
"compile:
|
|
3480
|
+
"compile:thread:list": {
|
|
2991
3481
|
"aliases": [],
|
|
2992
3482
|
"args": {
|
|
2993
3483
|
"face_id": {
|
|
@@ -2996,7 +3486,7 @@
|
|
|
2996
3486
|
"required": true
|
|
2997
3487
|
}
|
|
2998
3488
|
},
|
|
2999
|
-
"description": "List
|
|
3489
|
+
"description": "List threads for a face",
|
|
3000
3490
|
"flags": {
|
|
3001
3491
|
"json": {
|
|
3002
3492
|
"description": "Format output as json.",
|
|
@@ -3032,7 +3522,7 @@
|
|
|
3032
3522
|
},
|
|
3033
3523
|
"hasDynamicHelp": false,
|
|
3034
3524
|
"hiddenAliases": [],
|
|
3035
|
-
"id": "compile:
|
|
3525
|
+
"id": "compile:thread:list",
|
|
3036
3526
|
"pluginAlias": "faces-cli",
|
|
3037
3527
|
"pluginName": "faces-cli",
|
|
3038
3528
|
"pluginType": "core",
|
|
@@ -3043,20 +3533,20 @@
|
|
|
3043
3533
|
"dist",
|
|
3044
3534
|
"commands",
|
|
3045
3535
|
"compile",
|
|
3046
|
-
"
|
|
3536
|
+
"thread",
|
|
3047
3537
|
"list.js"
|
|
3048
3538
|
]
|
|
3049
3539
|
},
|
|
3050
|
-
"compile:
|
|
3540
|
+
"compile:thread:message": {
|
|
3051
3541
|
"aliases": [],
|
|
3052
3542
|
"args": {
|
|
3053
|
-
"
|
|
3054
|
-
"description": "
|
|
3055
|
-
"name": "
|
|
3543
|
+
"thread_id": {
|
|
3544
|
+
"description": "Thread ID",
|
|
3545
|
+
"name": "thread_id",
|
|
3056
3546
|
"required": true
|
|
3057
3547
|
}
|
|
3058
3548
|
},
|
|
3059
|
-
"description": "
|
|
3549
|
+
"description": "Send a user message to a thread",
|
|
3060
3550
|
"flags": {
|
|
3061
3551
|
"json": {
|
|
3062
3552
|
"description": "Format output as json.",
|
|
@@ -3088,11 +3578,20 @@
|
|
|
3088
3578
|
"hasDynamicHelp": false,
|
|
3089
3579
|
"multiple": false,
|
|
3090
3580
|
"type": "option"
|
|
3581
|
+
},
|
|
3582
|
+
"message": {
|
|
3583
|
+
"char": "m",
|
|
3584
|
+
"description": "User message to append",
|
|
3585
|
+
"name": "message",
|
|
3586
|
+
"required": true,
|
|
3587
|
+
"hasDynamicHelp": false,
|
|
3588
|
+
"multiple": false,
|
|
3589
|
+
"type": "option"
|
|
3091
3590
|
}
|
|
3092
3591
|
},
|
|
3093
3592
|
"hasDynamicHelp": false,
|
|
3094
3593
|
"hiddenAliases": [],
|
|
3095
|
-
"id": "compile:
|
|
3594
|
+
"id": "compile:thread:message",
|
|
3096
3595
|
"pluginAlias": "faces-cli",
|
|
3097
3596
|
"pluginName": "faces-cli",
|
|
3098
3597
|
"pluginType": "core",
|
|
@@ -3103,20 +3602,20 @@
|
|
|
3103
3602
|
"dist",
|
|
3104
3603
|
"commands",
|
|
3105
3604
|
"compile",
|
|
3106
|
-
"
|
|
3107
|
-
"
|
|
3605
|
+
"thread",
|
|
3606
|
+
"message.js"
|
|
3108
3607
|
]
|
|
3109
3608
|
},
|
|
3110
|
-
"compile:
|
|
3609
|
+
"compile:thread:sync": {
|
|
3111
3610
|
"aliases": [],
|
|
3112
3611
|
"args": {
|
|
3113
|
-
"
|
|
3114
|
-
"description": "
|
|
3115
|
-
"name": "
|
|
3612
|
+
"thread_id": {
|
|
3613
|
+
"description": "Thread ID",
|
|
3614
|
+
"name": "thread_id",
|
|
3116
3615
|
"required": true
|
|
3117
3616
|
}
|
|
3118
3617
|
},
|
|
3119
|
-
"description": "
|
|
3618
|
+
"description": "Archive and sync a thread into a face",
|
|
3120
3619
|
"flags": {
|
|
3121
3620
|
"json": {
|
|
3122
3621
|
"description": "Format output as json.",
|
|
@@ -3148,17 +3647,11 @@
|
|
|
3148
3647
|
"hasDynamicHelp": false,
|
|
3149
3648
|
"multiple": false,
|
|
3150
3649
|
"type": "option"
|
|
3151
|
-
},
|
|
3152
|
-
"yes": {
|
|
3153
|
-
"description": "Skip confirmation (quota will be charged)",
|
|
3154
|
-
"name": "yes",
|
|
3155
|
-
"allowNo": false,
|
|
3156
|
-
"type": "boolean"
|
|
3157
3650
|
}
|
|
3158
3651
|
},
|
|
3159
3652
|
"hasDynamicHelp": false,
|
|
3160
3653
|
"hiddenAliases": [],
|
|
3161
|
-
"id": "compile:
|
|
3654
|
+
"id": "compile:thread:sync",
|
|
3162
3655
|
"pluginAlias": "faces-cli",
|
|
3163
3656
|
"pluginName": "faces-cli",
|
|
3164
3657
|
"pluginType": "core",
|
|
@@ -3169,10 +3662,10 @@
|
|
|
3169
3662
|
"dist",
|
|
3170
3663
|
"commands",
|
|
3171
3664
|
"compile",
|
|
3172
|
-
"
|
|
3665
|
+
"thread",
|
|
3173
3666
|
"sync.js"
|
|
3174
3667
|
]
|
|
3175
3668
|
}
|
|
3176
3669
|
},
|
|
3177
|
-
"version": "1.
|
|
3670
|
+
"version": "1.4.0"
|
|
3178
3671
|
}
|