@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
|
@@ -581,6 +581,40 @@ export declare const CLI_SCHEMA_REGISTRY_DATA: readonly [{
|
|
|
581
581
|
readonly maxLength: 65536;
|
|
582
582
|
readonly type: "string";
|
|
583
583
|
};
|
|
584
|
+
readonly model: {
|
|
585
|
+
readonly additionalProperties: false;
|
|
586
|
+
readonly type: "object";
|
|
587
|
+
readonly required: readonly ["ref"];
|
|
588
|
+
readonly properties: {
|
|
589
|
+
readonly ref: {
|
|
590
|
+
readonly enum: readonly ["anthropic/claude-opus-4-6", "anthropic/claude-opus-4-8", "anthropic/claude-opus-4-7", "anthropic/claude-sonnet-4-6", "anthropic/claude-haiku-4-5", "openai/gpt-5.5", "openai/gpt-5.4", "openai/gpt-5.4-mini", "google/gemini-3.5-flash", "google/gemini-3.1-pro-preview", "xai/grok-4.3", "moonshotai/kimi-k2.6", "deepseek/deepseek-v4-pro", "deepseek/deepseek-v4-flash", "zai/glm-5.1", "zai/glm-4.7", "minimax/MiniMax-M3", "mistral/mistral-medium-3.5", "mistral/mistral-large-2512", "groq/meta-llama/llama-4-scout-17b-16e-instruct", "openrouter/meta-llama/llama-4-scout", "openrouter/qwen/qwen3.7-max", "openrouter/qwen/qwen3.6-35b-a3b", "openrouter/qwen/qwen3.6-27b", "google/gemma-4-31b-it"];
|
|
591
|
+
readonly minLength: 1;
|
|
592
|
+
readonly maxLength: 256;
|
|
593
|
+
readonly type: "string";
|
|
594
|
+
};
|
|
595
|
+
readonly thinkingLevel: {
|
|
596
|
+
readonly anyOf: readonly [{
|
|
597
|
+
readonly const: "off";
|
|
598
|
+
readonly type: "string";
|
|
599
|
+
}, {
|
|
600
|
+
readonly const: "minimal";
|
|
601
|
+
readonly type: "string";
|
|
602
|
+
}, {
|
|
603
|
+
readonly const: "low";
|
|
604
|
+
readonly type: "string";
|
|
605
|
+
}, {
|
|
606
|
+
readonly const: "medium";
|
|
607
|
+
readonly type: "string";
|
|
608
|
+
}, {
|
|
609
|
+
readonly const: "high";
|
|
610
|
+
readonly type: "string";
|
|
611
|
+
}, {
|
|
612
|
+
readonly const: "xhigh";
|
|
613
|
+
readonly type: "string";
|
|
614
|
+
}];
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
};
|
|
584
618
|
readonly limits: {
|
|
585
619
|
readonly additionalProperties: false;
|
|
586
620
|
readonly type: "object";
|
|
@@ -601,12 +635,177 @@ export declare const CLI_SCHEMA_REGISTRY_DATA: readonly [{
|
|
|
601
635
|
};
|
|
602
636
|
readonly extensions: {
|
|
603
637
|
readonly minItems: 1;
|
|
604
|
-
readonly uniqueItems: true;
|
|
605
638
|
readonly type: "array";
|
|
606
639
|
readonly items: {
|
|
607
|
-
readonly
|
|
608
|
-
|
|
609
|
-
|
|
640
|
+
readonly anyOf: readonly [{
|
|
641
|
+
readonly minLength: 1;
|
|
642
|
+
readonly maxLength: 128;
|
|
643
|
+
readonly type: "string";
|
|
644
|
+
}, {
|
|
645
|
+
readonly additionalProperties: false;
|
|
646
|
+
readonly type: "object";
|
|
647
|
+
readonly required: readonly ["name", "tools"];
|
|
648
|
+
readonly properties: {
|
|
649
|
+
readonly name: {
|
|
650
|
+
readonly minLength: 1;
|
|
651
|
+
readonly maxLength: 128;
|
|
652
|
+
readonly type: "string";
|
|
653
|
+
};
|
|
654
|
+
readonly tools: {
|
|
655
|
+
readonly anyOf: readonly [{
|
|
656
|
+
readonly const: "all";
|
|
657
|
+
readonly type: "string";
|
|
658
|
+
}, {
|
|
659
|
+
readonly minItems: 1;
|
|
660
|
+
readonly uniqueItems: true;
|
|
661
|
+
readonly type: "array";
|
|
662
|
+
readonly items: {
|
|
663
|
+
readonly minLength: 1;
|
|
664
|
+
readonly maxLength: 128;
|
|
665
|
+
readonly type: "string";
|
|
666
|
+
};
|
|
667
|
+
}];
|
|
668
|
+
};
|
|
669
|
+
readonly skills: {
|
|
670
|
+
readonly anyOf: readonly [{
|
|
671
|
+
readonly const: "all";
|
|
672
|
+
readonly type: "string";
|
|
673
|
+
}, {
|
|
674
|
+
readonly minItems: 1;
|
|
675
|
+
readonly uniqueItems: true;
|
|
676
|
+
readonly type: "array";
|
|
677
|
+
readonly items: {
|
|
678
|
+
readonly minLength: 1;
|
|
679
|
+
readonly maxLength: 128;
|
|
680
|
+
readonly type: "string";
|
|
681
|
+
};
|
|
682
|
+
}];
|
|
683
|
+
};
|
|
684
|
+
};
|
|
685
|
+
}, {
|
|
686
|
+
readonly additionalProperties: false;
|
|
687
|
+
readonly type: "object";
|
|
688
|
+
readonly required: readonly ["name", "skills"];
|
|
689
|
+
readonly properties: {
|
|
690
|
+
readonly name: {
|
|
691
|
+
readonly minLength: 1;
|
|
692
|
+
readonly maxLength: 128;
|
|
693
|
+
readonly type: "string";
|
|
694
|
+
};
|
|
695
|
+
readonly tools: {
|
|
696
|
+
readonly anyOf: readonly [{
|
|
697
|
+
readonly const: "all";
|
|
698
|
+
readonly type: "string";
|
|
699
|
+
}, {
|
|
700
|
+
readonly minItems: 1;
|
|
701
|
+
readonly uniqueItems: true;
|
|
702
|
+
readonly type: "array";
|
|
703
|
+
readonly items: {
|
|
704
|
+
readonly minLength: 1;
|
|
705
|
+
readonly maxLength: 128;
|
|
706
|
+
readonly type: "string";
|
|
707
|
+
};
|
|
708
|
+
}];
|
|
709
|
+
};
|
|
710
|
+
readonly skills: {
|
|
711
|
+
readonly anyOf: readonly [{
|
|
712
|
+
readonly const: "all";
|
|
713
|
+
readonly type: "string";
|
|
714
|
+
}, {
|
|
715
|
+
readonly minItems: 1;
|
|
716
|
+
readonly uniqueItems: true;
|
|
717
|
+
readonly type: "array";
|
|
718
|
+
readonly items: {
|
|
719
|
+
readonly minLength: 1;
|
|
720
|
+
readonly maxLength: 128;
|
|
721
|
+
readonly type: "string";
|
|
722
|
+
};
|
|
723
|
+
}];
|
|
724
|
+
};
|
|
725
|
+
};
|
|
726
|
+
}, {
|
|
727
|
+
readonly additionalProperties: false;
|
|
728
|
+
readonly type: "object";
|
|
729
|
+
readonly required: readonly ["install", "tools"];
|
|
730
|
+
readonly properties: {
|
|
731
|
+
readonly install: {
|
|
732
|
+
readonly minLength: 1;
|
|
733
|
+
readonly maxLength: 128;
|
|
734
|
+
readonly type: "string";
|
|
735
|
+
};
|
|
736
|
+
readonly tools: {
|
|
737
|
+
readonly anyOf: readonly [{
|
|
738
|
+
readonly const: "all";
|
|
739
|
+
readonly type: "string";
|
|
740
|
+
}, {
|
|
741
|
+
readonly minItems: 1;
|
|
742
|
+
readonly uniqueItems: true;
|
|
743
|
+
readonly type: "array";
|
|
744
|
+
readonly items: {
|
|
745
|
+
readonly minLength: 1;
|
|
746
|
+
readonly maxLength: 128;
|
|
747
|
+
readonly type: "string";
|
|
748
|
+
};
|
|
749
|
+
}];
|
|
750
|
+
};
|
|
751
|
+
readonly skills: {
|
|
752
|
+
readonly anyOf: readonly [{
|
|
753
|
+
readonly const: "all";
|
|
754
|
+
readonly type: "string";
|
|
755
|
+
}, {
|
|
756
|
+
readonly minItems: 1;
|
|
757
|
+
readonly uniqueItems: true;
|
|
758
|
+
readonly type: "array";
|
|
759
|
+
readonly items: {
|
|
760
|
+
readonly minLength: 1;
|
|
761
|
+
readonly maxLength: 128;
|
|
762
|
+
readonly type: "string";
|
|
763
|
+
};
|
|
764
|
+
}];
|
|
765
|
+
};
|
|
766
|
+
};
|
|
767
|
+
}, {
|
|
768
|
+
readonly additionalProperties: false;
|
|
769
|
+
readonly type: "object";
|
|
770
|
+
readonly required: readonly ["install", "skills"];
|
|
771
|
+
readonly properties: {
|
|
772
|
+
readonly install: {
|
|
773
|
+
readonly minLength: 1;
|
|
774
|
+
readonly maxLength: 128;
|
|
775
|
+
readonly type: "string";
|
|
776
|
+
};
|
|
777
|
+
readonly tools: {
|
|
778
|
+
readonly anyOf: readonly [{
|
|
779
|
+
readonly const: "all";
|
|
780
|
+
readonly type: "string";
|
|
781
|
+
}, {
|
|
782
|
+
readonly minItems: 1;
|
|
783
|
+
readonly uniqueItems: true;
|
|
784
|
+
readonly type: "array";
|
|
785
|
+
readonly items: {
|
|
786
|
+
readonly minLength: 1;
|
|
787
|
+
readonly maxLength: 128;
|
|
788
|
+
readonly type: "string";
|
|
789
|
+
};
|
|
790
|
+
}];
|
|
791
|
+
};
|
|
792
|
+
readonly skills: {
|
|
793
|
+
readonly anyOf: readonly [{
|
|
794
|
+
readonly const: "all";
|
|
795
|
+
readonly type: "string";
|
|
796
|
+
}, {
|
|
797
|
+
readonly minItems: 1;
|
|
798
|
+
readonly uniqueItems: true;
|
|
799
|
+
readonly type: "array";
|
|
800
|
+
readonly items: {
|
|
801
|
+
readonly minLength: 1;
|
|
802
|
+
readonly maxLength: 128;
|
|
803
|
+
readonly type: "string";
|
|
804
|
+
};
|
|
805
|
+
}];
|
|
806
|
+
};
|
|
807
|
+
};
|
|
808
|
+
}];
|
|
610
809
|
};
|
|
611
810
|
};
|
|
612
811
|
readonly output: {
|
|
@@ -3022,26 +3221,49 @@ export declare const CLI_SCHEMA_REGISTRY_DATA: readonly [{
|
|
|
3022
3221
|
readonly type: "object";
|
|
3023
3222
|
readonly patternProperties: {
|
|
3024
3223
|
readonly "^(.*)$": {
|
|
3025
|
-
readonly
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
readonly
|
|
3030
|
-
readonly
|
|
3031
|
-
|
|
3032
|
-
|
|
3224
|
+
readonly anyOf: readonly [{
|
|
3225
|
+
readonly additionalProperties: false;
|
|
3226
|
+
readonly type: "object";
|
|
3227
|
+
readonly required: readonly ["name", "functions"];
|
|
3228
|
+
readonly properties: {
|
|
3229
|
+
readonly name: {
|
|
3230
|
+
readonly minLength: 1;
|
|
3231
|
+
readonly maxLength: 128;
|
|
3232
|
+
readonly type: "string";
|
|
3233
|
+
};
|
|
3234
|
+
readonly functions: {
|
|
3235
|
+
readonly minItems: 1;
|
|
3236
|
+
readonly uniqueItems: true;
|
|
3237
|
+
readonly type: "array";
|
|
3238
|
+
readonly items: {
|
|
3239
|
+
readonly minLength: 1;
|
|
3240
|
+
readonly maxLength: 128;
|
|
3241
|
+
readonly type: "string";
|
|
3242
|
+
};
|
|
3243
|
+
};
|
|
3033
3244
|
};
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3245
|
+
}, {
|
|
3246
|
+
readonly additionalProperties: false;
|
|
3247
|
+
readonly type: "object";
|
|
3248
|
+
readonly required: readonly ["install", "functions"];
|
|
3249
|
+
readonly properties: {
|
|
3250
|
+
readonly install: {
|
|
3039
3251
|
readonly minLength: 1;
|
|
3040
3252
|
readonly maxLength: 128;
|
|
3041
3253
|
readonly type: "string";
|
|
3042
3254
|
};
|
|
3255
|
+
readonly functions: {
|
|
3256
|
+
readonly minItems: 1;
|
|
3257
|
+
readonly uniqueItems: true;
|
|
3258
|
+
readonly type: "array";
|
|
3259
|
+
readonly items: {
|
|
3260
|
+
readonly minLength: 1;
|
|
3261
|
+
readonly maxLength: 128;
|
|
3262
|
+
readonly type: "string";
|
|
3263
|
+
};
|
|
3264
|
+
};
|
|
3043
3265
|
};
|
|
3044
|
-
};
|
|
3266
|
+
}];
|
|
3045
3267
|
};
|
|
3046
3268
|
};
|
|
3047
3269
|
};
|