@mastra/agent-builder 0.0.1 → 0.0.2-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,32 +4,38 @@ export declare const agentBuilderWorkflows: {
4
4
  ref: import("zod").ZodOptional<import("zod").ZodString>;
5
5
  slug: import("zod").ZodOptional<import("zod").ZodString>;
6
6
  targetPath: import("zod").ZodOptional<import("zod").ZodString>;
7
+ variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
7
8
  }, "strip", import("zod").ZodTypeAny, {
8
9
  repo: string;
9
10
  slug?: string | undefined;
10
11
  ref?: string | undefined;
11
12
  targetPath?: string | undefined;
13
+ variables?: Record<string, string> | undefined;
12
14
  }, {
13
15
  repo: string;
14
16
  slug?: string | undefined;
15
17
  ref?: string | undefined;
16
18
  targetPath?: string | undefined;
19
+ variables?: Record<string, string> | undefined;
17
20
  }>, import("zod").ZodObject<{
18
21
  templateDir: import("zod").ZodString;
19
22
  commitSha: import("zod").ZodString;
20
23
  slug: import("zod").ZodString;
21
24
  success: import("zod").ZodOptional<import("zod").ZodBoolean>;
22
25
  error: import("zod").ZodOptional<import("zod").ZodString>;
26
+ targetPath: import("zod").ZodOptional<import("zod").ZodString>;
23
27
  }, "strip", import("zod").ZodTypeAny, {
24
28
  slug: string;
25
29
  commitSha: string;
26
30
  templateDir: string;
31
+ targetPath?: string | undefined;
27
32
  success?: boolean | undefined;
28
33
  error?: string | undefined;
29
34
  }, {
30
35
  slug: string;
31
36
  commitSha: string;
32
37
  templateDir: string;
38
+ targetPath?: string | undefined;
33
39
  success?: boolean | undefined;
34
40
  error?: string | undefined;
35
41
  }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("@mastra/core").DefaultEngineType> | import("@mastra/core").Step<"analyze-package", import("zod").ZodObject<{
@@ -38,16 +44,19 @@ export declare const agentBuilderWorkflows: {
38
44
  slug: import("zod").ZodString;
39
45
  success: import("zod").ZodOptional<import("zod").ZodBoolean>;
40
46
  error: import("zod").ZodOptional<import("zod").ZodString>;
47
+ targetPath: import("zod").ZodOptional<import("zod").ZodString>;
41
48
  }, "strip", import("zod").ZodTypeAny, {
42
49
  slug: string;
43
50
  commitSha: string;
44
51
  templateDir: string;
52
+ targetPath?: string | undefined;
45
53
  success?: boolean | undefined;
46
54
  error?: string | undefined;
47
55
  }, {
48
56
  slug: string;
49
57
  commitSha: string;
50
58
  templateDir: string;
59
+ targetPath?: string | undefined;
51
60
  success?: boolean | undefined;
52
61
  error?: string | undefined;
53
62
  }>, import("zod").ZodObject<{
@@ -86,16 +95,19 @@ export declare const agentBuilderWorkflows: {
86
95
  slug: import("zod").ZodString;
87
96
  success: import("zod").ZodOptional<import("zod").ZodBoolean>;
88
97
  error: import("zod").ZodOptional<import("zod").ZodString>;
98
+ targetPath: import("zod").ZodOptional<import("zod").ZodString>;
89
99
  }, "strip", import("zod").ZodTypeAny, {
90
100
  slug: string;
91
101
  commitSha: string;
92
102
  templateDir: string;
103
+ targetPath?: string | undefined;
93
104
  success?: boolean | undefined;
94
105
  error?: string | undefined;
95
106
  }, {
96
107
  slug: string;
97
108
  commitSha: string;
98
109
  templateDir: string;
110
+ targetPath?: string | undefined;
99
111
  success?: boolean | undefined;
100
112
  error?: string | undefined;
101
113
  }>, import("zod").ZodObject<{
@@ -307,6 +319,7 @@ export declare const agentBuilderWorkflows: {
307
319
  commitSha: import("zod").ZodString;
308
320
  slug: import("zod").ZodString;
309
321
  targetPath: import("zod").ZodOptional<import("zod").ZodString>;
322
+ variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
310
323
  }, "strip", import("zod").ZodTypeAny, {
311
324
  slug: string;
312
325
  commitSha: string;
@@ -317,6 +330,7 @@ export declare const agentBuilderWorkflows: {
317
330
  file: string;
318
331
  }[];
319
332
  targetPath?: string | undefined;
333
+ variables?: Record<string, string> | undefined;
320
334
  }, {
321
335
  slug: string;
322
336
  commitSha: string;
@@ -327,6 +341,7 @@ export declare const agentBuilderWorkflows: {
327
341
  file: string;
328
342
  }[];
329
343
  targetPath?: string | undefined;
344
+ variables?: Record<string, string> | undefined;
330
345
  }>, import("zod").ZodObject<{
331
346
  success: import("zod").ZodBoolean;
332
347
  copiedFiles: import("zod").ZodArray<import("zod").ZodObject<{
@@ -739,14 +754,17 @@ export declare const agentBuilderWorkflows: {
739
754
  valid: import("zod").ZodBoolean;
740
755
  errorsFixed: import("zod").ZodNumber;
741
756
  remainingErrors: import("zod").ZodNumber;
757
+ errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
742
758
  }, "strip", import("zod").ZodTypeAny, {
743
759
  valid: boolean;
744
760
  errorsFixed: number;
745
761
  remainingErrors: number;
762
+ errors?: any[] | undefined;
746
763
  }, {
747
764
  valid: boolean;
748
765
  errorsFixed: number;
749
766
  remainingErrors: number;
767
+ errors?: any[] | undefined;
750
768
  }>;
751
769
  error: import("zod").ZodOptional<import("zod").ZodString>;
752
770
  }, "strip", import("zod").ZodTypeAny, {
@@ -757,6 +775,7 @@ export declare const agentBuilderWorkflows: {
757
775
  valid: boolean;
758
776
  errorsFixed: number;
759
777
  remainingErrors: number;
778
+ errors?: any[] | undefined;
760
779
  };
761
780
  error?: string | undefined;
762
781
  }, {
@@ -767,6 +786,7 @@ export declare const agentBuilderWorkflows: {
767
786
  valid: boolean;
768
787
  errorsFixed: number;
769
788
  remainingErrors: number;
789
+ errors?: any[] | undefined;
770
790
  };
771
791
  error?: string | undefined;
772
792
  }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("@mastra/core").DefaultEngineType>)[], "agent-builder-template", import("zod").ZodObject<{
@@ -774,16 +794,19 @@ export declare const agentBuilderWorkflows: {
774
794
  ref: import("zod").ZodOptional<import("zod").ZodString>;
775
795
  slug: import("zod").ZodOptional<import("zod").ZodString>;
776
796
  targetPath: import("zod").ZodOptional<import("zod").ZodString>;
797
+ variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
777
798
  }, "strip", import("zod").ZodTypeAny, {
778
799
  repo: string;
779
800
  slug?: string | undefined;
780
801
  ref?: string | undefined;
781
802
  targetPath?: string | undefined;
803
+ variables?: Record<string, string> | undefined;
782
804
  }, {
783
805
  repo: string;
784
806
  slug?: string | undefined;
785
807
  ref?: string | undefined;
786
808
  targetPath?: string | undefined;
809
+ variables?: Record<string, string> | undefined;
787
810
  }>, import("zod").ZodObject<{
788
811
  success: import("zod").ZodBoolean;
789
812
  applied: import("zod").ZodBoolean;
@@ -793,14 +816,17 @@ export declare const agentBuilderWorkflows: {
793
816
  valid: import("zod").ZodBoolean;
794
817
  errorsFixed: import("zod").ZodNumber;
795
818
  remainingErrors: import("zod").ZodNumber;
819
+ errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
796
820
  }, "strip", import("zod").ZodTypeAny, {
797
821
  valid: boolean;
798
822
  errorsFixed: number;
799
823
  remainingErrors: number;
824
+ errors?: any[] | undefined;
800
825
  }, {
801
826
  valid: boolean;
802
827
  errorsFixed: number;
803
828
  remainingErrors: number;
829
+ errors?: any[] | undefined;
804
830
  }>>;
805
831
  error: import("zod").ZodOptional<import("zod").ZodString>;
806
832
  errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -853,12 +879,13 @@ export declare const agentBuilderWorkflows: {
853
879
  applied: boolean;
854
880
  error?: string | undefined;
855
881
  branchName?: string | undefined;
882
+ errors?: string[] | undefined;
856
883
  validationResults?: {
857
884
  valid: boolean;
858
885
  errorsFixed: number;
859
886
  remainingErrors: number;
887
+ errors?: any[] | undefined;
860
888
  } | undefined;
861
- errors?: string[] | undefined;
862
889
  stepResults?: {
863
890
  conflictsResolved: number;
864
891
  filesCopied: number;
@@ -880,12 +907,13 @@ export declare const agentBuilderWorkflows: {
880
907
  applied: boolean;
881
908
  error?: string | undefined;
882
909
  branchName?: string | undefined;
910
+ errors?: string[] | undefined;
883
911
  validationResults?: {
884
912
  valid: boolean;
885
913
  errorsFixed: number;
886
914
  remainingErrors: number;
915
+ errors?: any[] | undefined;
887
916
  } | undefined;
888
- errors?: string[] | undefined;
889
917
  stepResults?: {
890
918
  conflictsResolved: number;
891
919
  filesCopied: number;
@@ -910,14 +938,17 @@ export declare const agentBuilderWorkflows: {
910
938
  valid: import("zod").ZodBoolean;
911
939
  errorsFixed: import("zod").ZodNumber;
912
940
  remainingErrors: import("zod").ZodNumber;
941
+ errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
913
942
  }, "strip", import("zod").ZodTypeAny, {
914
943
  valid: boolean;
915
944
  errorsFixed: number;
916
945
  remainingErrors: number;
946
+ errors?: any[] | undefined;
917
947
  }, {
918
948
  valid: boolean;
919
949
  errorsFixed: number;
920
950
  remainingErrors: number;
951
+ errors?: any[] | undefined;
921
952
  }>>;
922
953
  error: import("zod").ZodOptional<import("zod").ZodString>;
923
954
  errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -970,12 +1001,13 @@ export declare const agentBuilderWorkflows: {
970
1001
  applied: boolean;
971
1002
  error?: string | undefined;
972
1003
  branchName?: string | undefined;
1004
+ errors?: string[] | undefined;
973
1005
  validationResults?: {
974
1006
  valid: boolean;
975
1007
  errorsFixed: number;
976
1008
  remainingErrors: number;
1009
+ errors?: any[] | undefined;
977
1010
  } | undefined;
978
- errors?: string[] | undefined;
979
1011
  stepResults?: {
980
1012
  conflictsResolved: number;
981
1013
  filesCopied: number;
@@ -997,12 +1029,13 @@ export declare const agentBuilderWorkflows: {
997
1029
  applied: boolean;
998
1030
  error?: string | undefined;
999
1031
  branchName?: string | undefined;
1032
+ errors?: string[] | undefined;
1000
1033
  validationResults?: {
1001
1034
  valid: boolean;
1002
1035
  errorsFixed: number;
1003
1036
  remainingErrors: number;
1037
+ errors?: any[] | undefined;
1004
1038
  } | undefined;
1005
- errors?: string[] | undefined;
1006
1039
  stepResults?: {
1007
1040
  conflictsResolved: number;
1008
1041
  filesCopied: number;
@@ -1036,15 +1069,15 @@ export declare const agentBuilderWorkflows: {
1036
1069
  name: string;
1037
1070
  description?: string | undefined;
1038
1071
  steps?: string[] | undefined;
1039
- inputSchema?: any;
1040
1072
  outputSchema?: any;
1073
+ inputSchema?: any;
1041
1074
  }, {
1042
1075
  file: string;
1043
1076
  name: string;
1044
1077
  description?: string | undefined;
1045
1078
  steps?: string[] | undefined;
1046
- inputSchema?: any;
1047
1079
  outputSchema?: any;
1080
+ inputSchema?: any;
1048
1081
  }>, "many">;
1049
1082
  projectStructure: import("zod").ZodObject<{
1050
1083
  success: import("zod").ZodBoolean;
@@ -1126,14 +1159,14 @@ export declare const agentBuilderWorkflows: {
1126
1159
  snippet: import("zod").ZodString;
1127
1160
  relevance: import("zod").ZodNumber;
1128
1161
  }, "strip", import("zod").ZodTypeAny, {
1129
- url: string;
1130
1162
  relevance: number;
1131
1163
  title: string;
1164
+ url: string;
1132
1165
  snippet: string;
1133
1166
  }, {
1134
- url: string;
1135
1167
  relevance: number;
1136
1168
  title: string;
1169
+ url: string;
1137
1170
  snippet: string;
1138
1171
  }>, "many">;
1139
1172
  message: import("zod").ZodString;
@@ -1147,9 +1180,9 @@ export declare const agentBuilderWorkflows: {
1147
1180
  bestPractices: string[];
1148
1181
  };
1149
1182
  webResources: {
1150
- url: string;
1151
1183
  relevance: number;
1152
1184
  title: string;
1185
+ url: string;
1153
1186
  snippet: string;
1154
1187
  }[];
1155
1188
  error?: string | undefined;
@@ -1162,9 +1195,9 @@ export declare const agentBuilderWorkflows: {
1162
1195
  bestPractices: string[];
1163
1196
  };
1164
1197
  webResources: {
1165
- url: string;
1166
1198
  relevance: number;
1167
1199
  title: string;
1200
+ url: string;
1168
1201
  snippet: string;
1169
1202
  }[];
1170
1203
  error?: string | undefined;
@@ -1177,8 +1210,8 @@ export declare const agentBuilderWorkflows: {
1177
1210
  name: string;
1178
1211
  description?: string | undefined;
1179
1212
  steps?: string[] | undefined;
1180
- inputSchema?: any;
1181
1213
  outputSchema?: any;
1214
+ inputSchema?: any;
1182
1215
  }[];
1183
1216
  projectStructure: {
1184
1217
  message: string;
@@ -1204,9 +1237,9 @@ export declare const agentBuilderWorkflows: {
1204
1237
  bestPractices: string[];
1205
1238
  };
1206
1239
  webResources: {
1207
- url: string;
1208
1240
  relevance: number;
1209
1241
  title: string;
1242
+ url: string;
1210
1243
  snippet: string;
1211
1244
  }[];
1212
1245
  error?: string | undefined;
@@ -1222,8 +1255,8 @@ export declare const agentBuilderWorkflows: {
1222
1255
  name: string;
1223
1256
  description?: string | undefined;
1224
1257
  steps?: string[] | undefined;
1225
- inputSchema?: any;
1226
1258
  outputSchema?: any;
1259
+ inputSchema?: any;
1227
1260
  }[];
1228
1261
  projectStructure: {
1229
1262
  message: string;
@@ -1249,9 +1282,9 @@ export declare const agentBuilderWorkflows: {
1249
1282
  bestPractices: string[];
1250
1283
  };
1251
1284
  webResources: {
1252
- url: string;
1253
1285
  relevance: number;
1254
1286
  title: string;
1287
+ url: string;
1255
1288
  snippet: string;
1256
1289
  }[];
1257
1290
  error?: string | undefined;
@@ -1685,15 +1718,15 @@ export declare const agentBuilderWorkflows: {
1685
1718
  name: string;
1686
1719
  description?: string | undefined;
1687
1720
  steps?: string[] | undefined;
1688
- inputSchema?: any;
1689
1721
  outputSchema?: any;
1722
+ inputSchema?: any;
1690
1723
  }, {
1691
1724
  file: string;
1692
1725
  name: string;
1693
1726
  description?: string | undefined;
1694
1727
  steps?: string[] | undefined;
1695
- inputSchema?: any;
1696
1728
  outputSchema?: any;
1729
+ inputSchema?: any;
1697
1730
  }>, "many">;
1698
1731
  projectStructure: import("zod").ZodObject<{
1699
1732
  success: import("zod").ZodBoolean;
@@ -1775,14 +1808,14 @@ export declare const agentBuilderWorkflows: {
1775
1808
  snippet: import("zod").ZodString;
1776
1809
  relevance: import("zod").ZodNumber;
1777
1810
  }, "strip", import("zod").ZodTypeAny, {
1778
- url: string;
1779
1811
  relevance: number;
1780
1812
  title: string;
1813
+ url: string;
1781
1814
  snippet: string;
1782
1815
  }, {
1783
- url: string;
1784
1816
  relevance: number;
1785
1817
  title: string;
1818
+ url: string;
1786
1819
  snippet: string;
1787
1820
  }>, "many">;
1788
1821
  message: import("zod").ZodString;
@@ -1796,9 +1829,9 @@ export declare const agentBuilderWorkflows: {
1796
1829
  bestPractices: string[];
1797
1830
  };
1798
1831
  webResources: {
1799
- url: string;
1800
1832
  relevance: number;
1801
1833
  title: string;
1834
+ url: string;
1802
1835
  snippet: string;
1803
1836
  }[];
1804
1837
  error?: string | undefined;
@@ -1811,9 +1844,9 @@ export declare const agentBuilderWorkflows: {
1811
1844
  bestPractices: string[];
1812
1845
  };
1813
1846
  webResources: {
1814
- url: string;
1815
1847
  relevance: number;
1816
1848
  title: string;
1849
+ url: string;
1817
1850
  snippet: string;
1818
1851
  }[];
1819
1852
  error?: string | undefined;
@@ -1826,8 +1859,8 @@ export declare const agentBuilderWorkflows: {
1826
1859
  name: string;
1827
1860
  description?: string | undefined;
1828
1861
  steps?: string[] | undefined;
1829
- inputSchema?: any;
1830
1862
  outputSchema?: any;
1863
+ inputSchema?: any;
1831
1864
  }[];
1832
1865
  projectStructure: {
1833
1866
  message: string;
@@ -1853,9 +1886,9 @@ export declare const agentBuilderWorkflows: {
1853
1886
  bestPractices: string[];
1854
1887
  };
1855
1888
  webResources: {
1856
- url: string;
1857
1889
  relevance: number;
1858
1890
  title: string;
1891
+ url: string;
1859
1892
  snippet: string;
1860
1893
  }[];
1861
1894
  error?: string | undefined;
@@ -1871,8 +1904,8 @@ export declare const agentBuilderWorkflows: {
1871
1904
  name: string;
1872
1905
  description?: string | undefined;
1873
1906
  steps?: string[] | undefined;
1874
- inputSchema?: any;
1875
1907
  outputSchema?: any;
1908
+ inputSchema?: any;
1876
1909
  }[];
1877
1910
  projectStructure: {
1878
1911
  message: string;
@@ -1898,9 +1931,9 @@ export declare const agentBuilderWorkflows: {
1898
1931
  bestPractices: string[];
1899
1932
  };
1900
1933
  webResources: {
1901
- url: string;
1902
1934
  relevance: number;
1903
1935
  title: string;
1936
+ url: string;
1904
1937
  snippet: string;
1905
1938
  }[];
1906
1939
  error?: string | undefined;
@@ -2041,15 +2074,15 @@ export declare const agentBuilderWorkflows: {
2041
2074
  name: string;
2042
2075
  description?: string | undefined;
2043
2076
  steps?: string[] | undefined;
2044
- inputSchema?: any;
2045
2077
  outputSchema?: any;
2078
+ inputSchema?: any;
2046
2079
  }, {
2047
2080
  file: string;
2048
2081
  name: string;
2049
2082
  description?: string | undefined;
2050
2083
  steps?: string[] | undefined;
2051
- inputSchema?: any;
2052
2084
  outputSchema?: any;
2085
+ inputSchema?: any;
2053
2086
  }>, "many">;
2054
2087
  mastraIndexExists: import("zod").ZodBoolean;
2055
2088
  message: import("zod").ZodString;
@@ -2062,8 +2095,8 @@ export declare const agentBuilderWorkflows: {
2062
2095
  name: string;
2063
2096
  description?: string | undefined;
2064
2097
  steps?: string[] | undefined;
2065
- inputSchema?: any;
2066
2098
  outputSchema?: any;
2099
+ inputSchema?: any;
2067
2100
  }[];
2068
2101
  mastraIndexExists: boolean;
2069
2102
  error?: string | undefined;
@@ -2075,8 +2108,8 @@ export declare const agentBuilderWorkflows: {
2075
2108
  name: string;
2076
2109
  description?: string | undefined;
2077
2110
  steps?: string[] | undefined;
2078
- inputSchema?: any;
2079
2111
  outputSchema?: any;
2112
+ inputSchema?: any;
2080
2113
  }[];
2081
2114
  mastraIndexExists: boolean;
2082
2115
  error?: string | undefined;
@@ -2094,15 +2127,15 @@ export declare const agentBuilderWorkflows: {
2094
2127
  name: string;
2095
2128
  description?: string | undefined;
2096
2129
  steps?: string[] | undefined;
2097
- inputSchema?: any;
2098
2130
  outputSchema?: any;
2131
+ inputSchema?: any;
2099
2132
  }, {
2100
2133
  file: string;
2101
2134
  name: string;
2102
2135
  description?: string | undefined;
2103
2136
  steps?: string[] | undefined;
2104
- inputSchema?: any;
2105
2137
  outputSchema?: any;
2138
+ inputSchema?: any;
2106
2139
  }>, "many">;
2107
2140
  mastraIndexExists: import("zod").ZodBoolean;
2108
2141
  message: import("zod").ZodString;
@@ -2115,8 +2148,8 @@ export declare const agentBuilderWorkflows: {
2115
2148
  name: string;
2116
2149
  description?: string | undefined;
2117
2150
  steps?: string[] | undefined;
2118
- inputSchema?: any;
2119
2151
  outputSchema?: any;
2152
+ inputSchema?: any;
2120
2153
  }[];
2121
2154
  mastraIndexExists: boolean;
2122
2155
  error?: string | undefined;
@@ -2128,8 +2161,8 @@ export declare const agentBuilderWorkflows: {
2128
2161
  name: string;
2129
2162
  description?: string | undefined;
2130
2163
  steps?: string[] | undefined;
2131
- inputSchema?: any;
2132
2164
  outputSchema?: any;
2165
+ inputSchema?: any;
2133
2166
  }[];
2134
2167
  mastraIndexExists: boolean;
2135
2168
  error?: string | undefined;
@@ -2270,14 +2303,14 @@ export declare const agentBuilderWorkflows: {
2270
2303
  snippet: import("zod").ZodString;
2271
2304
  relevance: import("zod").ZodNumber;
2272
2305
  }, "strip", import("zod").ZodTypeAny, {
2273
- url: string;
2274
2306
  relevance: number;
2275
2307
  title: string;
2308
+ url: string;
2276
2309
  snippet: string;
2277
2310
  }, {
2278
- url: string;
2279
2311
  relevance: number;
2280
2312
  title: string;
2313
+ url: string;
2281
2314
  snippet: string;
2282
2315
  }>, "many">;
2283
2316
  message: import("zod").ZodString;
@@ -2291,9 +2324,9 @@ export declare const agentBuilderWorkflows: {
2291
2324
  bestPractices: string[];
2292
2325
  };
2293
2326
  webResources: {
2294
- url: string;
2295
2327
  relevance: number;
2296
2328
  title: string;
2329
+ url: string;
2297
2330
  snippet: string;
2298
2331
  }[];
2299
2332
  error?: string | undefined;
@@ -2306,9 +2339,9 @@ export declare const agentBuilderWorkflows: {
2306
2339
  bestPractices: string[];
2307
2340
  };
2308
2341
  webResources: {
2309
- url: string;
2310
2342
  relevance: number;
2311
2343
  title: string;
2344
+ url: string;
2312
2345
  snippet: string;
2313
2346
  }[];
2314
2347
  error?: string | undefined;
@@ -2521,15 +2554,15 @@ export declare const agentBuilderWorkflows: {
2521
2554
  name: string;
2522
2555
  description?: string | undefined;
2523
2556
  steps?: string[] | undefined;
2524
- inputSchema?: any;
2525
2557
  outputSchema?: any;
2558
+ inputSchema?: any;
2526
2559
  }, {
2527
2560
  file: string;
2528
2561
  name: string;
2529
2562
  description?: string | undefined;
2530
2563
  steps?: string[] | undefined;
2531
- inputSchema?: any;
2532
2564
  outputSchema?: any;
2565
+ inputSchema?: any;
2533
2566
  }>, "many">;
2534
2567
  mastraIndexExists: import("zod").ZodBoolean;
2535
2568
  message: import("zod").ZodString;
@@ -2542,8 +2575,8 @@ export declare const agentBuilderWorkflows: {
2542
2575
  name: string;
2543
2576
  description?: string | undefined;
2544
2577
  steps?: string[] | undefined;
2545
- inputSchema?: any;
2546
2578
  outputSchema?: any;
2579
+ inputSchema?: any;
2547
2580
  }[];
2548
2581
  mastraIndexExists: boolean;
2549
2582
  error?: string | undefined;
@@ -2555,8 +2588,8 @@ export declare const agentBuilderWorkflows: {
2555
2588
  name: string;
2556
2589
  description?: string | undefined;
2557
2590
  steps?: string[] | undefined;
2558
- inputSchema?: any;
2559
2591
  outputSchema?: any;
2592
+ inputSchema?: any;
2560
2593
  }[];
2561
2594
  mastraIndexExists: boolean;
2562
2595
  error?: string | undefined;
@@ -2641,14 +2674,14 @@ export declare const agentBuilderWorkflows: {
2641
2674
  snippet: import("zod").ZodString;
2642
2675
  relevance: import("zod").ZodNumber;
2643
2676
  }, "strip", import("zod").ZodTypeAny, {
2644
- url: string;
2645
2677
  relevance: number;
2646
2678
  title: string;
2679
+ url: string;
2647
2680
  snippet: string;
2648
2681
  }, {
2649
- url: string;
2650
2682
  relevance: number;
2651
2683
  title: string;
2684
+ url: string;
2652
2685
  snippet: string;
2653
2686
  }>, "many">;
2654
2687
  message: import("zod").ZodString;
@@ -2662,9 +2695,9 @@ export declare const agentBuilderWorkflows: {
2662
2695
  bestPractices: string[];
2663
2696
  };
2664
2697
  webResources: {
2665
- url: string;
2666
2698
  relevance: number;
2667
2699
  title: string;
2700
+ url: string;
2668
2701
  snippet: string;
2669
2702
  }[];
2670
2703
  error?: string | undefined;
@@ -2677,9 +2710,9 @@ export declare const agentBuilderWorkflows: {
2677
2710
  bestPractices: string[];
2678
2711
  };
2679
2712
  webResources: {
2680
- url: string;
2681
2713
  relevance: number;
2682
2714
  title: string;
2715
+ url: string;
2683
2716
  snippet: string;
2684
2717
  }[];
2685
2718
  error?: string | undefined;
@@ -2934,9 +2967,9 @@ export declare const agentBuilderWorkflows: {
2934
2967
  bestPractices: string[];
2935
2968
  };
2936
2969
  webResources: {
2937
- url: string;
2938
2970
  relevance: number;
2939
2971
  title: string;
2972
+ url: string;
2940
2973
  snippet: string;
2941
2974
  }[];
2942
2975
  error?: string | undefined;
@@ -2950,8 +2983,8 @@ export declare const agentBuilderWorkflows: {
2950
2983
  name: string;
2951
2984
  description?: string | undefined;
2952
2985
  steps?: string[] | undefined;
2953
- inputSchema?: any;
2954
2986
  outputSchema?: any;
2987
+ inputSchema?: any;
2955
2988
  }[];
2956
2989
  mastraIndexExists: boolean;
2957
2990
  error?: string | undefined;
@@ -3044,9 +3077,9 @@ export declare const agentBuilderWorkflows: {
3044
3077
  bestPractices: string[];
3045
3078
  };
3046
3079
  webResources: {
3047
- url: string;
3048
3080
  relevance: number;
3049
3081
  title: string;
3082
+ url: string;
3050
3083
  snippet: string;
3051
3084
  }[];
3052
3085
  error?: string | undefined;
@@ -3060,8 +3093,8 @@ export declare const agentBuilderWorkflows: {
3060
3093
  name: string;
3061
3094
  description?: string | undefined;
3062
3095
  steps?: string[] | undefined;
3063
- inputSchema?: any;
3064
3096
  outputSchema?: any;
3097
+ inputSchema?: any;
3065
3098
  }[];
3066
3099
  mastraIndexExists: boolean;
3067
3100
  error?: string | undefined;
@@ -3135,15 +3168,15 @@ export declare const agentBuilderWorkflows: {
3135
3168
  name: string;
3136
3169
  description?: string | undefined;
3137
3170
  steps?: string[] | undefined;
3138
- inputSchema?: any;
3139
3171
  outputSchema?: any;
3172
+ inputSchema?: any;
3140
3173
  }, {
3141
3174
  file: string;
3142
3175
  name: string;
3143
3176
  description?: string | undefined;
3144
3177
  steps?: string[] | undefined;
3145
- inputSchema?: any;
3146
3178
  outputSchema?: any;
3179
+ inputSchema?: any;
3147
3180
  }>, "many">;
3148
3181
  mastraIndexExists: import("zod").ZodBoolean;
3149
3182
  message: import("zod").ZodString;
@@ -3156,8 +3189,8 @@ export declare const agentBuilderWorkflows: {
3156
3189
  name: string;
3157
3190
  description?: string | undefined;
3158
3191
  steps?: string[] | undefined;
3159
- inputSchema?: any;
3160
3192
  outputSchema?: any;
3193
+ inputSchema?: any;
3161
3194
  }[];
3162
3195
  mastraIndexExists: boolean;
3163
3196
  error?: string | undefined;
@@ -3169,8 +3202,8 @@ export declare const agentBuilderWorkflows: {
3169
3202
  name: string;
3170
3203
  description?: string | undefined;
3171
3204
  steps?: string[] | undefined;
3172
- inputSchema?: any;
3173
3205
  outputSchema?: any;
3206
+ inputSchema?: any;
3174
3207
  }[];
3175
3208
  mastraIndexExists: boolean;
3176
3209
  error?: string | undefined;
@@ -3255,14 +3288,14 @@ export declare const agentBuilderWorkflows: {
3255
3288
  snippet: import("zod").ZodString;
3256
3289
  relevance: import("zod").ZodNumber;
3257
3290
  }, "strip", import("zod").ZodTypeAny, {
3258
- url: string;
3259
3291
  relevance: number;
3260
3292
  title: string;
3293
+ url: string;
3261
3294
  snippet: string;
3262
3295
  }, {
3263
- url: string;
3264
3296
  relevance: number;
3265
3297
  title: string;
3298
+ url: string;
3266
3299
  snippet: string;
3267
3300
  }>, "many">;
3268
3301
  message: import("zod").ZodString;
@@ -3276,9 +3309,9 @@ export declare const agentBuilderWorkflows: {
3276
3309
  bestPractices: string[];
3277
3310
  };
3278
3311
  webResources: {
3279
- url: string;
3280
3312
  relevance: number;
3281
3313
  title: string;
3314
+ url: string;
3282
3315
  snippet: string;
3283
3316
  }[];
3284
3317
  error?: string | undefined;
@@ -3291,9 +3324,9 @@ export declare const agentBuilderWorkflows: {
3291
3324
  bestPractices: string[];
3292
3325
  };
3293
3326
  webResources: {
3294
- url: string;
3295
3327
  relevance: number;
3296
3328
  title: string;
3329
+ url: string;
3297
3330
  snippet: string;
3298
3331
  }[];
3299
3332
  error?: string | undefined;
@@ -3548,9 +3581,9 @@ export declare const agentBuilderWorkflows: {
3548
3581
  bestPractices: string[];
3549
3582
  };
3550
3583
  webResources: {
3551
- url: string;
3552
3584
  relevance: number;
3553
3585
  title: string;
3586
+ url: string;
3554
3587
  snippet: string;
3555
3588
  }[];
3556
3589
  error?: string | undefined;
@@ -3564,8 +3597,8 @@ export declare const agentBuilderWorkflows: {
3564
3597
  name: string;
3565
3598
  description?: string | undefined;
3566
3599
  steps?: string[] | undefined;
3567
- inputSchema?: any;
3568
3600
  outputSchema?: any;
3601
+ inputSchema?: any;
3569
3602
  }[];
3570
3603
  mastraIndexExists: boolean;
3571
3604
  error?: string | undefined;
@@ -3658,9 +3691,9 @@ export declare const agentBuilderWorkflows: {
3658
3691
  bestPractices: string[];
3659
3692
  };
3660
3693
  webResources: {
3661
- url: string;
3662
3694
  relevance: number;
3663
3695
  title: string;
3696
+ url: string;
3664
3697
  snippet: string;
3665
3698
  }[];
3666
3699
  error?: string | undefined;
@@ -3674,8 +3707,8 @@ export declare const agentBuilderWorkflows: {
3674
3707
  name: string;
3675
3708
  description?: string | undefined;
3676
3709
  steps?: string[] | undefined;
3677
- inputSchema?: any;
3678
3710
  outputSchema?: any;
3711
+ inputSchema?: any;
3679
3712
  }[];
3680
3713
  mastraIndexExists: boolean;
3681
3714
  error?: string | undefined;