@kora-platform/cli 0.8.2-rc4 → 0.9.0-rc3
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/api-client.d.ts +29 -36
- package/dist/api-client.js +12 -15
- package/dist/api-types.d.ts +64 -15
- package/dist/command-registry.js +95 -60
- package/dist/commands.js +3 -4
- package/dist/extension-commands.js +185 -111
- package/dist/files.d.ts +1 -0
- package/dist/files.js +33 -17
- package/dist/schema-registry-data.d.ts +240 -18
- package/dist/schema-registry-data.js +329 -24
- package/package.json +1 -1
|
@@ -690,6 +690,75 @@ export const CLI_SCHEMA_REGISTRY_DATA = [
|
|
|
690
690
|
"maxLength": 65536,
|
|
691
691
|
"type": "string"
|
|
692
692
|
},
|
|
693
|
+
"model": {
|
|
694
|
+
"additionalProperties": false,
|
|
695
|
+
"type": "object",
|
|
696
|
+
"required": [
|
|
697
|
+
"ref"
|
|
698
|
+
],
|
|
699
|
+
"properties": {
|
|
700
|
+
"ref": {
|
|
701
|
+
"enum": [
|
|
702
|
+
"anthropic/claude-opus-4-6",
|
|
703
|
+
"anthropic/claude-opus-4-8",
|
|
704
|
+
"anthropic/claude-opus-4-7",
|
|
705
|
+
"anthropic/claude-sonnet-4-6",
|
|
706
|
+
"anthropic/claude-haiku-4-5",
|
|
707
|
+
"openai/gpt-5.5",
|
|
708
|
+
"openai/gpt-5.4",
|
|
709
|
+
"openai/gpt-5.4-mini",
|
|
710
|
+
"google/gemini-3.5-flash",
|
|
711
|
+
"google/gemini-3.1-pro-preview",
|
|
712
|
+
"xai/grok-4.3",
|
|
713
|
+
"moonshotai/kimi-k2.6",
|
|
714
|
+
"deepseek/deepseek-v4-pro",
|
|
715
|
+
"deepseek/deepseek-v4-flash",
|
|
716
|
+
"zai/glm-5.1",
|
|
717
|
+
"zai/glm-4.7",
|
|
718
|
+
"minimax/MiniMax-M3",
|
|
719
|
+
"mistral/mistral-medium-3.5",
|
|
720
|
+
"mistral/mistral-large-2512",
|
|
721
|
+
"groq/meta-llama/llama-4-scout-17b-16e-instruct",
|
|
722
|
+
"openrouter/meta-llama/llama-4-scout",
|
|
723
|
+
"openrouter/qwen/qwen3.7-max",
|
|
724
|
+
"openrouter/qwen/qwen3.6-35b-a3b",
|
|
725
|
+
"openrouter/qwen/qwen3.6-27b",
|
|
726
|
+
"google/gemma-4-31b-it"
|
|
727
|
+
],
|
|
728
|
+
"minLength": 1,
|
|
729
|
+
"maxLength": 256,
|
|
730
|
+
"type": "string"
|
|
731
|
+
},
|
|
732
|
+
"thinkingLevel": {
|
|
733
|
+
"anyOf": [
|
|
734
|
+
{
|
|
735
|
+
"const": "off",
|
|
736
|
+
"type": "string"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"const": "minimal",
|
|
740
|
+
"type": "string"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"const": "low",
|
|
744
|
+
"type": "string"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"const": "medium",
|
|
748
|
+
"type": "string"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"const": "high",
|
|
752
|
+
"type": "string"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"const": "xhigh",
|
|
756
|
+
"type": "string"
|
|
757
|
+
}
|
|
758
|
+
]
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
},
|
|
693
762
|
"limits": {
|
|
694
763
|
"additionalProperties": false,
|
|
695
764
|
"type": "object",
|
|
@@ -710,12 +779,219 @@ export const CLI_SCHEMA_REGISTRY_DATA = [
|
|
|
710
779
|
},
|
|
711
780
|
"extensions": {
|
|
712
781
|
"minItems": 1,
|
|
713
|
-
"uniqueItems": true,
|
|
714
782
|
"type": "array",
|
|
715
783
|
"items": {
|
|
716
|
-
"
|
|
717
|
-
|
|
718
|
-
|
|
784
|
+
"anyOf": [
|
|
785
|
+
{
|
|
786
|
+
"minLength": 1,
|
|
787
|
+
"maxLength": 128,
|
|
788
|
+
"type": "string"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"additionalProperties": false,
|
|
792
|
+
"type": "object",
|
|
793
|
+
"required": [
|
|
794
|
+
"name",
|
|
795
|
+
"tools"
|
|
796
|
+
],
|
|
797
|
+
"properties": {
|
|
798
|
+
"name": {
|
|
799
|
+
"minLength": 1,
|
|
800
|
+
"maxLength": 128,
|
|
801
|
+
"type": "string"
|
|
802
|
+
},
|
|
803
|
+
"tools": {
|
|
804
|
+
"anyOf": [
|
|
805
|
+
{
|
|
806
|
+
"const": "all",
|
|
807
|
+
"type": "string"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"minItems": 1,
|
|
811
|
+
"uniqueItems": true,
|
|
812
|
+
"type": "array",
|
|
813
|
+
"items": {
|
|
814
|
+
"minLength": 1,
|
|
815
|
+
"maxLength": 128,
|
|
816
|
+
"type": "string"
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
]
|
|
820
|
+
},
|
|
821
|
+
"skills": {
|
|
822
|
+
"anyOf": [
|
|
823
|
+
{
|
|
824
|
+
"const": "all",
|
|
825
|
+
"type": "string"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"minItems": 1,
|
|
829
|
+
"uniqueItems": true,
|
|
830
|
+
"type": "array",
|
|
831
|
+
"items": {
|
|
832
|
+
"minLength": 1,
|
|
833
|
+
"maxLength": 128,
|
|
834
|
+
"type": "string"
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
]
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"additionalProperties": false,
|
|
843
|
+
"type": "object",
|
|
844
|
+
"required": [
|
|
845
|
+
"name",
|
|
846
|
+
"skills"
|
|
847
|
+
],
|
|
848
|
+
"properties": {
|
|
849
|
+
"name": {
|
|
850
|
+
"minLength": 1,
|
|
851
|
+
"maxLength": 128,
|
|
852
|
+
"type": "string"
|
|
853
|
+
},
|
|
854
|
+
"tools": {
|
|
855
|
+
"anyOf": [
|
|
856
|
+
{
|
|
857
|
+
"const": "all",
|
|
858
|
+
"type": "string"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"minItems": 1,
|
|
862
|
+
"uniqueItems": true,
|
|
863
|
+
"type": "array",
|
|
864
|
+
"items": {
|
|
865
|
+
"minLength": 1,
|
|
866
|
+
"maxLength": 128,
|
|
867
|
+
"type": "string"
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
"skills": {
|
|
873
|
+
"anyOf": [
|
|
874
|
+
{
|
|
875
|
+
"const": "all",
|
|
876
|
+
"type": "string"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"minItems": 1,
|
|
880
|
+
"uniqueItems": true,
|
|
881
|
+
"type": "array",
|
|
882
|
+
"items": {
|
|
883
|
+
"minLength": 1,
|
|
884
|
+
"maxLength": 128,
|
|
885
|
+
"type": "string"
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
]
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"additionalProperties": false,
|
|
894
|
+
"type": "object",
|
|
895
|
+
"required": [
|
|
896
|
+
"install",
|
|
897
|
+
"tools"
|
|
898
|
+
],
|
|
899
|
+
"properties": {
|
|
900
|
+
"install": {
|
|
901
|
+
"minLength": 1,
|
|
902
|
+
"maxLength": 128,
|
|
903
|
+
"type": "string"
|
|
904
|
+
},
|
|
905
|
+
"tools": {
|
|
906
|
+
"anyOf": [
|
|
907
|
+
{
|
|
908
|
+
"const": "all",
|
|
909
|
+
"type": "string"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"minItems": 1,
|
|
913
|
+
"uniqueItems": true,
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"minLength": 1,
|
|
917
|
+
"maxLength": 128,
|
|
918
|
+
"type": "string"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
]
|
|
922
|
+
},
|
|
923
|
+
"skills": {
|
|
924
|
+
"anyOf": [
|
|
925
|
+
{
|
|
926
|
+
"const": "all",
|
|
927
|
+
"type": "string"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"minItems": 1,
|
|
931
|
+
"uniqueItems": true,
|
|
932
|
+
"type": "array",
|
|
933
|
+
"items": {
|
|
934
|
+
"minLength": 1,
|
|
935
|
+
"maxLength": 128,
|
|
936
|
+
"type": "string"
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
]
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"additionalProperties": false,
|
|
945
|
+
"type": "object",
|
|
946
|
+
"required": [
|
|
947
|
+
"install",
|
|
948
|
+
"skills"
|
|
949
|
+
],
|
|
950
|
+
"properties": {
|
|
951
|
+
"install": {
|
|
952
|
+
"minLength": 1,
|
|
953
|
+
"maxLength": 128,
|
|
954
|
+
"type": "string"
|
|
955
|
+
},
|
|
956
|
+
"tools": {
|
|
957
|
+
"anyOf": [
|
|
958
|
+
{
|
|
959
|
+
"const": "all",
|
|
960
|
+
"type": "string"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"minItems": 1,
|
|
964
|
+
"uniqueItems": true,
|
|
965
|
+
"type": "array",
|
|
966
|
+
"items": {
|
|
967
|
+
"minLength": 1,
|
|
968
|
+
"maxLength": 128,
|
|
969
|
+
"type": "string"
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
]
|
|
973
|
+
},
|
|
974
|
+
"skills": {
|
|
975
|
+
"anyOf": [
|
|
976
|
+
{
|
|
977
|
+
"const": "all",
|
|
978
|
+
"type": "string"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"minItems": 1,
|
|
982
|
+
"uniqueItems": true,
|
|
983
|
+
"type": "array",
|
|
984
|
+
"items": {
|
|
985
|
+
"minLength": 1,
|
|
986
|
+
"maxLength": 128,
|
|
987
|
+
"type": "string"
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
]
|
|
991
|
+
}
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
]
|
|
719
995
|
}
|
|
720
996
|
},
|
|
721
997
|
"output": {
|
|
@@ -3575,29 +3851,58 @@ export const CLI_SCHEMA_REGISTRY_DATA = [
|
|
|
3575
3851
|
"type": "object",
|
|
3576
3852
|
"patternProperties": {
|
|
3577
3853
|
"^(.*)$": {
|
|
3578
|
-
"
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
"
|
|
3587
|
-
|
|
3588
|
-
|
|
3854
|
+
"anyOf": [
|
|
3855
|
+
{
|
|
3856
|
+
"additionalProperties": false,
|
|
3857
|
+
"type": "object",
|
|
3858
|
+
"required": [
|
|
3859
|
+
"name",
|
|
3860
|
+
"functions"
|
|
3861
|
+
],
|
|
3862
|
+
"properties": {
|
|
3863
|
+
"name": {
|
|
3864
|
+
"minLength": 1,
|
|
3865
|
+
"maxLength": 128,
|
|
3866
|
+
"type": "string"
|
|
3867
|
+
},
|
|
3868
|
+
"functions": {
|
|
3869
|
+
"minItems": 1,
|
|
3870
|
+
"uniqueItems": true,
|
|
3871
|
+
"type": "array",
|
|
3872
|
+
"items": {
|
|
3873
|
+
"minLength": 1,
|
|
3874
|
+
"maxLength": 128,
|
|
3875
|
+
"type": "string"
|
|
3876
|
+
}
|
|
3877
|
+
}
|
|
3878
|
+
}
|
|
3589
3879
|
},
|
|
3590
|
-
|
|
3591
|
-
"
|
|
3592
|
-
"
|
|
3593
|
-
"
|
|
3594
|
-
|
|
3595
|
-
"
|
|
3596
|
-
|
|
3597
|
-
|
|
3880
|
+
{
|
|
3881
|
+
"additionalProperties": false,
|
|
3882
|
+
"type": "object",
|
|
3883
|
+
"required": [
|
|
3884
|
+
"install",
|
|
3885
|
+
"functions"
|
|
3886
|
+
],
|
|
3887
|
+
"properties": {
|
|
3888
|
+
"install": {
|
|
3889
|
+
"minLength": 1,
|
|
3890
|
+
"maxLength": 128,
|
|
3891
|
+
"type": "string"
|
|
3892
|
+
},
|
|
3893
|
+
"functions": {
|
|
3894
|
+
"minItems": 1,
|
|
3895
|
+
"uniqueItems": true,
|
|
3896
|
+
"type": "array",
|
|
3897
|
+
"items": {
|
|
3898
|
+
"minLength": 1,
|
|
3899
|
+
"maxLength": 128,
|
|
3900
|
+
"type": "string"
|
|
3901
|
+
}
|
|
3902
|
+
}
|
|
3598
3903
|
}
|
|
3599
3904
|
}
|
|
3600
|
-
|
|
3905
|
+
]
|
|
3601
3906
|
}
|
|
3602
3907
|
}
|
|
3603
3908
|
}
|