@vibe-agent-toolkit/resources 0.1.39-rc.6 → 0.1.39-rc.7
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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/schemas/project-config.d.ts +2352 -0
- package/dist/schemas/project-config.d.ts.map +1 -1
- package/dist/schemas/project-config.js +50 -0
- package/dist/schemas/project-config.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +4 -0
- package/src/schemas/project-config.ts +57 -0
|
@@ -652,6 +652,262 @@ export declare const SkillFileEntrySchema: z.ZodObject<{
|
|
|
652
652
|
dest: string;
|
|
653
653
|
}>;
|
|
654
654
|
export type SkillFileEntry = z.infer<typeof SkillFileEntrySchema>;
|
|
655
|
+
/**
|
|
656
|
+
* A typed "skill source" descriptor as it appears in vibe-agent-toolkit.config.yaml.
|
|
657
|
+
*
|
|
658
|
+
* This is the CONFIG representation. Task 13's staging maps it onto Plan 1's
|
|
659
|
+
* runtime `SkillSource` union before calling `resolveSkillSource`. Kept here so
|
|
660
|
+
* `configure`/`run` parse a single strict source of truth.
|
|
661
|
+
*/
|
|
662
|
+
export declare const SkillSourceDescriptorSchema: z.ZodUnion<[z.ZodObject<{
|
|
663
|
+
workspace: z.ZodString;
|
|
664
|
+
}, "strict", z.ZodTypeAny, {
|
|
665
|
+
workspace: string;
|
|
666
|
+
}, {
|
|
667
|
+
workspace: string;
|
|
668
|
+
}>, z.ZodObject<{
|
|
669
|
+
npm: z.ZodString;
|
|
670
|
+
}, "strict", z.ZodTypeAny, {
|
|
671
|
+
npm: string;
|
|
672
|
+
}, {
|
|
673
|
+
npm: string;
|
|
674
|
+
}>, z.ZodObject<{
|
|
675
|
+
url: z.ZodString;
|
|
676
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
677
|
+
}, "strict", z.ZodTypeAny, {
|
|
678
|
+
url: string;
|
|
679
|
+
sha256?: string | undefined;
|
|
680
|
+
}, {
|
|
681
|
+
url: string;
|
|
682
|
+
sha256?: string | undefined;
|
|
683
|
+
}>, z.ZodObject<{
|
|
684
|
+
path: z.ZodString;
|
|
685
|
+
}, "strict", z.ZodTypeAny, {
|
|
686
|
+
path: string;
|
|
687
|
+
}, {
|
|
688
|
+
path: string;
|
|
689
|
+
}>, z.ZodObject<{
|
|
690
|
+
vendored: z.ZodLiteral<true>;
|
|
691
|
+
}, "strict", z.ZodTypeAny, {
|
|
692
|
+
vendored: true;
|
|
693
|
+
}, {
|
|
694
|
+
vendored: true;
|
|
695
|
+
}>]>;
|
|
696
|
+
export type SkillSourceDescriptor = z.infer<typeof SkillSourceDescriptorSchema>;
|
|
697
|
+
/**
|
|
698
|
+
* Per-skill `test:` block for `vat skill test`. Strict — unknown keys are a
|
|
699
|
+
* config error (Postel: this is vat-produced/validated data, §schema strategy).
|
|
700
|
+
* Every field is optional; omitted knobs fall back to built-in defaults.
|
|
701
|
+
*/
|
|
702
|
+
export declare const TestConfigSchema: z.ZodObject<{
|
|
703
|
+
model: z.ZodOptional<z.ZodString>;
|
|
704
|
+
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
705
|
+
maxBudgetUsd: z.ZodOptional<z.ZodNumber>;
|
|
706
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
707
|
+
stall: z.ZodOptional<z.ZodNumber>;
|
|
708
|
+
evals: z.ZodOptional<z.ZodString>;
|
|
709
|
+
experimenterPrompt: z.ZodOptional<z.ZodString>;
|
|
710
|
+
auth: z.ZodOptional<z.ZodEnum<["inherit", "subscription", "api-key", "auto"]>>;
|
|
711
|
+
requireAuth: z.ZodOptional<z.ZodEnum<["subscription", "api-key"]>>;
|
|
712
|
+
baseline: z.ZodOptional<z.ZodBoolean>;
|
|
713
|
+
skillCreator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
714
|
+
workspace: z.ZodString;
|
|
715
|
+
}, "strict", z.ZodTypeAny, {
|
|
716
|
+
workspace: string;
|
|
717
|
+
}, {
|
|
718
|
+
workspace: string;
|
|
719
|
+
}>, z.ZodObject<{
|
|
720
|
+
npm: z.ZodString;
|
|
721
|
+
}, "strict", z.ZodTypeAny, {
|
|
722
|
+
npm: string;
|
|
723
|
+
}, {
|
|
724
|
+
npm: string;
|
|
725
|
+
}>, z.ZodObject<{
|
|
726
|
+
url: z.ZodString;
|
|
727
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
728
|
+
}, "strict", z.ZodTypeAny, {
|
|
729
|
+
url: string;
|
|
730
|
+
sha256?: string | undefined;
|
|
731
|
+
}, {
|
|
732
|
+
url: string;
|
|
733
|
+
sha256?: string | undefined;
|
|
734
|
+
}>, z.ZodObject<{
|
|
735
|
+
path: z.ZodString;
|
|
736
|
+
}, "strict", z.ZodTypeAny, {
|
|
737
|
+
path: string;
|
|
738
|
+
}, {
|
|
739
|
+
path: string;
|
|
740
|
+
}>, z.ZodObject<{
|
|
741
|
+
vendored: z.ZodLiteral<true>;
|
|
742
|
+
}, "strict", z.ZodTypeAny, {
|
|
743
|
+
vendored: true;
|
|
744
|
+
}, {
|
|
745
|
+
vendored: true;
|
|
746
|
+
}>]>>;
|
|
747
|
+
with: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
748
|
+
workspace: z.ZodString;
|
|
749
|
+
}, "strict", z.ZodTypeAny, {
|
|
750
|
+
workspace: string;
|
|
751
|
+
}, {
|
|
752
|
+
workspace: string;
|
|
753
|
+
}>, z.ZodObject<{
|
|
754
|
+
npm: z.ZodString;
|
|
755
|
+
}, "strict", z.ZodTypeAny, {
|
|
756
|
+
npm: string;
|
|
757
|
+
}, {
|
|
758
|
+
npm: string;
|
|
759
|
+
}>, z.ZodObject<{
|
|
760
|
+
url: z.ZodString;
|
|
761
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
762
|
+
}, "strict", z.ZodTypeAny, {
|
|
763
|
+
url: string;
|
|
764
|
+
sha256?: string | undefined;
|
|
765
|
+
}, {
|
|
766
|
+
url: string;
|
|
767
|
+
sha256?: string | undefined;
|
|
768
|
+
}>, z.ZodObject<{
|
|
769
|
+
path: z.ZodString;
|
|
770
|
+
}, "strict", z.ZodTypeAny, {
|
|
771
|
+
path: string;
|
|
772
|
+
}, {
|
|
773
|
+
path: string;
|
|
774
|
+
}>, z.ZodObject<{
|
|
775
|
+
vendored: z.ZodLiteral<true>;
|
|
776
|
+
}, "strict", z.ZodTypeAny, {
|
|
777
|
+
vendored: true;
|
|
778
|
+
}, {
|
|
779
|
+
vendored: true;
|
|
780
|
+
}>]>, "many">>;
|
|
781
|
+
optional: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
782
|
+
workspace: z.ZodString;
|
|
783
|
+
}, "strict", z.ZodTypeAny, {
|
|
784
|
+
workspace: string;
|
|
785
|
+
}, {
|
|
786
|
+
workspace: string;
|
|
787
|
+
}>, z.ZodObject<{
|
|
788
|
+
npm: z.ZodString;
|
|
789
|
+
}, "strict", z.ZodTypeAny, {
|
|
790
|
+
npm: string;
|
|
791
|
+
}, {
|
|
792
|
+
npm: string;
|
|
793
|
+
}>, z.ZodObject<{
|
|
794
|
+
url: z.ZodString;
|
|
795
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
796
|
+
}, "strict", z.ZodTypeAny, {
|
|
797
|
+
url: string;
|
|
798
|
+
sha256?: string | undefined;
|
|
799
|
+
}, {
|
|
800
|
+
url: string;
|
|
801
|
+
sha256?: string | undefined;
|
|
802
|
+
}>, z.ZodObject<{
|
|
803
|
+
path: z.ZodString;
|
|
804
|
+
}, "strict", z.ZodTypeAny, {
|
|
805
|
+
path: string;
|
|
806
|
+
}, {
|
|
807
|
+
path: string;
|
|
808
|
+
}>, z.ZodObject<{
|
|
809
|
+
vendored: z.ZodLiteral<true>;
|
|
810
|
+
}, "strict", z.ZodTypeAny, {
|
|
811
|
+
vendored: true;
|
|
812
|
+
}, {
|
|
813
|
+
vendored: true;
|
|
814
|
+
}>]>, "many">>;
|
|
815
|
+
}, "strict", z.ZodTypeAny, {
|
|
816
|
+
with?: ({
|
|
817
|
+
workspace: string;
|
|
818
|
+
} | {
|
|
819
|
+
npm: string;
|
|
820
|
+
} | {
|
|
821
|
+
url: string;
|
|
822
|
+
sha256?: string | undefined;
|
|
823
|
+
} | {
|
|
824
|
+
path: string;
|
|
825
|
+
} | {
|
|
826
|
+
vendored: true;
|
|
827
|
+
})[] | undefined;
|
|
828
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
829
|
+
timeout?: number | undefined;
|
|
830
|
+
model?: string | undefined;
|
|
831
|
+
maxTurns?: number | undefined;
|
|
832
|
+
maxBudgetUsd?: number | undefined;
|
|
833
|
+
stall?: number | undefined;
|
|
834
|
+
evals?: string | undefined;
|
|
835
|
+
experimenterPrompt?: string | undefined;
|
|
836
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
837
|
+
baseline?: boolean | undefined;
|
|
838
|
+
skillCreator?: {
|
|
839
|
+
workspace: string;
|
|
840
|
+
} | {
|
|
841
|
+
npm: string;
|
|
842
|
+
} | {
|
|
843
|
+
url: string;
|
|
844
|
+
sha256?: string | undefined;
|
|
845
|
+
} | {
|
|
846
|
+
path: string;
|
|
847
|
+
} | {
|
|
848
|
+
vendored: true;
|
|
849
|
+
} | undefined;
|
|
850
|
+
optional?: ({
|
|
851
|
+
workspace: string;
|
|
852
|
+
} | {
|
|
853
|
+
npm: string;
|
|
854
|
+
} | {
|
|
855
|
+
url: string;
|
|
856
|
+
sha256?: string | undefined;
|
|
857
|
+
} | {
|
|
858
|
+
path: string;
|
|
859
|
+
} | {
|
|
860
|
+
vendored: true;
|
|
861
|
+
})[] | undefined;
|
|
862
|
+
}, {
|
|
863
|
+
with?: ({
|
|
864
|
+
workspace: string;
|
|
865
|
+
} | {
|
|
866
|
+
npm: string;
|
|
867
|
+
} | {
|
|
868
|
+
url: string;
|
|
869
|
+
sha256?: string | undefined;
|
|
870
|
+
} | {
|
|
871
|
+
path: string;
|
|
872
|
+
} | {
|
|
873
|
+
vendored: true;
|
|
874
|
+
})[] | undefined;
|
|
875
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
876
|
+
timeout?: number | undefined;
|
|
877
|
+
model?: string | undefined;
|
|
878
|
+
maxTurns?: number | undefined;
|
|
879
|
+
maxBudgetUsd?: number | undefined;
|
|
880
|
+
stall?: number | undefined;
|
|
881
|
+
evals?: string | undefined;
|
|
882
|
+
experimenterPrompt?: string | undefined;
|
|
883
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
884
|
+
baseline?: boolean | undefined;
|
|
885
|
+
skillCreator?: {
|
|
886
|
+
workspace: string;
|
|
887
|
+
} | {
|
|
888
|
+
npm: string;
|
|
889
|
+
} | {
|
|
890
|
+
url: string;
|
|
891
|
+
sha256?: string | undefined;
|
|
892
|
+
} | {
|
|
893
|
+
path: string;
|
|
894
|
+
} | {
|
|
895
|
+
vendored: true;
|
|
896
|
+
} | undefined;
|
|
897
|
+
optional?: ({
|
|
898
|
+
workspace: string;
|
|
899
|
+
} | {
|
|
900
|
+
npm: string;
|
|
901
|
+
} | {
|
|
902
|
+
url: string;
|
|
903
|
+
sha256?: string | undefined;
|
|
904
|
+
} | {
|
|
905
|
+
path: string;
|
|
906
|
+
} | {
|
|
907
|
+
vendored: true;
|
|
908
|
+
})[] | undefined;
|
|
909
|
+
}>;
|
|
910
|
+
export type TestConfig = z.infer<typeof TestConfigSchema>;
|
|
655
911
|
/**
|
|
656
912
|
* Skill packaging configuration.
|
|
657
913
|
*
|
|
@@ -730,6 +986,214 @@ export declare const SkillPackagingConfigSchema: z.ZodObject<{
|
|
|
730
986
|
source: string;
|
|
731
987
|
dest: string;
|
|
732
988
|
}>, "many">>;
|
|
989
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
990
|
+
model: z.ZodOptional<z.ZodString>;
|
|
991
|
+
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
992
|
+
maxBudgetUsd: z.ZodOptional<z.ZodNumber>;
|
|
993
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
994
|
+
stall: z.ZodOptional<z.ZodNumber>;
|
|
995
|
+
evals: z.ZodOptional<z.ZodString>;
|
|
996
|
+
experimenterPrompt: z.ZodOptional<z.ZodString>;
|
|
997
|
+
auth: z.ZodOptional<z.ZodEnum<["inherit", "subscription", "api-key", "auto"]>>;
|
|
998
|
+
requireAuth: z.ZodOptional<z.ZodEnum<["subscription", "api-key"]>>;
|
|
999
|
+
baseline: z.ZodOptional<z.ZodBoolean>;
|
|
1000
|
+
skillCreator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1001
|
+
workspace: z.ZodString;
|
|
1002
|
+
}, "strict", z.ZodTypeAny, {
|
|
1003
|
+
workspace: string;
|
|
1004
|
+
}, {
|
|
1005
|
+
workspace: string;
|
|
1006
|
+
}>, z.ZodObject<{
|
|
1007
|
+
npm: z.ZodString;
|
|
1008
|
+
}, "strict", z.ZodTypeAny, {
|
|
1009
|
+
npm: string;
|
|
1010
|
+
}, {
|
|
1011
|
+
npm: string;
|
|
1012
|
+
}>, z.ZodObject<{
|
|
1013
|
+
url: z.ZodString;
|
|
1014
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
}, "strict", z.ZodTypeAny, {
|
|
1016
|
+
url: string;
|
|
1017
|
+
sha256?: string | undefined;
|
|
1018
|
+
}, {
|
|
1019
|
+
url: string;
|
|
1020
|
+
sha256?: string | undefined;
|
|
1021
|
+
}>, z.ZodObject<{
|
|
1022
|
+
path: z.ZodString;
|
|
1023
|
+
}, "strict", z.ZodTypeAny, {
|
|
1024
|
+
path: string;
|
|
1025
|
+
}, {
|
|
1026
|
+
path: string;
|
|
1027
|
+
}>, z.ZodObject<{
|
|
1028
|
+
vendored: z.ZodLiteral<true>;
|
|
1029
|
+
}, "strict", z.ZodTypeAny, {
|
|
1030
|
+
vendored: true;
|
|
1031
|
+
}, {
|
|
1032
|
+
vendored: true;
|
|
1033
|
+
}>]>>;
|
|
1034
|
+
with: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1035
|
+
workspace: z.ZodString;
|
|
1036
|
+
}, "strict", z.ZodTypeAny, {
|
|
1037
|
+
workspace: string;
|
|
1038
|
+
}, {
|
|
1039
|
+
workspace: string;
|
|
1040
|
+
}>, z.ZodObject<{
|
|
1041
|
+
npm: z.ZodString;
|
|
1042
|
+
}, "strict", z.ZodTypeAny, {
|
|
1043
|
+
npm: string;
|
|
1044
|
+
}, {
|
|
1045
|
+
npm: string;
|
|
1046
|
+
}>, z.ZodObject<{
|
|
1047
|
+
url: z.ZodString;
|
|
1048
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
}, "strict", z.ZodTypeAny, {
|
|
1050
|
+
url: string;
|
|
1051
|
+
sha256?: string | undefined;
|
|
1052
|
+
}, {
|
|
1053
|
+
url: string;
|
|
1054
|
+
sha256?: string | undefined;
|
|
1055
|
+
}>, z.ZodObject<{
|
|
1056
|
+
path: z.ZodString;
|
|
1057
|
+
}, "strict", z.ZodTypeAny, {
|
|
1058
|
+
path: string;
|
|
1059
|
+
}, {
|
|
1060
|
+
path: string;
|
|
1061
|
+
}>, z.ZodObject<{
|
|
1062
|
+
vendored: z.ZodLiteral<true>;
|
|
1063
|
+
}, "strict", z.ZodTypeAny, {
|
|
1064
|
+
vendored: true;
|
|
1065
|
+
}, {
|
|
1066
|
+
vendored: true;
|
|
1067
|
+
}>]>, "many">>;
|
|
1068
|
+
optional: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1069
|
+
workspace: z.ZodString;
|
|
1070
|
+
}, "strict", z.ZodTypeAny, {
|
|
1071
|
+
workspace: string;
|
|
1072
|
+
}, {
|
|
1073
|
+
workspace: string;
|
|
1074
|
+
}>, z.ZodObject<{
|
|
1075
|
+
npm: z.ZodString;
|
|
1076
|
+
}, "strict", z.ZodTypeAny, {
|
|
1077
|
+
npm: string;
|
|
1078
|
+
}, {
|
|
1079
|
+
npm: string;
|
|
1080
|
+
}>, z.ZodObject<{
|
|
1081
|
+
url: z.ZodString;
|
|
1082
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
}, "strict", z.ZodTypeAny, {
|
|
1084
|
+
url: string;
|
|
1085
|
+
sha256?: string | undefined;
|
|
1086
|
+
}, {
|
|
1087
|
+
url: string;
|
|
1088
|
+
sha256?: string | undefined;
|
|
1089
|
+
}>, z.ZodObject<{
|
|
1090
|
+
path: z.ZodString;
|
|
1091
|
+
}, "strict", z.ZodTypeAny, {
|
|
1092
|
+
path: string;
|
|
1093
|
+
}, {
|
|
1094
|
+
path: string;
|
|
1095
|
+
}>, z.ZodObject<{
|
|
1096
|
+
vendored: z.ZodLiteral<true>;
|
|
1097
|
+
}, "strict", z.ZodTypeAny, {
|
|
1098
|
+
vendored: true;
|
|
1099
|
+
}, {
|
|
1100
|
+
vendored: true;
|
|
1101
|
+
}>]>, "many">>;
|
|
1102
|
+
}, "strict", z.ZodTypeAny, {
|
|
1103
|
+
with?: ({
|
|
1104
|
+
workspace: string;
|
|
1105
|
+
} | {
|
|
1106
|
+
npm: string;
|
|
1107
|
+
} | {
|
|
1108
|
+
url: string;
|
|
1109
|
+
sha256?: string | undefined;
|
|
1110
|
+
} | {
|
|
1111
|
+
path: string;
|
|
1112
|
+
} | {
|
|
1113
|
+
vendored: true;
|
|
1114
|
+
})[] | undefined;
|
|
1115
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1116
|
+
timeout?: number | undefined;
|
|
1117
|
+
model?: string | undefined;
|
|
1118
|
+
maxTurns?: number | undefined;
|
|
1119
|
+
maxBudgetUsd?: number | undefined;
|
|
1120
|
+
stall?: number | undefined;
|
|
1121
|
+
evals?: string | undefined;
|
|
1122
|
+
experimenterPrompt?: string | undefined;
|
|
1123
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1124
|
+
baseline?: boolean | undefined;
|
|
1125
|
+
skillCreator?: {
|
|
1126
|
+
workspace: string;
|
|
1127
|
+
} | {
|
|
1128
|
+
npm: string;
|
|
1129
|
+
} | {
|
|
1130
|
+
url: string;
|
|
1131
|
+
sha256?: string | undefined;
|
|
1132
|
+
} | {
|
|
1133
|
+
path: string;
|
|
1134
|
+
} | {
|
|
1135
|
+
vendored: true;
|
|
1136
|
+
} | undefined;
|
|
1137
|
+
optional?: ({
|
|
1138
|
+
workspace: string;
|
|
1139
|
+
} | {
|
|
1140
|
+
npm: string;
|
|
1141
|
+
} | {
|
|
1142
|
+
url: string;
|
|
1143
|
+
sha256?: string | undefined;
|
|
1144
|
+
} | {
|
|
1145
|
+
path: string;
|
|
1146
|
+
} | {
|
|
1147
|
+
vendored: true;
|
|
1148
|
+
})[] | undefined;
|
|
1149
|
+
}, {
|
|
1150
|
+
with?: ({
|
|
1151
|
+
workspace: string;
|
|
1152
|
+
} | {
|
|
1153
|
+
npm: string;
|
|
1154
|
+
} | {
|
|
1155
|
+
url: string;
|
|
1156
|
+
sha256?: string | undefined;
|
|
1157
|
+
} | {
|
|
1158
|
+
path: string;
|
|
1159
|
+
} | {
|
|
1160
|
+
vendored: true;
|
|
1161
|
+
})[] | undefined;
|
|
1162
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1163
|
+
timeout?: number | undefined;
|
|
1164
|
+
model?: string | undefined;
|
|
1165
|
+
maxTurns?: number | undefined;
|
|
1166
|
+
maxBudgetUsd?: number | undefined;
|
|
1167
|
+
stall?: number | undefined;
|
|
1168
|
+
evals?: string | undefined;
|
|
1169
|
+
experimenterPrompt?: string | undefined;
|
|
1170
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1171
|
+
baseline?: boolean | undefined;
|
|
1172
|
+
skillCreator?: {
|
|
1173
|
+
workspace: string;
|
|
1174
|
+
} | {
|
|
1175
|
+
npm: string;
|
|
1176
|
+
} | {
|
|
1177
|
+
url: string;
|
|
1178
|
+
sha256?: string | undefined;
|
|
1179
|
+
} | {
|
|
1180
|
+
path: string;
|
|
1181
|
+
} | {
|
|
1182
|
+
vendored: true;
|
|
1183
|
+
} | undefined;
|
|
1184
|
+
optional?: ({
|
|
1185
|
+
workspace: string;
|
|
1186
|
+
} | {
|
|
1187
|
+
npm: string;
|
|
1188
|
+
} | {
|
|
1189
|
+
url: string;
|
|
1190
|
+
sha256?: string | undefined;
|
|
1191
|
+
} | {
|
|
1192
|
+
path: string;
|
|
1193
|
+
} | {
|
|
1194
|
+
vendored: true;
|
|
1195
|
+
})[] | undefined;
|
|
1196
|
+
}>>;
|
|
733
1197
|
}, "strict", z.ZodTypeAny, {
|
|
734
1198
|
validation?: {
|
|
735
1199
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -756,6 +1220,54 @@ export declare const SkillPackagingConfigSchema: z.ZodObject<{
|
|
|
756
1220
|
source: string;
|
|
757
1221
|
dest: string;
|
|
758
1222
|
}[] | undefined;
|
|
1223
|
+
test?: {
|
|
1224
|
+
with?: ({
|
|
1225
|
+
workspace: string;
|
|
1226
|
+
} | {
|
|
1227
|
+
npm: string;
|
|
1228
|
+
} | {
|
|
1229
|
+
url: string;
|
|
1230
|
+
sha256?: string | undefined;
|
|
1231
|
+
} | {
|
|
1232
|
+
path: string;
|
|
1233
|
+
} | {
|
|
1234
|
+
vendored: true;
|
|
1235
|
+
})[] | undefined;
|
|
1236
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1237
|
+
timeout?: number | undefined;
|
|
1238
|
+
model?: string | undefined;
|
|
1239
|
+
maxTurns?: number | undefined;
|
|
1240
|
+
maxBudgetUsd?: number | undefined;
|
|
1241
|
+
stall?: number | undefined;
|
|
1242
|
+
evals?: string | undefined;
|
|
1243
|
+
experimenterPrompt?: string | undefined;
|
|
1244
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1245
|
+
baseline?: boolean | undefined;
|
|
1246
|
+
skillCreator?: {
|
|
1247
|
+
workspace: string;
|
|
1248
|
+
} | {
|
|
1249
|
+
npm: string;
|
|
1250
|
+
} | {
|
|
1251
|
+
url: string;
|
|
1252
|
+
sha256?: string | undefined;
|
|
1253
|
+
} | {
|
|
1254
|
+
path: string;
|
|
1255
|
+
} | {
|
|
1256
|
+
vendored: true;
|
|
1257
|
+
} | undefined;
|
|
1258
|
+
optional?: ({
|
|
1259
|
+
workspace: string;
|
|
1260
|
+
} | {
|
|
1261
|
+
npm: string;
|
|
1262
|
+
} | {
|
|
1263
|
+
url: string;
|
|
1264
|
+
sha256?: string | undefined;
|
|
1265
|
+
} | {
|
|
1266
|
+
path: string;
|
|
1267
|
+
} | {
|
|
1268
|
+
vendored: true;
|
|
1269
|
+
})[] | undefined;
|
|
1270
|
+
} | undefined;
|
|
759
1271
|
}, {
|
|
760
1272
|
validation?: {
|
|
761
1273
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -782,6 +1294,54 @@ export declare const SkillPackagingConfigSchema: z.ZodObject<{
|
|
|
782
1294
|
source: string;
|
|
783
1295
|
dest: string;
|
|
784
1296
|
}[] | undefined;
|
|
1297
|
+
test?: {
|
|
1298
|
+
with?: ({
|
|
1299
|
+
workspace: string;
|
|
1300
|
+
} | {
|
|
1301
|
+
npm: string;
|
|
1302
|
+
} | {
|
|
1303
|
+
url: string;
|
|
1304
|
+
sha256?: string | undefined;
|
|
1305
|
+
} | {
|
|
1306
|
+
path: string;
|
|
1307
|
+
} | {
|
|
1308
|
+
vendored: true;
|
|
1309
|
+
})[] | undefined;
|
|
1310
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1311
|
+
timeout?: number | undefined;
|
|
1312
|
+
model?: string | undefined;
|
|
1313
|
+
maxTurns?: number | undefined;
|
|
1314
|
+
maxBudgetUsd?: number | undefined;
|
|
1315
|
+
stall?: number | undefined;
|
|
1316
|
+
evals?: string | undefined;
|
|
1317
|
+
experimenterPrompt?: string | undefined;
|
|
1318
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1319
|
+
baseline?: boolean | undefined;
|
|
1320
|
+
skillCreator?: {
|
|
1321
|
+
workspace: string;
|
|
1322
|
+
} | {
|
|
1323
|
+
npm: string;
|
|
1324
|
+
} | {
|
|
1325
|
+
url: string;
|
|
1326
|
+
sha256?: string | undefined;
|
|
1327
|
+
} | {
|
|
1328
|
+
path: string;
|
|
1329
|
+
} | {
|
|
1330
|
+
vendored: true;
|
|
1331
|
+
} | undefined;
|
|
1332
|
+
optional?: ({
|
|
1333
|
+
workspace: string;
|
|
1334
|
+
} | {
|
|
1335
|
+
npm: string;
|
|
1336
|
+
} | {
|
|
1337
|
+
url: string;
|
|
1338
|
+
sha256?: string | undefined;
|
|
1339
|
+
} | {
|
|
1340
|
+
path: string;
|
|
1341
|
+
} | {
|
|
1342
|
+
vendored: true;
|
|
1343
|
+
})[] | undefined;
|
|
1344
|
+
} | undefined;
|
|
785
1345
|
}>;
|
|
786
1346
|
export type SkillPackagingConfig = z.infer<typeof SkillPackagingConfigSchema>;
|
|
787
1347
|
/**
|
|
@@ -864,6 +1424,214 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
864
1424
|
source: string;
|
|
865
1425
|
dest: string;
|
|
866
1426
|
}>, "many">>;
|
|
1427
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
1428
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1429
|
+
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
1430
|
+
maxBudgetUsd: z.ZodOptional<z.ZodNumber>;
|
|
1431
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1432
|
+
stall: z.ZodOptional<z.ZodNumber>;
|
|
1433
|
+
evals: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
experimenterPrompt: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
auth: z.ZodOptional<z.ZodEnum<["inherit", "subscription", "api-key", "auto"]>>;
|
|
1436
|
+
requireAuth: z.ZodOptional<z.ZodEnum<["subscription", "api-key"]>>;
|
|
1437
|
+
baseline: z.ZodOptional<z.ZodBoolean>;
|
|
1438
|
+
skillCreator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1439
|
+
workspace: z.ZodString;
|
|
1440
|
+
}, "strict", z.ZodTypeAny, {
|
|
1441
|
+
workspace: string;
|
|
1442
|
+
}, {
|
|
1443
|
+
workspace: string;
|
|
1444
|
+
}>, z.ZodObject<{
|
|
1445
|
+
npm: z.ZodString;
|
|
1446
|
+
}, "strict", z.ZodTypeAny, {
|
|
1447
|
+
npm: string;
|
|
1448
|
+
}, {
|
|
1449
|
+
npm: string;
|
|
1450
|
+
}>, z.ZodObject<{
|
|
1451
|
+
url: z.ZodString;
|
|
1452
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1453
|
+
}, "strict", z.ZodTypeAny, {
|
|
1454
|
+
url: string;
|
|
1455
|
+
sha256?: string | undefined;
|
|
1456
|
+
}, {
|
|
1457
|
+
url: string;
|
|
1458
|
+
sha256?: string | undefined;
|
|
1459
|
+
}>, z.ZodObject<{
|
|
1460
|
+
path: z.ZodString;
|
|
1461
|
+
}, "strict", z.ZodTypeAny, {
|
|
1462
|
+
path: string;
|
|
1463
|
+
}, {
|
|
1464
|
+
path: string;
|
|
1465
|
+
}>, z.ZodObject<{
|
|
1466
|
+
vendored: z.ZodLiteral<true>;
|
|
1467
|
+
}, "strict", z.ZodTypeAny, {
|
|
1468
|
+
vendored: true;
|
|
1469
|
+
}, {
|
|
1470
|
+
vendored: true;
|
|
1471
|
+
}>]>>;
|
|
1472
|
+
with: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1473
|
+
workspace: z.ZodString;
|
|
1474
|
+
}, "strict", z.ZodTypeAny, {
|
|
1475
|
+
workspace: string;
|
|
1476
|
+
}, {
|
|
1477
|
+
workspace: string;
|
|
1478
|
+
}>, z.ZodObject<{
|
|
1479
|
+
npm: z.ZodString;
|
|
1480
|
+
}, "strict", z.ZodTypeAny, {
|
|
1481
|
+
npm: string;
|
|
1482
|
+
}, {
|
|
1483
|
+
npm: string;
|
|
1484
|
+
}>, z.ZodObject<{
|
|
1485
|
+
url: z.ZodString;
|
|
1486
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1487
|
+
}, "strict", z.ZodTypeAny, {
|
|
1488
|
+
url: string;
|
|
1489
|
+
sha256?: string | undefined;
|
|
1490
|
+
}, {
|
|
1491
|
+
url: string;
|
|
1492
|
+
sha256?: string | undefined;
|
|
1493
|
+
}>, z.ZodObject<{
|
|
1494
|
+
path: z.ZodString;
|
|
1495
|
+
}, "strict", z.ZodTypeAny, {
|
|
1496
|
+
path: string;
|
|
1497
|
+
}, {
|
|
1498
|
+
path: string;
|
|
1499
|
+
}>, z.ZodObject<{
|
|
1500
|
+
vendored: z.ZodLiteral<true>;
|
|
1501
|
+
}, "strict", z.ZodTypeAny, {
|
|
1502
|
+
vendored: true;
|
|
1503
|
+
}, {
|
|
1504
|
+
vendored: true;
|
|
1505
|
+
}>]>, "many">>;
|
|
1506
|
+
optional: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1507
|
+
workspace: z.ZodString;
|
|
1508
|
+
}, "strict", z.ZodTypeAny, {
|
|
1509
|
+
workspace: string;
|
|
1510
|
+
}, {
|
|
1511
|
+
workspace: string;
|
|
1512
|
+
}>, z.ZodObject<{
|
|
1513
|
+
npm: z.ZodString;
|
|
1514
|
+
}, "strict", z.ZodTypeAny, {
|
|
1515
|
+
npm: string;
|
|
1516
|
+
}, {
|
|
1517
|
+
npm: string;
|
|
1518
|
+
}>, z.ZodObject<{
|
|
1519
|
+
url: z.ZodString;
|
|
1520
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
}, "strict", z.ZodTypeAny, {
|
|
1522
|
+
url: string;
|
|
1523
|
+
sha256?: string | undefined;
|
|
1524
|
+
}, {
|
|
1525
|
+
url: string;
|
|
1526
|
+
sha256?: string | undefined;
|
|
1527
|
+
}>, z.ZodObject<{
|
|
1528
|
+
path: z.ZodString;
|
|
1529
|
+
}, "strict", z.ZodTypeAny, {
|
|
1530
|
+
path: string;
|
|
1531
|
+
}, {
|
|
1532
|
+
path: string;
|
|
1533
|
+
}>, z.ZodObject<{
|
|
1534
|
+
vendored: z.ZodLiteral<true>;
|
|
1535
|
+
}, "strict", z.ZodTypeAny, {
|
|
1536
|
+
vendored: true;
|
|
1537
|
+
}, {
|
|
1538
|
+
vendored: true;
|
|
1539
|
+
}>]>, "many">>;
|
|
1540
|
+
}, "strict", z.ZodTypeAny, {
|
|
1541
|
+
with?: ({
|
|
1542
|
+
workspace: string;
|
|
1543
|
+
} | {
|
|
1544
|
+
npm: string;
|
|
1545
|
+
} | {
|
|
1546
|
+
url: string;
|
|
1547
|
+
sha256?: string | undefined;
|
|
1548
|
+
} | {
|
|
1549
|
+
path: string;
|
|
1550
|
+
} | {
|
|
1551
|
+
vendored: true;
|
|
1552
|
+
})[] | undefined;
|
|
1553
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1554
|
+
timeout?: number | undefined;
|
|
1555
|
+
model?: string | undefined;
|
|
1556
|
+
maxTurns?: number | undefined;
|
|
1557
|
+
maxBudgetUsd?: number | undefined;
|
|
1558
|
+
stall?: number | undefined;
|
|
1559
|
+
evals?: string | undefined;
|
|
1560
|
+
experimenterPrompt?: string | undefined;
|
|
1561
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1562
|
+
baseline?: boolean | undefined;
|
|
1563
|
+
skillCreator?: {
|
|
1564
|
+
workspace: string;
|
|
1565
|
+
} | {
|
|
1566
|
+
npm: string;
|
|
1567
|
+
} | {
|
|
1568
|
+
url: string;
|
|
1569
|
+
sha256?: string | undefined;
|
|
1570
|
+
} | {
|
|
1571
|
+
path: string;
|
|
1572
|
+
} | {
|
|
1573
|
+
vendored: true;
|
|
1574
|
+
} | undefined;
|
|
1575
|
+
optional?: ({
|
|
1576
|
+
workspace: string;
|
|
1577
|
+
} | {
|
|
1578
|
+
npm: string;
|
|
1579
|
+
} | {
|
|
1580
|
+
url: string;
|
|
1581
|
+
sha256?: string | undefined;
|
|
1582
|
+
} | {
|
|
1583
|
+
path: string;
|
|
1584
|
+
} | {
|
|
1585
|
+
vendored: true;
|
|
1586
|
+
})[] | undefined;
|
|
1587
|
+
}, {
|
|
1588
|
+
with?: ({
|
|
1589
|
+
workspace: string;
|
|
1590
|
+
} | {
|
|
1591
|
+
npm: string;
|
|
1592
|
+
} | {
|
|
1593
|
+
url: string;
|
|
1594
|
+
sha256?: string | undefined;
|
|
1595
|
+
} | {
|
|
1596
|
+
path: string;
|
|
1597
|
+
} | {
|
|
1598
|
+
vendored: true;
|
|
1599
|
+
})[] | undefined;
|
|
1600
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1601
|
+
timeout?: number | undefined;
|
|
1602
|
+
model?: string | undefined;
|
|
1603
|
+
maxTurns?: number | undefined;
|
|
1604
|
+
maxBudgetUsd?: number | undefined;
|
|
1605
|
+
stall?: number | undefined;
|
|
1606
|
+
evals?: string | undefined;
|
|
1607
|
+
experimenterPrompt?: string | undefined;
|
|
1608
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1609
|
+
baseline?: boolean | undefined;
|
|
1610
|
+
skillCreator?: {
|
|
1611
|
+
workspace: string;
|
|
1612
|
+
} | {
|
|
1613
|
+
npm: string;
|
|
1614
|
+
} | {
|
|
1615
|
+
url: string;
|
|
1616
|
+
sha256?: string | undefined;
|
|
1617
|
+
} | {
|
|
1618
|
+
path: string;
|
|
1619
|
+
} | {
|
|
1620
|
+
vendored: true;
|
|
1621
|
+
} | undefined;
|
|
1622
|
+
optional?: ({
|
|
1623
|
+
workspace: string;
|
|
1624
|
+
} | {
|
|
1625
|
+
npm: string;
|
|
1626
|
+
} | {
|
|
1627
|
+
url: string;
|
|
1628
|
+
sha256?: string | undefined;
|
|
1629
|
+
} | {
|
|
1630
|
+
path: string;
|
|
1631
|
+
} | {
|
|
1632
|
+
vendored: true;
|
|
1633
|
+
})[] | undefined;
|
|
1634
|
+
}>>;
|
|
867
1635
|
}, "strict", z.ZodTypeAny, {
|
|
868
1636
|
validation?: {
|
|
869
1637
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -890,6 +1658,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
890
1658
|
source: string;
|
|
891
1659
|
dest: string;
|
|
892
1660
|
}[] | undefined;
|
|
1661
|
+
test?: {
|
|
1662
|
+
with?: ({
|
|
1663
|
+
workspace: string;
|
|
1664
|
+
} | {
|
|
1665
|
+
npm: string;
|
|
1666
|
+
} | {
|
|
1667
|
+
url: string;
|
|
1668
|
+
sha256?: string | undefined;
|
|
1669
|
+
} | {
|
|
1670
|
+
path: string;
|
|
1671
|
+
} | {
|
|
1672
|
+
vendored: true;
|
|
1673
|
+
})[] | undefined;
|
|
1674
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1675
|
+
timeout?: number | undefined;
|
|
1676
|
+
model?: string | undefined;
|
|
1677
|
+
maxTurns?: number | undefined;
|
|
1678
|
+
maxBudgetUsd?: number | undefined;
|
|
1679
|
+
stall?: number | undefined;
|
|
1680
|
+
evals?: string | undefined;
|
|
1681
|
+
experimenterPrompt?: string | undefined;
|
|
1682
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1683
|
+
baseline?: boolean | undefined;
|
|
1684
|
+
skillCreator?: {
|
|
1685
|
+
workspace: string;
|
|
1686
|
+
} | {
|
|
1687
|
+
npm: string;
|
|
1688
|
+
} | {
|
|
1689
|
+
url: string;
|
|
1690
|
+
sha256?: string | undefined;
|
|
1691
|
+
} | {
|
|
1692
|
+
path: string;
|
|
1693
|
+
} | {
|
|
1694
|
+
vendored: true;
|
|
1695
|
+
} | undefined;
|
|
1696
|
+
optional?: ({
|
|
1697
|
+
workspace: string;
|
|
1698
|
+
} | {
|
|
1699
|
+
npm: string;
|
|
1700
|
+
} | {
|
|
1701
|
+
url: string;
|
|
1702
|
+
sha256?: string | undefined;
|
|
1703
|
+
} | {
|
|
1704
|
+
path: string;
|
|
1705
|
+
} | {
|
|
1706
|
+
vendored: true;
|
|
1707
|
+
})[] | undefined;
|
|
1708
|
+
} | undefined;
|
|
893
1709
|
}, {
|
|
894
1710
|
validation?: {
|
|
895
1711
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -916,6 +1732,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
916
1732
|
source: string;
|
|
917
1733
|
dest: string;
|
|
918
1734
|
}[] | undefined;
|
|
1735
|
+
test?: {
|
|
1736
|
+
with?: ({
|
|
1737
|
+
workspace: string;
|
|
1738
|
+
} | {
|
|
1739
|
+
npm: string;
|
|
1740
|
+
} | {
|
|
1741
|
+
url: string;
|
|
1742
|
+
sha256?: string | undefined;
|
|
1743
|
+
} | {
|
|
1744
|
+
path: string;
|
|
1745
|
+
} | {
|
|
1746
|
+
vendored: true;
|
|
1747
|
+
})[] | undefined;
|
|
1748
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1749
|
+
timeout?: number | undefined;
|
|
1750
|
+
model?: string | undefined;
|
|
1751
|
+
maxTurns?: number | undefined;
|
|
1752
|
+
maxBudgetUsd?: number | undefined;
|
|
1753
|
+
stall?: number | undefined;
|
|
1754
|
+
evals?: string | undefined;
|
|
1755
|
+
experimenterPrompt?: string | undefined;
|
|
1756
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1757
|
+
baseline?: boolean | undefined;
|
|
1758
|
+
skillCreator?: {
|
|
1759
|
+
workspace: string;
|
|
1760
|
+
} | {
|
|
1761
|
+
npm: string;
|
|
1762
|
+
} | {
|
|
1763
|
+
url: string;
|
|
1764
|
+
sha256?: string | undefined;
|
|
1765
|
+
} | {
|
|
1766
|
+
path: string;
|
|
1767
|
+
} | {
|
|
1768
|
+
vendored: true;
|
|
1769
|
+
} | undefined;
|
|
1770
|
+
optional?: ({
|
|
1771
|
+
workspace: string;
|
|
1772
|
+
} | {
|
|
1773
|
+
npm: string;
|
|
1774
|
+
} | {
|
|
1775
|
+
url: string;
|
|
1776
|
+
sha256?: string | undefined;
|
|
1777
|
+
} | {
|
|
1778
|
+
path: string;
|
|
1779
|
+
} | {
|
|
1780
|
+
vendored: true;
|
|
1781
|
+
})[] | undefined;
|
|
1782
|
+
} | undefined;
|
|
919
1783
|
}>>;
|
|
920
1784
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
921
1785
|
publish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -989,6 +1853,214 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
989
1853
|
source: string;
|
|
990
1854
|
dest: string;
|
|
991
1855
|
}>, "many">>;
|
|
1856
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
1857
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1858
|
+
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
1859
|
+
maxBudgetUsd: z.ZodOptional<z.ZodNumber>;
|
|
1860
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1861
|
+
stall: z.ZodOptional<z.ZodNumber>;
|
|
1862
|
+
evals: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
experimenterPrompt: z.ZodOptional<z.ZodString>;
|
|
1864
|
+
auth: z.ZodOptional<z.ZodEnum<["inherit", "subscription", "api-key", "auto"]>>;
|
|
1865
|
+
requireAuth: z.ZodOptional<z.ZodEnum<["subscription", "api-key"]>>;
|
|
1866
|
+
baseline: z.ZodOptional<z.ZodBoolean>;
|
|
1867
|
+
skillCreator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1868
|
+
workspace: z.ZodString;
|
|
1869
|
+
}, "strict", z.ZodTypeAny, {
|
|
1870
|
+
workspace: string;
|
|
1871
|
+
}, {
|
|
1872
|
+
workspace: string;
|
|
1873
|
+
}>, z.ZodObject<{
|
|
1874
|
+
npm: z.ZodString;
|
|
1875
|
+
}, "strict", z.ZodTypeAny, {
|
|
1876
|
+
npm: string;
|
|
1877
|
+
}, {
|
|
1878
|
+
npm: string;
|
|
1879
|
+
}>, z.ZodObject<{
|
|
1880
|
+
url: z.ZodString;
|
|
1881
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1882
|
+
}, "strict", z.ZodTypeAny, {
|
|
1883
|
+
url: string;
|
|
1884
|
+
sha256?: string | undefined;
|
|
1885
|
+
}, {
|
|
1886
|
+
url: string;
|
|
1887
|
+
sha256?: string | undefined;
|
|
1888
|
+
}>, z.ZodObject<{
|
|
1889
|
+
path: z.ZodString;
|
|
1890
|
+
}, "strict", z.ZodTypeAny, {
|
|
1891
|
+
path: string;
|
|
1892
|
+
}, {
|
|
1893
|
+
path: string;
|
|
1894
|
+
}>, z.ZodObject<{
|
|
1895
|
+
vendored: z.ZodLiteral<true>;
|
|
1896
|
+
}, "strict", z.ZodTypeAny, {
|
|
1897
|
+
vendored: true;
|
|
1898
|
+
}, {
|
|
1899
|
+
vendored: true;
|
|
1900
|
+
}>]>>;
|
|
1901
|
+
with: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1902
|
+
workspace: z.ZodString;
|
|
1903
|
+
}, "strict", z.ZodTypeAny, {
|
|
1904
|
+
workspace: string;
|
|
1905
|
+
}, {
|
|
1906
|
+
workspace: string;
|
|
1907
|
+
}>, z.ZodObject<{
|
|
1908
|
+
npm: z.ZodString;
|
|
1909
|
+
}, "strict", z.ZodTypeAny, {
|
|
1910
|
+
npm: string;
|
|
1911
|
+
}, {
|
|
1912
|
+
npm: string;
|
|
1913
|
+
}>, z.ZodObject<{
|
|
1914
|
+
url: z.ZodString;
|
|
1915
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1916
|
+
}, "strict", z.ZodTypeAny, {
|
|
1917
|
+
url: string;
|
|
1918
|
+
sha256?: string | undefined;
|
|
1919
|
+
}, {
|
|
1920
|
+
url: string;
|
|
1921
|
+
sha256?: string | undefined;
|
|
1922
|
+
}>, z.ZodObject<{
|
|
1923
|
+
path: z.ZodString;
|
|
1924
|
+
}, "strict", z.ZodTypeAny, {
|
|
1925
|
+
path: string;
|
|
1926
|
+
}, {
|
|
1927
|
+
path: string;
|
|
1928
|
+
}>, z.ZodObject<{
|
|
1929
|
+
vendored: z.ZodLiteral<true>;
|
|
1930
|
+
}, "strict", z.ZodTypeAny, {
|
|
1931
|
+
vendored: true;
|
|
1932
|
+
}, {
|
|
1933
|
+
vendored: true;
|
|
1934
|
+
}>]>, "many">>;
|
|
1935
|
+
optional: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1936
|
+
workspace: z.ZodString;
|
|
1937
|
+
}, "strict", z.ZodTypeAny, {
|
|
1938
|
+
workspace: string;
|
|
1939
|
+
}, {
|
|
1940
|
+
workspace: string;
|
|
1941
|
+
}>, z.ZodObject<{
|
|
1942
|
+
npm: z.ZodString;
|
|
1943
|
+
}, "strict", z.ZodTypeAny, {
|
|
1944
|
+
npm: string;
|
|
1945
|
+
}, {
|
|
1946
|
+
npm: string;
|
|
1947
|
+
}>, z.ZodObject<{
|
|
1948
|
+
url: z.ZodString;
|
|
1949
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
1950
|
+
}, "strict", z.ZodTypeAny, {
|
|
1951
|
+
url: string;
|
|
1952
|
+
sha256?: string | undefined;
|
|
1953
|
+
}, {
|
|
1954
|
+
url: string;
|
|
1955
|
+
sha256?: string | undefined;
|
|
1956
|
+
}>, z.ZodObject<{
|
|
1957
|
+
path: z.ZodString;
|
|
1958
|
+
}, "strict", z.ZodTypeAny, {
|
|
1959
|
+
path: string;
|
|
1960
|
+
}, {
|
|
1961
|
+
path: string;
|
|
1962
|
+
}>, z.ZodObject<{
|
|
1963
|
+
vendored: z.ZodLiteral<true>;
|
|
1964
|
+
}, "strict", z.ZodTypeAny, {
|
|
1965
|
+
vendored: true;
|
|
1966
|
+
}, {
|
|
1967
|
+
vendored: true;
|
|
1968
|
+
}>]>, "many">>;
|
|
1969
|
+
}, "strict", z.ZodTypeAny, {
|
|
1970
|
+
with?: ({
|
|
1971
|
+
workspace: string;
|
|
1972
|
+
} | {
|
|
1973
|
+
npm: string;
|
|
1974
|
+
} | {
|
|
1975
|
+
url: string;
|
|
1976
|
+
sha256?: string | undefined;
|
|
1977
|
+
} | {
|
|
1978
|
+
path: string;
|
|
1979
|
+
} | {
|
|
1980
|
+
vendored: true;
|
|
1981
|
+
})[] | undefined;
|
|
1982
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
1983
|
+
timeout?: number | undefined;
|
|
1984
|
+
model?: string | undefined;
|
|
1985
|
+
maxTurns?: number | undefined;
|
|
1986
|
+
maxBudgetUsd?: number | undefined;
|
|
1987
|
+
stall?: number | undefined;
|
|
1988
|
+
evals?: string | undefined;
|
|
1989
|
+
experimenterPrompt?: string | undefined;
|
|
1990
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
1991
|
+
baseline?: boolean | undefined;
|
|
1992
|
+
skillCreator?: {
|
|
1993
|
+
workspace: string;
|
|
1994
|
+
} | {
|
|
1995
|
+
npm: string;
|
|
1996
|
+
} | {
|
|
1997
|
+
url: string;
|
|
1998
|
+
sha256?: string | undefined;
|
|
1999
|
+
} | {
|
|
2000
|
+
path: string;
|
|
2001
|
+
} | {
|
|
2002
|
+
vendored: true;
|
|
2003
|
+
} | undefined;
|
|
2004
|
+
optional?: ({
|
|
2005
|
+
workspace: string;
|
|
2006
|
+
} | {
|
|
2007
|
+
npm: string;
|
|
2008
|
+
} | {
|
|
2009
|
+
url: string;
|
|
2010
|
+
sha256?: string | undefined;
|
|
2011
|
+
} | {
|
|
2012
|
+
path: string;
|
|
2013
|
+
} | {
|
|
2014
|
+
vendored: true;
|
|
2015
|
+
})[] | undefined;
|
|
2016
|
+
}, {
|
|
2017
|
+
with?: ({
|
|
2018
|
+
workspace: string;
|
|
2019
|
+
} | {
|
|
2020
|
+
npm: string;
|
|
2021
|
+
} | {
|
|
2022
|
+
url: string;
|
|
2023
|
+
sha256?: string | undefined;
|
|
2024
|
+
} | {
|
|
2025
|
+
path: string;
|
|
2026
|
+
} | {
|
|
2027
|
+
vendored: true;
|
|
2028
|
+
})[] | undefined;
|
|
2029
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2030
|
+
timeout?: number | undefined;
|
|
2031
|
+
model?: string | undefined;
|
|
2032
|
+
maxTurns?: number | undefined;
|
|
2033
|
+
maxBudgetUsd?: number | undefined;
|
|
2034
|
+
stall?: number | undefined;
|
|
2035
|
+
evals?: string | undefined;
|
|
2036
|
+
experimenterPrompt?: string | undefined;
|
|
2037
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2038
|
+
baseline?: boolean | undefined;
|
|
2039
|
+
skillCreator?: {
|
|
2040
|
+
workspace: string;
|
|
2041
|
+
} | {
|
|
2042
|
+
npm: string;
|
|
2043
|
+
} | {
|
|
2044
|
+
url: string;
|
|
2045
|
+
sha256?: string | undefined;
|
|
2046
|
+
} | {
|
|
2047
|
+
path: string;
|
|
2048
|
+
} | {
|
|
2049
|
+
vendored: true;
|
|
2050
|
+
} | undefined;
|
|
2051
|
+
optional?: ({
|
|
2052
|
+
workspace: string;
|
|
2053
|
+
} | {
|
|
2054
|
+
npm: string;
|
|
2055
|
+
} | {
|
|
2056
|
+
url: string;
|
|
2057
|
+
sha256?: string | undefined;
|
|
2058
|
+
} | {
|
|
2059
|
+
path: string;
|
|
2060
|
+
} | {
|
|
2061
|
+
vendored: true;
|
|
2062
|
+
})[] | undefined;
|
|
2063
|
+
}>>;
|
|
992
2064
|
}, "strict", z.ZodTypeAny, {
|
|
993
2065
|
validation?: {
|
|
994
2066
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -1015,6 +2087,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
1015
2087
|
source: string;
|
|
1016
2088
|
dest: string;
|
|
1017
2089
|
}[] | undefined;
|
|
2090
|
+
test?: {
|
|
2091
|
+
with?: ({
|
|
2092
|
+
workspace: string;
|
|
2093
|
+
} | {
|
|
2094
|
+
npm: string;
|
|
2095
|
+
} | {
|
|
2096
|
+
url: string;
|
|
2097
|
+
sha256?: string | undefined;
|
|
2098
|
+
} | {
|
|
2099
|
+
path: string;
|
|
2100
|
+
} | {
|
|
2101
|
+
vendored: true;
|
|
2102
|
+
})[] | undefined;
|
|
2103
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2104
|
+
timeout?: number | undefined;
|
|
2105
|
+
model?: string | undefined;
|
|
2106
|
+
maxTurns?: number | undefined;
|
|
2107
|
+
maxBudgetUsd?: number | undefined;
|
|
2108
|
+
stall?: number | undefined;
|
|
2109
|
+
evals?: string | undefined;
|
|
2110
|
+
experimenterPrompt?: string | undefined;
|
|
2111
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2112
|
+
baseline?: boolean | undefined;
|
|
2113
|
+
skillCreator?: {
|
|
2114
|
+
workspace: string;
|
|
2115
|
+
} | {
|
|
2116
|
+
npm: string;
|
|
2117
|
+
} | {
|
|
2118
|
+
url: string;
|
|
2119
|
+
sha256?: string | undefined;
|
|
2120
|
+
} | {
|
|
2121
|
+
path: string;
|
|
2122
|
+
} | {
|
|
2123
|
+
vendored: true;
|
|
2124
|
+
} | undefined;
|
|
2125
|
+
optional?: ({
|
|
2126
|
+
workspace: string;
|
|
2127
|
+
} | {
|
|
2128
|
+
npm: string;
|
|
2129
|
+
} | {
|
|
2130
|
+
url: string;
|
|
2131
|
+
sha256?: string | undefined;
|
|
2132
|
+
} | {
|
|
2133
|
+
path: string;
|
|
2134
|
+
} | {
|
|
2135
|
+
vendored: true;
|
|
2136
|
+
})[] | undefined;
|
|
2137
|
+
} | undefined;
|
|
1018
2138
|
}, {
|
|
1019
2139
|
validation?: {
|
|
1020
2140
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -1041,6 +2161,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
1041
2161
|
source: string;
|
|
1042
2162
|
dest: string;
|
|
1043
2163
|
}[] | undefined;
|
|
2164
|
+
test?: {
|
|
2165
|
+
with?: ({
|
|
2166
|
+
workspace: string;
|
|
2167
|
+
} | {
|
|
2168
|
+
npm: string;
|
|
2169
|
+
} | {
|
|
2170
|
+
url: string;
|
|
2171
|
+
sha256?: string | undefined;
|
|
2172
|
+
} | {
|
|
2173
|
+
path: string;
|
|
2174
|
+
} | {
|
|
2175
|
+
vendored: true;
|
|
2176
|
+
})[] | undefined;
|
|
2177
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2178
|
+
timeout?: number | undefined;
|
|
2179
|
+
model?: string | undefined;
|
|
2180
|
+
maxTurns?: number | undefined;
|
|
2181
|
+
maxBudgetUsd?: number | undefined;
|
|
2182
|
+
stall?: number | undefined;
|
|
2183
|
+
evals?: string | undefined;
|
|
2184
|
+
experimenterPrompt?: string | undefined;
|
|
2185
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2186
|
+
baseline?: boolean | undefined;
|
|
2187
|
+
skillCreator?: {
|
|
2188
|
+
workspace: string;
|
|
2189
|
+
} | {
|
|
2190
|
+
npm: string;
|
|
2191
|
+
} | {
|
|
2192
|
+
url: string;
|
|
2193
|
+
sha256?: string | undefined;
|
|
2194
|
+
} | {
|
|
2195
|
+
path: string;
|
|
2196
|
+
} | {
|
|
2197
|
+
vendored: true;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
optional?: ({
|
|
2200
|
+
workspace: string;
|
|
2201
|
+
} | {
|
|
2202
|
+
npm: string;
|
|
2203
|
+
} | {
|
|
2204
|
+
url: string;
|
|
2205
|
+
sha256?: string | undefined;
|
|
2206
|
+
} | {
|
|
2207
|
+
path: string;
|
|
2208
|
+
} | {
|
|
2209
|
+
vendored: true;
|
|
2210
|
+
})[] | undefined;
|
|
2211
|
+
} | undefined;
|
|
1044
2212
|
}>>>;
|
|
1045
2213
|
}, "strict", z.ZodTypeAny, {
|
|
1046
2214
|
include: string[];
|
|
@@ -1071,6 +2239,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
1071
2239
|
source: string;
|
|
1072
2240
|
dest: string;
|
|
1073
2241
|
}[] | undefined;
|
|
2242
|
+
test?: {
|
|
2243
|
+
with?: ({
|
|
2244
|
+
workspace: string;
|
|
2245
|
+
} | {
|
|
2246
|
+
npm: string;
|
|
2247
|
+
} | {
|
|
2248
|
+
url: string;
|
|
2249
|
+
sha256?: string | undefined;
|
|
2250
|
+
} | {
|
|
2251
|
+
path: string;
|
|
2252
|
+
} | {
|
|
2253
|
+
vendored: true;
|
|
2254
|
+
})[] | undefined;
|
|
2255
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2256
|
+
timeout?: number | undefined;
|
|
2257
|
+
model?: string | undefined;
|
|
2258
|
+
maxTurns?: number | undefined;
|
|
2259
|
+
maxBudgetUsd?: number | undefined;
|
|
2260
|
+
stall?: number | undefined;
|
|
2261
|
+
evals?: string | undefined;
|
|
2262
|
+
experimenterPrompt?: string | undefined;
|
|
2263
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2264
|
+
baseline?: boolean | undefined;
|
|
2265
|
+
skillCreator?: {
|
|
2266
|
+
workspace: string;
|
|
2267
|
+
} | {
|
|
2268
|
+
npm: string;
|
|
2269
|
+
} | {
|
|
2270
|
+
url: string;
|
|
2271
|
+
sha256?: string | undefined;
|
|
2272
|
+
} | {
|
|
2273
|
+
path: string;
|
|
2274
|
+
} | {
|
|
2275
|
+
vendored: true;
|
|
2276
|
+
} | undefined;
|
|
2277
|
+
optional?: ({
|
|
2278
|
+
workspace: string;
|
|
2279
|
+
} | {
|
|
2280
|
+
npm: string;
|
|
2281
|
+
} | {
|
|
2282
|
+
url: string;
|
|
2283
|
+
sha256?: string | undefined;
|
|
2284
|
+
} | {
|
|
2285
|
+
path: string;
|
|
2286
|
+
} | {
|
|
2287
|
+
vendored: true;
|
|
2288
|
+
})[] | undefined;
|
|
2289
|
+
} | undefined;
|
|
1074
2290
|
} | undefined;
|
|
1075
2291
|
config?: Record<string, {
|
|
1076
2292
|
validation?: {
|
|
@@ -1098,6 +2314,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
1098
2314
|
source: string;
|
|
1099
2315
|
dest: string;
|
|
1100
2316
|
}[] | undefined;
|
|
2317
|
+
test?: {
|
|
2318
|
+
with?: ({
|
|
2319
|
+
workspace: string;
|
|
2320
|
+
} | {
|
|
2321
|
+
npm: string;
|
|
2322
|
+
} | {
|
|
2323
|
+
url: string;
|
|
2324
|
+
sha256?: string | undefined;
|
|
2325
|
+
} | {
|
|
2326
|
+
path: string;
|
|
2327
|
+
} | {
|
|
2328
|
+
vendored: true;
|
|
2329
|
+
})[] | undefined;
|
|
2330
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2331
|
+
timeout?: number | undefined;
|
|
2332
|
+
model?: string | undefined;
|
|
2333
|
+
maxTurns?: number | undefined;
|
|
2334
|
+
maxBudgetUsd?: number | undefined;
|
|
2335
|
+
stall?: number | undefined;
|
|
2336
|
+
evals?: string | undefined;
|
|
2337
|
+
experimenterPrompt?: string | undefined;
|
|
2338
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2339
|
+
baseline?: boolean | undefined;
|
|
2340
|
+
skillCreator?: {
|
|
2341
|
+
workspace: string;
|
|
2342
|
+
} | {
|
|
2343
|
+
npm: string;
|
|
2344
|
+
} | {
|
|
2345
|
+
url: string;
|
|
2346
|
+
sha256?: string | undefined;
|
|
2347
|
+
} | {
|
|
2348
|
+
path: string;
|
|
2349
|
+
} | {
|
|
2350
|
+
vendored: true;
|
|
2351
|
+
} | undefined;
|
|
2352
|
+
optional?: ({
|
|
2353
|
+
workspace: string;
|
|
2354
|
+
} | {
|
|
2355
|
+
npm: string;
|
|
2356
|
+
} | {
|
|
2357
|
+
url: string;
|
|
2358
|
+
sha256?: string | undefined;
|
|
2359
|
+
} | {
|
|
2360
|
+
path: string;
|
|
2361
|
+
} | {
|
|
2362
|
+
vendored: true;
|
|
2363
|
+
})[] | undefined;
|
|
2364
|
+
} | undefined;
|
|
1101
2365
|
}> | undefined;
|
|
1102
2366
|
}, {
|
|
1103
2367
|
include: string[];
|
|
@@ -1128,6 +2392,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
1128
2392
|
source: string;
|
|
1129
2393
|
dest: string;
|
|
1130
2394
|
}[] | undefined;
|
|
2395
|
+
test?: {
|
|
2396
|
+
with?: ({
|
|
2397
|
+
workspace: string;
|
|
2398
|
+
} | {
|
|
2399
|
+
npm: string;
|
|
2400
|
+
} | {
|
|
2401
|
+
url: string;
|
|
2402
|
+
sha256?: string | undefined;
|
|
2403
|
+
} | {
|
|
2404
|
+
path: string;
|
|
2405
|
+
} | {
|
|
2406
|
+
vendored: true;
|
|
2407
|
+
})[] | undefined;
|
|
2408
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2409
|
+
timeout?: number | undefined;
|
|
2410
|
+
model?: string | undefined;
|
|
2411
|
+
maxTurns?: number | undefined;
|
|
2412
|
+
maxBudgetUsd?: number | undefined;
|
|
2413
|
+
stall?: number | undefined;
|
|
2414
|
+
evals?: string | undefined;
|
|
2415
|
+
experimenterPrompt?: string | undefined;
|
|
2416
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2417
|
+
baseline?: boolean | undefined;
|
|
2418
|
+
skillCreator?: {
|
|
2419
|
+
workspace: string;
|
|
2420
|
+
} | {
|
|
2421
|
+
npm: string;
|
|
2422
|
+
} | {
|
|
2423
|
+
url: string;
|
|
2424
|
+
sha256?: string | undefined;
|
|
2425
|
+
} | {
|
|
2426
|
+
path: string;
|
|
2427
|
+
} | {
|
|
2428
|
+
vendored: true;
|
|
2429
|
+
} | undefined;
|
|
2430
|
+
optional?: ({
|
|
2431
|
+
workspace: string;
|
|
2432
|
+
} | {
|
|
2433
|
+
npm: string;
|
|
2434
|
+
} | {
|
|
2435
|
+
url: string;
|
|
2436
|
+
sha256?: string | undefined;
|
|
2437
|
+
} | {
|
|
2438
|
+
path: string;
|
|
2439
|
+
} | {
|
|
2440
|
+
vendored: true;
|
|
2441
|
+
})[] | undefined;
|
|
2442
|
+
} | undefined;
|
|
1131
2443
|
} | undefined;
|
|
1132
2444
|
config?: Record<string, {
|
|
1133
2445
|
validation?: {
|
|
@@ -1155,6 +2467,54 @@ export declare const SkillsConfigSchema: z.ZodObject<{
|
|
|
1155
2467
|
source: string;
|
|
1156
2468
|
dest: string;
|
|
1157
2469
|
}[] | undefined;
|
|
2470
|
+
test?: {
|
|
2471
|
+
with?: ({
|
|
2472
|
+
workspace: string;
|
|
2473
|
+
} | {
|
|
2474
|
+
npm: string;
|
|
2475
|
+
} | {
|
|
2476
|
+
url: string;
|
|
2477
|
+
sha256?: string | undefined;
|
|
2478
|
+
} | {
|
|
2479
|
+
path: string;
|
|
2480
|
+
} | {
|
|
2481
|
+
vendored: true;
|
|
2482
|
+
})[] | undefined;
|
|
2483
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
2484
|
+
timeout?: number | undefined;
|
|
2485
|
+
model?: string | undefined;
|
|
2486
|
+
maxTurns?: number | undefined;
|
|
2487
|
+
maxBudgetUsd?: number | undefined;
|
|
2488
|
+
stall?: number | undefined;
|
|
2489
|
+
evals?: string | undefined;
|
|
2490
|
+
experimenterPrompt?: string | undefined;
|
|
2491
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
2492
|
+
baseline?: boolean | undefined;
|
|
2493
|
+
skillCreator?: {
|
|
2494
|
+
workspace: string;
|
|
2495
|
+
} | {
|
|
2496
|
+
npm: string;
|
|
2497
|
+
} | {
|
|
2498
|
+
url: string;
|
|
2499
|
+
sha256?: string | undefined;
|
|
2500
|
+
} | {
|
|
2501
|
+
path: string;
|
|
2502
|
+
} | {
|
|
2503
|
+
vendored: true;
|
|
2504
|
+
} | undefined;
|
|
2505
|
+
optional?: ({
|
|
2506
|
+
workspace: string;
|
|
2507
|
+
} | {
|
|
2508
|
+
npm: string;
|
|
2509
|
+
} | {
|
|
2510
|
+
url: string;
|
|
2511
|
+
sha256?: string | undefined;
|
|
2512
|
+
} | {
|
|
2513
|
+
path: string;
|
|
2514
|
+
} | {
|
|
2515
|
+
vendored: true;
|
|
2516
|
+
})[] | undefined;
|
|
2517
|
+
} | undefined;
|
|
1158
2518
|
}> | undefined;
|
|
1159
2519
|
}>;
|
|
1160
2520
|
export type SkillsConfig = z.infer<typeof SkillsConfigSchema>;
|
|
@@ -1638,6 +2998,214 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1638
2998
|
source: string;
|
|
1639
2999
|
dest: string;
|
|
1640
3000
|
}>, "many">>;
|
|
3001
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
3002
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3003
|
+
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
3004
|
+
maxBudgetUsd: z.ZodOptional<z.ZodNumber>;
|
|
3005
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3006
|
+
stall: z.ZodOptional<z.ZodNumber>;
|
|
3007
|
+
evals: z.ZodOptional<z.ZodString>;
|
|
3008
|
+
experimenterPrompt: z.ZodOptional<z.ZodString>;
|
|
3009
|
+
auth: z.ZodOptional<z.ZodEnum<["inherit", "subscription", "api-key", "auto"]>>;
|
|
3010
|
+
requireAuth: z.ZodOptional<z.ZodEnum<["subscription", "api-key"]>>;
|
|
3011
|
+
baseline: z.ZodOptional<z.ZodBoolean>;
|
|
3012
|
+
skillCreator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3013
|
+
workspace: z.ZodString;
|
|
3014
|
+
}, "strict", z.ZodTypeAny, {
|
|
3015
|
+
workspace: string;
|
|
3016
|
+
}, {
|
|
3017
|
+
workspace: string;
|
|
3018
|
+
}>, z.ZodObject<{
|
|
3019
|
+
npm: z.ZodString;
|
|
3020
|
+
}, "strict", z.ZodTypeAny, {
|
|
3021
|
+
npm: string;
|
|
3022
|
+
}, {
|
|
3023
|
+
npm: string;
|
|
3024
|
+
}>, z.ZodObject<{
|
|
3025
|
+
url: z.ZodString;
|
|
3026
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3027
|
+
}, "strict", z.ZodTypeAny, {
|
|
3028
|
+
url: string;
|
|
3029
|
+
sha256?: string | undefined;
|
|
3030
|
+
}, {
|
|
3031
|
+
url: string;
|
|
3032
|
+
sha256?: string | undefined;
|
|
3033
|
+
}>, z.ZodObject<{
|
|
3034
|
+
path: z.ZodString;
|
|
3035
|
+
}, "strict", z.ZodTypeAny, {
|
|
3036
|
+
path: string;
|
|
3037
|
+
}, {
|
|
3038
|
+
path: string;
|
|
3039
|
+
}>, z.ZodObject<{
|
|
3040
|
+
vendored: z.ZodLiteral<true>;
|
|
3041
|
+
}, "strict", z.ZodTypeAny, {
|
|
3042
|
+
vendored: true;
|
|
3043
|
+
}, {
|
|
3044
|
+
vendored: true;
|
|
3045
|
+
}>]>>;
|
|
3046
|
+
with: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3047
|
+
workspace: z.ZodString;
|
|
3048
|
+
}, "strict", z.ZodTypeAny, {
|
|
3049
|
+
workspace: string;
|
|
3050
|
+
}, {
|
|
3051
|
+
workspace: string;
|
|
3052
|
+
}>, z.ZodObject<{
|
|
3053
|
+
npm: z.ZodString;
|
|
3054
|
+
}, "strict", z.ZodTypeAny, {
|
|
3055
|
+
npm: string;
|
|
3056
|
+
}, {
|
|
3057
|
+
npm: string;
|
|
3058
|
+
}>, z.ZodObject<{
|
|
3059
|
+
url: z.ZodString;
|
|
3060
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3061
|
+
}, "strict", z.ZodTypeAny, {
|
|
3062
|
+
url: string;
|
|
3063
|
+
sha256?: string | undefined;
|
|
3064
|
+
}, {
|
|
3065
|
+
url: string;
|
|
3066
|
+
sha256?: string | undefined;
|
|
3067
|
+
}>, z.ZodObject<{
|
|
3068
|
+
path: z.ZodString;
|
|
3069
|
+
}, "strict", z.ZodTypeAny, {
|
|
3070
|
+
path: string;
|
|
3071
|
+
}, {
|
|
3072
|
+
path: string;
|
|
3073
|
+
}>, z.ZodObject<{
|
|
3074
|
+
vendored: z.ZodLiteral<true>;
|
|
3075
|
+
}, "strict", z.ZodTypeAny, {
|
|
3076
|
+
vendored: true;
|
|
3077
|
+
}, {
|
|
3078
|
+
vendored: true;
|
|
3079
|
+
}>]>, "many">>;
|
|
3080
|
+
optional: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3081
|
+
workspace: z.ZodString;
|
|
3082
|
+
}, "strict", z.ZodTypeAny, {
|
|
3083
|
+
workspace: string;
|
|
3084
|
+
}, {
|
|
3085
|
+
workspace: string;
|
|
3086
|
+
}>, z.ZodObject<{
|
|
3087
|
+
npm: z.ZodString;
|
|
3088
|
+
}, "strict", z.ZodTypeAny, {
|
|
3089
|
+
npm: string;
|
|
3090
|
+
}, {
|
|
3091
|
+
npm: string;
|
|
3092
|
+
}>, z.ZodObject<{
|
|
3093
|
+
url: z.ZodString;
|
|
3094
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3095
|
+
}, "strict", z.ZodTypeAny, {
|
|
3096
|
+
url: string;
|
|
3097
|
+
sha256?: string | undefined;
|
|
3098
|
+
}, {
|
|
3099
|
+
url: string;
|
|
3100
|
+
sha256?: string | undefined;
|
|
3101
|
+
}>, z.ZodObject<{
|
|
3102
|
+
path: z.ZodString;
|
|
3103
|
+
}, "strict", z.ZodTypeAny, {
|
|
3104
|
+
path: string;
|
|
3105
|
+
}, {
|
|
3106
|
+
path: string;
|
|
3107
|
+
}>, z.ZodObject<{
|
|
3108
|
+
vendored: z.ZodLiteral<true>;
|
|
3109
|
+
}, "strict", z.ZodTypeAny, {
|
|
3110
|
+
vendored: true;
|
|
3111
|
+
}, {
|
|
3112
|
+
vendored: true;
|
|
3113
|
+
}>]>, "many">>;
|
|
3114
|
+
}, "strict", z.ZodTypeAny, {
|
|
3115
|
+
with?: ({
|
|
3116
|
+
workspace: string;
|
|
3117
|
+
} | {
|
|
3118
|
+
npm: string;
|
|
3119
|
+
} | {
|
|
3120
|
+
url: string;
|
|
3121
|
+
sha256?: string | undefined;
|
|
3122
|
+
} | {
|
|
3123
|
+
path: string;
|
|
3124
|
+
} | {
|
|
3125
|
+
vendored: true;
|
|
3126
|
+
})[] | undefined;
|
|
3127
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3128
|
+
timeout?: number | undefined;
|
|
3129
|
+
model?: string | undefined;
|
|
3130
|
+
maxTurns?: number | undefined;
|
|
3131
|
+
maxBudgetUsd?: number | undefined;
|
|
3132
|
+
stall?: number | undefined;
|
|
3133
|
+
evals?: string | undefined;
|
|
3134
|
+
experimenterPrompt?: string | undefined;
|
|
3135
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3136
|
+
baseline?: boolean | undefined;
|
|
3137
|
+
skillCreator?: {
|
|
3138
|
+
workspace: string;
|
|
3139
|
+
} | {
|
|
3140
|
+
npm: string;
|
|
3141
|
+
} | {
|
|
3142
|
+
url: string;
|
|
3143
|
+
sha256?: string | undefined;
|
|
3144
|
+
} | {
|
|
3145
|
+
path: string;
|
|
3146
|
+
} | {
|
|
3147
|
+
vendored: true;
|
|
3148
|
+
} | undefined;
|
|
3149
|
+
optional?: ({
|
|
3150
|
+
workspace: string;
|
|
3151
|
+
} | {
|
|
3152
|
+
npm: string;
|
|
3153
|
+
} | {
|
|
3154
|
+
url: string;
|
|
3155
|
+
sha256?: string | undefined;
|
|
3156
|
+
} | {
|
|
3157
|
+
path: string;
|
|
3158
|
+
} | {
|
|
3159
|
+
vendored: true;
|
|
3160
|
+
})[] | undefined;
|
|
3161
|
+
}, {
|
|
3162
|
+
with?: ({
|
|
3163
|
+
workspace: string;
|
|
3164
|
+
} | {
|
|
3165
|
+
npm: string;
|
|
3166
|
+
} | {
|
|
3167
|
+
url: string;
|
|
3168
|
+
sha256?: string | undefined;
|
|
3169
|
+
} | {
|
|
3170
|
+
path: string;
|
|
3171
|
+
} | {
|
|
3172
|
+
vendored: true;
|
|
3173
|
+
})[] | undefined;
|
|
3174
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3175
|
+
timeout?: number | undefined;
|
|
3176
|
+
model?: string | undefined;
|
|
3177
|
+
maxTurns?: number | undefined;
|
|
3178
|
+
maxBudgetUsd?: number | undefined;
|
|
3179
|
+
stall?: number | undefined;
|
|
3180
|
+
evals?: string | undefined;
|
|
3181
|
+
experimenterPrompt?: string | undefined;
|
|
3182
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3183
|
+
baseline?: boolean | undefined;
|
|
3184
|
+
skillCreator?: {
|
|
3185
|
+
workspace: string;
|
|
3186
|
+
} | {
|
|
3187
|
+
npm: string;
|
|
3188
|
+
} | {
|
|
3189
|
+
url: string;
|
|
3190
|
+
sha256?: string | undefined;
|
|
3191
|
+
} | {
|
|
3192
|
+
path: string;
|
|
3193
|
+
} | {
|
|
3194
|
+
vendored: true;
|
|
3195
|
+
} | undefined;
|
|
3196
|
+
optional?: ({
|
|
3197
|
+
workspace: string;
|
|
3198
|
+
} | {
|
|
3199
|
+
npm: string;
|
|
3200
|
+
} | {
|
|
3201
|
+
url: string;
|
|
3202
|
+
sha256?: string | undefined;
|
|
3203
|
+
} | {
|
|
3204
|
+
path: string;
|
|
3205
|
+
} | {
|
|
3206
|
+
vendored: true;
|
|
3207
|
+
})[] | undefined;
|
|
3208
|
+
}>>;
|
|
1641
3209
|
}, "strict", z.ZodTypeAny, {
|
|
1642
3210
|
validation?: {
|
|
1643
3211
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -1664,6 +3232,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1664
3232
|
source: string;
|
|
1665
3233
|
dest: string;
|
|
1666
3234
|
}[] | undefined;
|
|
3235
|
+
test?: {
|
|
3236
|
+
with?: ({
|
|
3237
|
+
workspace: string;
|
|
3238
|
+
} | {
|
|
3239
|
+
npm: string;
|
|
3240
|
+
} | {
|
|
3241
|
+
url: string;
|
|
3242
|
+
sha256?: string | undefined;
|
|
3243
|
+
} | {
|
|
3244
|
+
path: string;
|
|
3245
|
+
} | {
|
|
3246
|
+
vendored: true;
|
|
3247
|
+
})[] | undefined;
|
|
3248
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3249
|
+
timeout?: number | undefined;
|
|
3250
|
+
model?: string | undefined;
|
|
3251
|
+
maxTurns?: number | undefined;
|
|
3252
|
+
maxBudgetUsd?: number | undefined;
|
|
3253
|
+
stall?: number | undefined;
|
|
3254
|
+
evals?: string | undefined;
|
|
3255
|
+
experimenterPrompt?: string | undefined;
|
|
3256
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3257
|
+
baseline?: boolean | undefined;
|
|
3258
|
+
skillCreator?: {
|
|
3259
|
+
workspace: string;
|
|
3260
|
+
} | {
|
|
3261
|
+
npm: string;
|
|
3262
|
+
} | {
|
|
3263
|
+
url: string;
|
|
3264
|
+
sha256?: string | undefined;
|
|
3265
|
+
} | {
|
|
3266
|
+
path: string;
|
|
3267
|
+
} | {
|
|
3268
|
+
vendored: true;
|
|
3269
|
+
} | undefined;
|
|
3270
|
+
optional?: ({
|
|
3271
|
+
workspace: string;
|
|
3272
|
+
} | {
|
|
3273
|
+
npm: string;
|
|
3274
|
+
} | {
|
|
3275
|
+
url: string;
|
|
3276
|
+
sha256?: string | undefined;
|
|
3277
|
+
} | {
|
|
3278
|
+
path: string;
|
|
3279
|
+
} | {
|
|
3280
|
+
vendored: true;
|
|
3281
|
+
})[] | undefined;
|
|
3282
|
+
} | undefined;
|
|
1667
3283
|
}, {
|
|
1668
3284
|
validation?: {
|
|
1669
3285
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -1690,6 +3306,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1690
3306
|
source: string;
|
|
1691
3307
|
dest: string;
|
|
1692
3308
|
}[] | undefined;
|
|
3309
|
+
test?: {
|
|
3310
|
+
with?: ({
|
|
3311
|
+
workspace: string;
|
|
3312
|
+
} | {
|
|
3313
|
+
npm: string;
|
|
3314
|
+
} | {
|
|
3315
|
+
url: string;
|
|
3316
|
+
sha256?: string | undefined;
|
|
3317
|
+
} | {
|
|
3318
|
+
path: string;
|
|
3319
|
+
} | {
|
|
3320
|
+
vendored: true;
|
|
3321
|
+
})[] | undefined;
|
|
3322
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3323
|
+
timeout?: number | undefined;
|
|
3324
|
+
model?: string | undefined;
|
|
3325
|
+
maxTurns?: number | undefined;
|
|
3326
|
+
maxBudgetUsd?: number | undefined;
|
|
3327
|
+
stall?: number | undefined;
|
|
3328
|
+
evals?: string | undefined;
|
|
3329
|
+
experimenterPrompt?: string | undefined;
|
|
3330
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3331
|
+
baseline?: boolean | undefined;
|
|
3332
|
+
skillCreator?: {
|
|
3333
|
+
workspace: string;
|
|
3334
|
+
} | {
|
|
3335
|
+
npm: string;
|
|
3336
|
+
} | {
|
|
3337
|
+
url: string;
|
|
3338
|
+
sha256?: string | undefined;
|
|
3339
|
+
} | {
|
|
3340
|
+
path: string;
|
|
3341
|
+
} | {
|
|
3342
|
+
vendored: true;
|
|
3343
|
+
} | undefined;
|
|
3344
|
+
optional?: ({
|
|
3345
|
+
workspace: string;
|
|
3346
|
+
} | {
|
|
3347
|
+
npm: string;
|
|
3348
|
+
} | {
|
|
3349
|
+
url: string;
|
|
3350
|
+
sha256?: string | undefined;
|
|
3351
|
+
} | {
|
|
3352
|
+
path: string;
|
|
3353
|
+
} | {
|
|
3354
|
+
vendored: true;
|
|
3355
|
+
})[] | undefined;
|
|
3356
|
+
} | undefined;
|
|
1693
3357
|
}>>;
|
|
1694
3358
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1695
3359
|
publish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1763,6 +3427,214 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1763
3427
|
source: string;
|
|
1764
3428
|
dest: string;
|
|
1765
3429
|
}>, "many">>;
|
|
3430
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
3431
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3432
|
+
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
3433
|
+
maxBudgetUsd: z.ZodOptional<z.ZodNumber>;
|
|
3434
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3435
|
+
stall: z.ZodOptional<z.ZodNumber>;
|
|
3436
|
+
evals: z.ZodOptional<z.ZodString>;
|
|
3437
|
+
experimenterPrompt: z.ZodOptional<z.ZodString>;
|
|
3438
|
+
auth: z.ZodOptional<z.ZodEnum<["inherit", "subscription", "api-key", "auto"]>>;
|
|
3439
|
+
requireAuth: z.ZodOptional<z.ZodEnum<["subscription", "api-key"]>>;
|
|
3440
|
+
baseline: z.ZodOptional<z.ZodBoolean>;
|
|
3441
|
+
skillCreator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3442
|
+
workspace: z.ZodString;
|
|
3443
|
+
}, "strict", z.ZodTypeAny, {
|
|
3444
|
+
workspace: string;
|
|
3445
|
+
}, {
|
|
3446
|
+
workspace: string;
|
|
3447
|
+
}>, z.ZodObject<{
|
|
3448
|
+
npm: z.ZodString;
|
|
3449
|
+
}, "strict", z.ZodTypeAny, {
|
|
3450
|
+
npm: string;
|
|
3451
|
+
}, {
|
|
3452
|
+
npm: string;
|
|
3453
|
+
}>, z.ZodObject<{
|
|
3454
|
+
url: z.ZodString;
|
|
3455
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3456
|
+
}, "strict", z.ZodTypeAny, {
|
|
3457
|
+
url: string;
|
|
3458
|
+
sha256?: string | undefined;
|
|
3459
|
+
}, {
|
|
3460
|
+
url: string;
|
|
3461
|
+
sha256?: string | undefined;
|
|
3462
|
+
}>, z.ZodObject<{
|
|
3463
|
+
path: z.ZodString;
|
|
3464
|
+
}, "strict", z.ZodTypeAny, {
|
|
3465
|
+
path: string;
|
|
3466
|
+
}, {
|
|
3467
|
+
path: string;
|
|
3468
|
+
}>, z.ZodObject<{
|
|
3469
|
+
vendored: z.ZodLiteral<true>;
|
|
3470
|
+
}, "strict", z.ZodTypeAny, {
|
|
3471
|
+
vendored: true;
|
|
3472
|
+
}, {
|
|
3473
|
+
vendored: true;
|
|
3474
|
+
}>]>>;
|
|
3475
|
+
with: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3476
|
+
workspace: z.ZodString;
|
|
3477
|
+
}, "strict", z.ZodTypeAny, {
|
|
3478
|
+
workspace: string;
|
|
3479
|
+
}, {
|
|
3480
|
+
workspace: string;
|
|
3481
|
+
}>, z.ZodObject<{
|
|
3482
|
+
npm: z.ZodString;
|
|
3483
|
+
}, "strict", z.ZodTypeAny, {
|
|
3484
|
+
npm: string;
|
|
3485
|
+
}, {
|
|
3486
|
+
npm: string;
|
|
3487
|
+
}>, z.ZodObject<{
|
|
3488
|
+
url: z.ZodString;
|
|
3489
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3490
|
+
}, "strict", z.ZodTypeAny, {
|
|
3491
|
+
url: string;
|
|
3492
|
+
sha256?: string | undefined;
|
|
3493
|
+
}, {
|
|
3494
|
+
url: string;
|
|
3495
|
+
sha256?: string | undefined;
|
|
3496
|
+
}>, z.ZodObject<{
|
|
3497
|
+
path: z.ZodString;
|
|
3498
|
+
}, "strict", z.ZodTypeAny, {
|
|
3499
|
+
path: string;
|
|
3500
|
+
}, {
|
|
3501
|
+
path: string;
|
|
3502
|
+
}>, z.ZodObject<{
|
|
3503
|
+
vendored: z.ZodLiteral<true>;
|
|
3504
|
+
}, "strict", z.ZodTypeAny, {
|
|
3505
|
+
vendored: true;
|
|
3506
|
+
}, {
|
|
3507
|
+
vendored: true;
|
|
3508
|
+
}>]>, "many">>;
|
|
3509
|
+
optional: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3510
|
+
workspace: z.ZodString;
|
|
3511
|
+
}, "strict", z.ZodTypeAny, {
|
|
3512
|
+
workspace: string;
|
|
3513
|
+
}, {
|
|
3514
|
+
workspace: string;
|
|
3515
|
+
}>, z.ZodObject<{
|
|
3516
|
+
npm: z.ZodString;
|
|
3517
|
+
}, "strict", z.ZodTypeAny, {
|
|
3518
|
+
npm: string;
|
|
3519
|
+
}, {
|
|
3520
|
+
npm: string;
|
|
3521
|
+
}>, z.ZodObject<{
|
|
3522
|
+
url: z.ZodString;
|
|
3523
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
3524
|
+
}, "strict", z.ZodTypeAny, {
|
|
3525
|
+
url: string;
|
|
3526
|
+
sha256?: string | undefined;
|
|
3527
|
+
}, {
|
|
3528
|
+
url: string;
|
|
3529
|
+
sha256?: string | undefined;
|
|
3530
|
+
}>, z.ZodObject<{
|
|
3531
|
+
path: z.ZodString;
|
|
3532
|
+
}, "strict", z.ZodTypeAny, {
|
|
3533
|
+
path: string;
|
|
3534
|
+
}, {
|
|
3535
|
+
path: string;
|
|
3536
|
+
}>, z.ZodObject<{
|
|
3537
|
+
vendored: z.ZodLiteral<true>;
|
|
3538
|
+
}, "strict", z.ZodTypeAny, {
|
|
3539
|
+
vendored: true;
|
|
3540
|
+
}, {
|
|
3541
|
+
vendored: true;
|
|
3542
|
+
}>]>, "many">>;
|
|
3543
|
+
}, "strict", z.ZodTypeAny, {
|
|
3544
|
+
with?: ({
|
|
3545
|
+
workspace: string;
|
|
3546
|
+
} | {
|
|
3547
|
+
npm: string;
|
|
3548
|
+
} | {
|
|
3549
|
+
url: string;
|
|
3550
|
+
sha256?: string | undefined;
|
|
3551
|
+
} | {
|
|
3552
|
+
path: string;
|
|
3553
|
+
} | {
|
|
3554
|
+
vendored: true;
|
|
3555
|
+
})[] | undefined;
|
|
3556
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3557
|
+
timeout?: number | undefined;
|
|
3558
|
+
model?: string | undefined;
|
|
3559
|
+
maxTurns?: number | undefined;
|
|
3560
|
+
maxBudgetUsd?: number | undefined;
|
|
3561
|
+
stall?: number | undefined;
|
|
3562
|
+
evals?: string | undefined;
|
|
3563
|
+
experimenterPrompt?: string | undefined;
|
|
3564
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3565
|
+
baseline?: boolean | undefined;
|
|
3566
|
+
skillCreator?: {
|
|
3567
|
+
workspace: string;
|
|
3568
|
+
} | {
|
|
3569
|
+
npm: string;
|
|
3570
|
+
} | {
|
|
3571
|
+
url: string;
|
|
3572
|
+
sha256?: string | undefined;
|
|
3573
|
+
} | {
|
|
3574
|
+
path: string;
|
|
3575
|
+
} | {
|
|
3576
|
+
vendored: true;
|
|
3577
|
+
} | undefined;
|
|
3578
|
+
optional?: ({
|
|
3579
|
+
workspace: string;
|
|
3580
|
+
} | {
|
|
3581
|
+
npm: string;
|
|
3582
|
+
} | {
|
|
3583
|
+
url: string;
|
|
3584
|
+
sha256?: string | undefined;
|
|
3585
|
+
} | {
|
|
3586
|
+
path: string;
|
|
3587
|
+
} | {
|
|
3588
|
+
vendored: true;
|
|
3589
|
+
})[] | undefined;
|
|
3590
|
+
}, {
|
|
3591
|
+
with?: ({
|
|
3592
|
+
workspace: string;
|
|
3593
|
+
} | {
|
|
3594
|
+
npm: string;
|
|
3595
|
+
} | {
|
|
3596
|
+
url: string;
|
|
3597
|
+
sha256?: string | undefined;
|
|
3598
|
+
} | {
|
|
3599
|
+
path: string;
|
|
3600
|
+
} | {
|
|
3601
|
+
vendored: true;
|
|
3602
|
+
})[] | undefined;
|
|
3603
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3604
|
+
timeout?: number | undefined;
|
|
3605
|
+
model?: string | undefined;
|
|
3606
|
+
maxTurns?: number | undefined;
|
|
3607
|
+
maxBudgetUsd?: number | undefined;
|
|
3608
|
+
stall?: number | undefined;
|
|
3609
|
+
evals?: string | undefined;
|
|
3610
|
+
experimenterPrompt?: string | undefined;
|
|
3611
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3612
|
+
baseline?: boolean | undefined;
|
|
3613
|
+
skillCreator?: {
|
|
3614
|
+
workspace: string;
|
|
3615
|
+
} | {
|
|
3616
|
+
npm: string;
|
|
3617
|
+
} | {
|
|
3618
|
+
url: string;
|
|
3619
|
+
sha256?: string | undefined;
|
|
3620
|
+
} | {
|
|
3621
|
+
path: string;
|
|
3622
|
+
} | {
|
|
3623
|
+
vendored: true;
|
|
3624
|
+
} | undefined;
|
|
3625
|
+
optional?: ({
|
|
3626
|
+
workspace: string;
|
|
3627
|
+
} | {
|
|
3628
|
+
npm: string;
|
|
3629
|
+
} | {
|
|
3630
|
+
url: string;
|
|
3631
|
+
sha256?: string | undefined;
|
|
3632
|
+
} | {
|
|
3633
|
+
path: string;
|
|
3634
|
+
} | {
|
|
3635
|
+
vendored: true;
|
|
3636
|
+
})[] | undefined;
|
|
3637
|
+
}>>;
|
|
1766
3638
|
}, "strict", z.ZodTypeAny, {
|
|
1767
3639
|
validation?: {
|
|
1768
3640
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -1789,6 +3661,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1789
3661
|
source: string;
|
|
1790
3662
|
dest: string;
|
|
1791
3663
|
}[] | undefined;
|
|
3664
|
+
test?: {
|
|
3665
|
+
with?: ({
|
|
3666
|
+
workspace: string;
|
|
3667
|
+
} | {
|
|
3668
|
+
npm: string;
|
|
3669
|
+
} | {
|
|
3670
|
+
url: string;
|
|
3671
|
+
sha256?: string | undefined;
|
|
3672
|
+
} | {
|
|
3673
|
+
path: string;
|
|
3674
|
+
} | {
|
|
3675
|
+
vendored: true;
|
|
3676
|
+
})[] | undefined;
|
|
3677
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3678
|
+
timeout?: number | undefined;
|
|
3679
|
+
model?: string | undefined;
|
|
3680
|
+
maxTurns?: number | undefined;
|
|
3681
|
+
maxBudgetUsd?: number | undefined;
|
|
3682
|
+
stall?: number | undefined;
|
|
3683
|
+
evals?: string | undefined;
|
|
3684
|
+
experimenterPrompt?: string | undefined;
|
|
3685
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3686
|
+
baseline?: boolean | undefined;
|
|
3687
|
+
skillCreator?: {
|
|
3688
|
+
workspace: string;
|
|
3689
|
+
} | {
|
|
3690
|
+
npm: string;
|
|
3691
|
+
} | {
|
|
3692
|
+
url: string;
|
|
3693
|
+
sha256?: string | undefined;
|
|
3694
|
+
} | {
|
|
3695
|
+
path: string;
|
|
3696
|
+
} | {
|
|
3697
|
+
vendored: true;
|
|
3698
|
+
} | undefined;
|
|
3699
|
+
optional?: ({
|
|
3700
|
+
workspace: string;
|
|
3701
|
+
} | {
|
|
3702
|
+
npm: string;
|
|
3703
|
+
} | {
|
|
3704
|
+
url: string;
|
|
3705
|
+
sha256?: string | undefined;
|
|
3706
|
+
} | {
|
|
3707
|
+
path: string;
|
|
3708
|
+
} | {
|
|
3709
|
+
vendored: true;
|
|
3710
|
+
})[] | undefined;
|
|
3711
|
+
} | undefined;
|
|
1792
3712
|
}, {
|
|
1793
3713
|
validation?: {
|
|
1794
3714
|
severity?: Partial<Record<"LINK_OUTSIDE_PROJECT" | "LINK_TARGETS_DIRECTORY" | "LINK_TO_NAVIGATION_FILE" | "LINK_TO_GITIGNORED_FILE" | "LINK_MISSING_TARGET" | "LINK_DEFERRED_ARTIFACT" | "LINK_TO_SKILL_DEFINITION" | "LINK_DROPPED_BY_DEPTH" | "PACKAGED_UNREFERENCED_FILE" | "PACKAGED_BROKEN_LINK" | "DUPLICATE_RESOURCE_ID" | "SKILL_LENGTH_EXCEEDS_RECOMMENDED" | "SKILL_TOTAL_SIZE_LARGE" | "SKILL_TOO_MANY_FILES" | "REFERENCE_TOO_DEEP" | "DESCRIPTION_TOO_VAGUE" | "NO_PROGRESSIVE_DISCLOSURE" | "SKILL_DESCRIPTION_OVER_CLAUDE_CODE_LIMIT" | "SKILL_DESCRIPTION_FILLER_OPENER" | "SKILL_DESCRIPTION_WRONG_PERSON" | "SKILL_CLAUDE_PLUGIN_NAME_MISMATCH" | "SKILL_NAME_MISMATCHES_DIR" | "RESERVED_WORD_IN_NAME" | "SKILL_TIME_SENSITIVE_CONTENT" | "SKILL_FRONTMATTER_EXTRA_FIELDS" | "SKILL_CROSS_SKILL_AUTH_UNDECLARED" | "SKILL_DESCRIPTION_STYLE_MIXED_IN_PACKAGE" | "PLUGIN_MISSING_DESCRIPTION" | "PLUGIN_MISSING_AUTHOR" | "PLUGIN_MISSING_LICENSE" | "PLUGIN_NAME_NOT_KEBAB_CASE" | "SKILL_NAME_NOT_KEBAB_CASE" | "SKILL_REFERENCES_BUT_NO_LINKS" | "SKILL_BODY_NOT_IMPERATIVE" | "CAPABILITY_LOCAL_SHELL" | "CAPABILITY_EXTERNAL_CLI" | "CAPABILITY_BROWSER_AUTH" | "COMPAT_TARGET_INCOMPATIBLE" | "COMPAT_TARGET_NEEDS_REVIEW" | "COMPAT_TARGET_UNDECLARED" | "ALLOW_EXPIRED" | "ALLOW_UNUSED" | "COMPONENT_DECLARED_BUT_MISSING" | "COMPONENT_PRESENT_BUT_UNDECLARED" | "REFERENCE_TARGET_MISSING" | "MARKETPLACE_PLUGIN_SOURCE_MISSING" | "LINK_BROKEN_FILE" | "LINK_BROKEN_ANCHOR" | "LINK_UNKNOWN" | "LINK_TO_GITIGNORED" | "MALFORMED_HTML" | "FRONTMATTER_MISSING" | "FRONTMATTER_INVALID_YAML" | "FRONTMATTER_SCHEMA_ERROR" | "FRONTMATTER_LINK_BROKEN" | "FRONTMATTER_ANCHOR_MISSING" | "FRONTMATTER_LINK_TO_GITIGNORED" | "FRONTMATTER_UNKNOWN_LINK" | "EXTERNAL_URL_DEAD" | "EXTERNAL_URL_TIMEOUT" | "EXTERNAL_URL_ERROR", "error" | "warning" | "info" | "ignore">> | undefined;
|
|
@@ -1815,6 +3735,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1815
3735
|
source: string;
|
|
1816
3736
|
dest: string;
|
|
1817
3737
|
}[] | undefined;
|
|
3738
|
+
test?: {
|
|
3739
|
+
with?: ({
|
|
3740
|
+
workspace: string;
|
|
3741
|
+
} | {
|
|
3742
|
+
npm: string;
|
|
3743
|
+
} | {
|
|
3744
|
+
url: string;
|
|
3745
|
+
sha256?: string | undefined;
|
|
3746
|
+
} | {
|
|
3747
|
+
path: string;
|
|
3748
|
+
} | {
|
|
3749
|
+
vendored: true;
|
|
3750
|
+
})[] | undefined;
|
|
3751
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3752
|
+
timeout?: number | undefined;
|
|
3753
|
+
model?: string | undefined;
|
|
3754
|
+
maxTurns?: number | undefined;
|
|
3755
|
+
maxBudgetUsd?: number | undefined;
|
|
3756
|
+
stall?: number | undefined;
|
|
3757
|
+
evals?: string | undefined;
|
|
3758
|
+
experimenterPrompt?: string | undefined;
|
|
3759
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3760
|
+
baseline?: boolean | undefined;
|
|
3761
|
+
skillCreator?: {
|
|
3762
|
+
workspace: string;
|
|
3763
|
+
} | {
|
|
3764
|
+
npm: string;
|
|
3765
|
+
} | {
|
|
3766
|
+
url: string;
|
|
3767
|
+
sha256?: string | undefined;
|
|
3768
|
+
} | {
|
|
3769
|
+
path: string;
|
|
3770
|
+
} | {
|
|
3771
|
+
vendored: true;
|
|
3772
|
+
} | undefined;
|
|
3773
|
+
optional?: ({
|
|
3774
|
+
workspace: string;
|
|
3775
|
+
} | {
|
|
3776
|
+
npm: string;
|
|
3777
|
+
} | {
|
|
3778
|
+
url: string;
|
|
3779
|
+
sha256?: string | undefined;
|
|
3780
|
+
} | {
|
|
3781
|
+
path: string;
|
|
3782
|
+
} | {
|
|
3783
|
+
vendored: true;
|
|
3784
|
+
})[] | undefined;
|
|
3785
|
+
} | undefined;
|
|
1818
3786
|
}>>>;
|
|
1819
3787
|
}, "strict", z.ZodTypeAny, {
|
|
1820
3788
|
include: string[];
|
|
@@ -1845,6 +3813,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1845
3813
|
source: string;
|
|
1846
3814
|
dest: string;
|
|
1847
3815
|
}[] | undefined;
|
|
3816
|
+
test?: {
|
|
3817
|
+
with?: ({
|
|
3818
|
+
workspace: string;
|
|
3819
|
+
} | {
|
|
3820
|
+
npm: string;
|
|
3821
|
+
} | {
|
|
3822
|
+
url: string;
|
|
3823
|
+
sha256?: string | undefined;
|
|
3824
|
+
} | {
|
|
3825
|
+
path: string;
|
|
3826
|
+
} | {
|
|
3827
|
+
vendored: true;
|
|
3828
|
+
})[] | undefined;
|
|
3829
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3830
|
+
timeout?: number | undefined;
|
|
3831
|
+
model?: string | undefined;
|
|
3832
|
+
maxTurns?: number | undefined;
|
|
3833
|
+
maxBudgetUsd?: number | undefined;
|
|
3834
|
+
stall?: number | undefined;
|
|
3835
|
+
evals?: string | undefined;
|
|
3836
|
+
experimenterPrompt?: string | undefined;
|
|
3837
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3838
|
+
baseline?: boolean | undefined;
|
|
3839
|
+
skillCreator?: {
|
|
3840
|
+
workspace: string;
|
|
3841
|
+
} | {
|
|
3842
|
+
npm: string;
|
|
3843
|
+
} | {
|
|
3844
|
+
url: string;
|
|
3845
|
+
sha256?: string | undefined;
|
|
3846
|
+
} | {
|
|
3847
|
+
path: string;
|
|
3848
|
+
} | {
|
|
3849
|
+
vendored: true;
|
|
3850
|
+
} | undefined;
|
|
3851
|
+
optional?: ({
|
|
3852
|
+
workspace: string;
|
|
3853
|
+
} | {
|
|
3854
|
+
npm: string;
|
|
3855
|
+
} | {
|
|
3856
|
+
url: string;
|
|
3857
|
+
sha256?: string | undefined;
|
|
3858
|
+
} | {
|
|
3859
|
+
path: string;
|
|
3860
|
+
} | {
|
|
3861
|
+
vendored: true;
|
|
3862
|
+
})[] | undefined;
|
|
3863
|
+
} | undefined;
|
|
1848
3864
|
} | undefined;
|
|
1849
3865
|
config?: Record<string, {
|
|
1850
3866
|
validation?: {
|
|
@@ -1872,6 +3888,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1872
3888
|
source: string;
|
|
1873
3889
|
dest: string;
|
|
1874
3890
|
}[] | undefined;
|
|
3891
|
+
test?: {
|
|
3892
|
+
with?: ({
|
|
3893
|
+
workspace: string;
|
|
3894
|
+
} | {
|
|
3895
|
+
npm: string;
|
|
3896
|
+
} | {
|
|
3897
|
+
url: string;
|
|
3898
|
+
sha256?: string | undefined;
|
|
3899
|
+
} | {
|
|
3900
|
+
path: string;
|
|
3901
|
+
} | {
|
|
3902
|
+
vendored: true;
|
|
3903
|
+
})[] | undefined;
|
|
3904
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3905
|
+
timeout?: number | undefined;
|
|
3906
|
+
model?: string | undefined;
|
|
3907
|
+
maxTurns?: number | undefined;
|
|
3908
|
+
maxBudgetUsd?: number | undefined;
|
|
3909
|
+
stall?: number | undefined;
|
|
3910
|
+
evals?: string | undefined;
|
|
3911
|
+
experimenterPrompt?: string | undefined;
|
|
3912
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3913
|
+
baseline?: boolean | undefined;
|
|
3914
|
+
skillCreator?: {
|
|
3915
|
+
workspace: string;
|
|
3916
|
+
} | {
|
|
3917
|
+
npm: string;
|
|
3918
|
+
} | {
|
|
3919
|
+
url: string;
|
|
3920
|
+
sha256?: string | undefined;
|
|
3921
|
+
} | {
|
|
3922
|
+
path: string;
|
|
3923
|
+
} | {
|
|
3924
|
+
vendored: true;
|
|
3925
|
+
} | undefined;
|
|
3926
|
+
optional?: ({
|
|
3927
|
+
workspace: string;
|
|
3928
|
+
} | {
|
|
3929
|
+
npm: string;
|
|
3930
|
+
} | {
|
|
3931
|
+
url: string;
|
|
3932
|
+
sha256?: string | undefined;
|
|
3933
|
+
} | {
|
|
3934
|
+
path: string;
|
|
3935
|
+
} | {
|
|
3936
|
+
vendored: true;
|
|
3937
|
+
})[] | undefined;
|
|
3938
|
+
} | undefined;
|
|
1875
3939
|
}> | undefined;
|
|
1876
3940
|
}, {
|
|
1877
3941
|
include: string[];
|
|
@@ -1902,6 +3966,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1902
3966
|
source: string;
|
|
1903
3967
|
dest: string;
|
|
1904
3968
|
}[] | undefined;
|
|
3969
|
+
test?: {
|
|
3970
|
+
with?: ({
|
|
3971
|
+
workspace: string;
|
|
3972
|
+
} | {
|
|
3973
|
+
npm: string;
|
|
3974
|
+
} | {
|
|
3975
|
+
url: string;
|
|
3976
|
+
sha256?: string | undefined;
|
|
3977
|
+
} | {
|
|
3978
|
+
path: string;
|
|
3979
|
+
} | {
|
|
3980
|
+
vendored: true;
|
|
3981
|
+
})[] | undefined;
|
|
3982
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
3983
|
+
timeout?: number | undefined;
|
|
3984
|
+
model?: string | undefined;
|
|
3985
|
+
maxTurns?: number | undefined;
|
|
3986
|
+
maxBudgetUsd?: number | undefined;
|
|
3987
|
+
stall?: number | undefined;
|
|
3988
|
+
evals?: string | undefined;
|
|
3989
|
+
experimenterPrompt?: string | undefined;
|
|
3990
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
3991
|
+
baseline?: boolean | undefined;
|
|
3992
|
+
skillCreator?: {
|
|
3993
|
+
workspace: string;
|
|
3994
|
+
} | {
|
|
3995
|
+
npm: string;
|
|
3996
|
+
} | {
|
|
3997
|
+
url: string;
|
|
3998
|
+
sha256?: string | undefined;
|
|
3999
|
+
} | {
|
|
4000
|
+
path: string;
|
|
4001
|
+
} | {
|
|
4002
|
+
vendored: true;
|
|
4003
|
+
} | undefined;
|
|
4004
|
+
optional?: ({
|
|
4005
|
+
workspace: string;
|
|
4006
|
+
} | {
|
|
4007
|
+
npm: string;
|
|
4008
|
+
} | {
|
|
4009
|
+
url: string;
|
|
4010
|
+
sha256?: string | undefined;
|
|
4011
|
+
} | {
|
|
4012
|
+
path: string;
|
|
4013
|
+
} | {
|
|
4014
|
+
vendored: true;
|
|
4015
|
+
})[] | undefined;
|
|
4016
|
+
} | undefined;
|
|
1905
4017
|
} | undefined;
|
|
1906
4018
|
config?: Record<string, {
|
|
1907
4019
|
validation?: {
|
|
@@ -1929,6 +4041,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1929
4041
|
source: string;
|
|
1930
4042
|
dest: string;
|
|
1931
4043
|
}[] | undefined;
|
|
4044
|
+
test?: {
|
|
4045
|
+
with?: ({
|
|
4046
|
+
workspace: string;
|
|
4047
|
+
} | {
|
|
4048
|
+
npm: string;
|
|
4049
|
+
} | {
|
|
4050
|
+
url: string;
|
|
4051
|
+
sha256?: string | undefined;
|
|
4052
|
+
} | {
|
|
4053
|
+
path: string;
|
|
4054
|
+
} | {
|
|
4055
|
+
vendored: true;
|
|
4056
|
+
})[] | undefined;
|
|
4057
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
4058
|
+
timeout?: number | undefined;
|
|
4059
|
+
model?: string | undefined;
|
|
4060
|
+
maxTurns?: number | undefined;
|
|
4061
|
+
maxBudgetUsd?: number | undefined;
|
|
4062
|
+
stall?: number | undefined;
|
|
4063
|
+
evals?: string | undefined;
|
|
4064
|
+
experimenterPrompt?: string | undefined;
|
|
4065
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
4066
|
+
baseline?: boolean | undefined;
|
|
4067
|
+
skillCreator?: {
|
|
4068
|
+
workspace: string;
|
|
4069
|
+
} | {
|
|
4070
|
+
npm: string;
|
|
4071
|
+
} | {
|
|
4072
|
+
url: string;
|
|
4073
|
+
sha256?: string | undefined;
|
|
4074
|
+
} | {
|
|
4075
|
+
path: string;
|
|
4076
|
+
} | {
|
|
4077
|
+
vendored: true;
|
|
4078
|
+
} | undefined;
|
|
4079
|
+
optional?: ({
|
|
4080
|
+
workspace: string;
|
|
4081
|
+
} | {
|
|
4082
|
+
npm: string;
|
|
4083
|
+
} | {
|
|
4084
|
+
url: string;
|
|
4085
|
+
sha256?: string | undefined;
|
|
4086
|
+
} | {
|
|
4087
|
+
path: string;
|
|
4088
|
+
} | {
|
|
4089
|
+
vendored: true;
|
|
4090
|
+
})[] | undefined;
|
|
4091
|
+
} | undefined;
|
|
1932
4092
|
}> | undefined;
|
|
1933
4093
|
}>>;
|
|
1934
4094
|
resources: z.ZodOptional<z.ZodObject<{
|
|
@@ -2564,6 +4724,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2564
4724
|
source: string;
|
|
2565
4725
|
dest: string;
|
|
2566
4726
|
}[] | undefined;
|
|
4727
|
+
test?: {
|
|
4728
|
+
with?: ({
|
|
4729
|
+
workspace: string;
|
|
4730
|
+
} | {
|
|
4731
|
+
npm: string;
|
|
4732
|
+
} | {
|
|
4733
|
+
url: string;
|
|
4734
|
+
sha256?: string | undefined;
|
|
4735
|
+
} | {
|
|
4736
|
+
path: string;
|
|
4737
|
+
} | {
|
|
4738
|
+
vendored: true;
|
|
4739
|
+
})[] | undefined;
|
|
4740
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
4741
|
+
timeout?: number | undefined;
|
|
4742
|
+
model?: string | undefined;
|
|
4743
|
+
maxTurns?: number | undefined;
|
|
4744
|
+
maxBudgetUsd?: number | undefined;
|
|
4745
|
+
stall?: number | undefined;
|
|
4746
|
+
evals?: string | undefined;
|
|
4747
|
+
experimenterPrompt?: string | undefined;
|
|
4748
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
4749
|
+
baseline?: boolean | undefined;
|
|
4750
|
+
skillCreator?: {
|
|
4751
|
+
workspace: string;
|
|
4752
|
+
} | {
|
|
4753
|
+
npm: string;
|
|
4754
|
+
} | {
|
|
4755
|
+
url: string;
|
|
4756
|
+
sha256?: string | undefined;
|
|
4757
|
+
} | {
|
|
4758
|
+
path: string;
|
|
4759
|
+
} | {
|
|
4760
|
+
vendored: true;
|
|
4761
|
+
} | undefined;
|
|
4762
|
+
optional?: ({
|
|
4763
|
+
workspace: string;
|
|
4764
|
+
} | {
|
|
4765
|
+
npm: string;
|
|
4766
|
+
} | {
|
|
4767
|
+
url: string;
|
|
4768
|
+
sha256?: string | undefined;
|
|
4769
|
+
} | {
|
|
4770
|
+
path: string;
|
|
4771
|
+
} | {
|
|
4772
|
+
vendored: true;
|
|
4773
|
+
})[] | undefined;
|
|
4774
|
+
} | undefined;
|
|
2567
4775
|
} | undefined;
|
|
2568
4776
|
config?: Record<string, {
|
|
2569
4777
|
validation?: {
|
|
@@ -2591,6 +4799,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2591
4799
|
source: string;
|
|
2592
4800
|
dest: string;
|
|
2593
4801
|
}[] | undefined;
|
|
4802
|
+
test?: {
|
|
4803
|
+
with?: ({
|
|
4804
|
+
workspace: string;
|
|
4805
|
+
} | {
|
|
4806
|
+
npm: string;
|
|
4807
|
+
} | {
|
|
4808
|
+
url: string;
|
|
4809
|
+
sha256?: string | undefined;
|
|
4810
|
+
} | {
|
|
4811
|
+
path: string;
|
|
4812
|
+
} | {
|
|
4813
|
+
vendored: true;
|
|
4814
|
+
})[] | undefined;
|
|
4815
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
4816
|
+
timeout?: number | undefined;
|
|
4817
|
+
model?: string | undefined;
|
|
4818
|
+
maxTurns?: number | undefined;
|
|
4819
|
+
maxBudgetUsd?: number | undefined;
|
|
4820
|
+
stall?: number | undefined;
|
|
4821
|
+
evals?: string | undefined;
|
|
4822
|
+
experimenterPrompt?: string | undefined;
|
|
4823
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
4824
|
+
baseline?: boolean | undefined;
|
|
4825
|
+
skillCreator?: {
|
|
4826
|
+
workspace: string;
|
|
4827
|
+
} | {
|
|
4828
|
+
npm: string;
|
|
4829
|
+
} | {
|
|
4830
|
+
url: string;
|
|
4831
|
+
sha256?: string | undefined;
|
|
4832
|
+
} | {
|
|
4833
|
+
path: string;
|
|
4834
|
+
} | {
|
|
4835
|
+
vendored: true;
|
|
4836
|
+
} | undefined;
|
|
4837
|
+
optional?: ({
|
|
4838
|
+
workspace: string;
|
|
4839
|
+
} | {
|
|
4840
|
+
npm: string;
|
|
4841
|
+
} | {
|
|
4842
|
+
url: string;
|
|
4843
|
+
sha256?: string | undefined;
|
|
4844
|
+
} | {
|
|
4845
|
+
path: string;
|
|
4846
|
+
} | {
|
|
4847
|
+
vendored: true;
|
|
4848
|
+
})[] | undefined;
|
|
4849
|
+
} | undefined;
|
|
2594
4850
|
}> | undefined;
|
|
2595
4851
|
} | undefined;
|
|
2596
4852
|
resources?: {
|
|
@@ -2714,6 +4970,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2714
4970
|
source: string;
|
|
2715
4971
|
dest: string;
|
|
2716
4972
|
}[] | undefined;
|
|
4973
|
+
test?: {
|
|
4974
|
+
with?: ({
|
|
4975
|
+
workspace: string;
|
|
4976
|
+
} | {
|
|
4977
|
+
npm: string;
|
|
4978
|
+
} | {
|
|
4979
|
+
url: string;
|
|
4980
|
+
sha256?: string | undefined;
|
|
4981
|
+
} | {
|
|
4982
|
+
path: string;
|
|
4983
|
+
} | {
|
|
4984
|
+
vendored: true;
|
|
4985
|
+
})[] | undefined;
|
|
4986
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
4987
|
+
timeout?: number | undefined;
|
|
4988
|
+
model?: string | undefined;
|
|
4989
|
+
maxTurns?: number | undefined;
|
|
4990
|
+
maxBudgetUsd?: number | undefined;
|
|
4991
|
+
stall?: number | undefined;
|
|
4992
|
+
evals?: string | undefined;
|
|
4993
|
+
experimenterPrompt?: string | undefined;
|
|
4994
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
4995
|
+
baseline?: boolean | undefined;
|
|
4996
|
+
skillCreator?: {
|
|
4997
|
+
workspace: string;
|
|
4998
|
+
} | {
|
|
4999
|
+
npm: string;
|
|
5000
|
+
} | {
|
|
5001
|
+
url: string;
|
|
5002
|
+
sha256?: string | undefined;
|
|
5003
|
+
} | {
|
|
5004
|
+
path: string;
|
|
5005
|
+
} | {
|
|
5006
|
+
vendored: true;
|
|
5007
|
+
} | undefined;
|
|
5008
|
+
optional?: ({
|
|
5009
|
+
workspace: string;
|
|
5010
|
+
} | {
|
|
5011
|
+
npm: string;
|
|
5012
|
+
} | {
|
|
5013
|
+
url: string;
|
|
5014
|
+
sha256?: string | undefined;
|
|
5015
|
+
} | {
|
|
5016
|
+
path: string;
|
|
5017
|
+
} | {
|
|
5018
|
+
vendored: true;
|
|
5019
|
+
})[] | undefined;
|
|
5020
|
+
} | undefined;
|
|
2717
5021
|
} | undefined;
|
|
2718
5022
|
config?: Record<string, {
|
|
2719
5023
|
validation?: {
|
|
@@ -2741,6 +5045,54 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2741
5045
|
source: string;
|
|
2742
5046
|
dest: string;
|
|
2743
5047
|
}[] | undefined;
|
|
5048
|
+
test?: {
|
|
5049
|
+
with?: ({
|
|
5050
|
+
workspace: string;
|
|
5051
|
+
} | {
|
|
5052
|
+
npm: string;
|
|
5053
|
+
} | {
|
|
5054
|
+
url: string;
|
|
5055
|
+
sha256?: string | undefined;
|
|
5056
|
+
} | {
|
|
5057
|
+
path: string;
|
|
5058
|
+
} | {
|
|
5059
|
+
vendored: true;
|
|
5060
|
+
})[] | undefined;
|
|
5061
|
+
auth?: "inherit" | "subscription" | "api-key" | "auto" | undefined;
|
|
5062
|
+
timeout?: number | undefined;
|
|
5063
|
+
model?: string | undefined;
|
|
5064
|
+
maxTurns?: number | undefined;
|
|
5065
|
+
maxBudgetUsd?: number | undefined;
|
|
5066
|
+
stall?: number | undefined;
|
|
5067
|
+
evals?: string | undefined;
|
|
5068
|
+
experimenterPrompt?: string | undefined;
|
|
5069
|
+
requireAuth?: "subscription" | "api-key" | undefined;
|
|
5070
|
+
baseline?: boolean | undefined;
|
|
5071
|
+
skillCreator?: {
|
|
5072
|
+
workspace: string;
|
|
5073
|
+
} | {
|
|
5074
|
+
npm: string;
|
|
5075
|
+
} | {
|
|
5076
|
+
url: string;
|
|
5077
|
+
sha256?: string | undefined;
|
|
5078
|
+
} | {
|
|
5079
|
+
path: string;
|
|
5080
|
+
} | {
|
|
5081
|
+
vendored: true;
|
|
5082
|
+
} | undefined;
|
|
5083
|
+
optional?: ({
|
|
5084
|
+
workspace: string;
|
|
5085
|
+
} | {
|
|
5086
|
+
npm: string;
|
|
5087
|
+
} | {
|
|
5088
|
+
url: string;
|
|
5089
|
+
sha256?: string | undefined;
|
|
5090
|
+
} | {
|
|
5091
|
+
path: string;
|
|
5092
|
+
} | {
|
|
5093
|
+
vendored: true;
|
|
5094
|
+
})[] | undefined;
|
|
5095
|
+
} | undefined;
|
|
2744
5096
|
}> | undefined;
|
|
2745
5097
|
} | undefined;
|
|
2746
5098
|
resources?: {
|