@mastra/agent-builder 0.0.0-main-test-05-11-2025-2-20251105214713 → 0.0.0-main-test-05-11-2025-2-20251105223343
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/CHANGELOG.md +4 -4
- package/dist/defaults.d.ts +1076 -26
- package/dist/defaults.d.ts.map +1 -1
- package/dist/workflows/shared/schema.d.ts +2 -2
- package/dist/workflows/task-planning/schema.d.ts +6 -6
- package/dist/workflows/task-planning/task-planning.d.ts +8 -8
- package/dist/workflows/workflow-builder/schema.d.ts +4 -4
- package/dist/workflows/workflow-builder/tools.d.ts +106 -0
- package/dist/workflows/workflow-builder/tools.d.ts.map +1 -1
- package/dist/workflows/workflow-builder/workflow-builder.d.ts +16 -16
- package/package.json +6 -6
|
@@ -296,7 +296,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
297
|
message: string;
|
|
298
298
|
success: boolean;
|
|
299
|
-
reasoning: string;
|
|
300
299
|
tasks: {
|
|
301
300
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
302
301
|
id: string;
|
|
@@ -305,6 +304,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
305
304
|
notes: string;
|
|
306
305
|
dependencies?: string[] | undefined;
|
|
307
306
|
}[];
|
|
307
|
+
reasoning: string;
|
|
308
308
|
questions: {
|
|
309
309
|
type: "boolean" | "text" | "choice";
|
|
310
310
|
id: string;
|
|
@@ -319,7 +319,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
319
319
|
}, {
|
|
320
320
|
message: string;
|
|
321
321
|
success: boolean;
|
|
322
|
-
reasoning: string;
|
|
323
322
|
tasks: {
|
|
324
323
|
id: string;
|
|
325
324
|
content: string;
|
|
@@ -328,6 +327,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
328
327
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
329
328
|
dependencies?: string[] | undefined;
|
|
330
329
|
}[];
|
|
330
|
+
reasoning: string;
|
|
331
331
|
questions: {
|
|
332
332
|
type: "boolean" | "text" | "choice";
|
|
333
333
|
id: string;
|
|
@@ -391,7 +391,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
391
391
|
}>, "many">;
|
|
392
392
|
reasoning: z.ZodString;
|
|
393
393
|
}, "strip", z.ZodTypeAny, {
|
|
394
|
-
reasoning: string;
|
|
395
394
|
tasks: {
|
|
396
395
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
397
396
|
id: string;
|
|
@@ -400,8 +399,8 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
400
399
|
notes: string;
|
|
401
400
|
dependencies?: string[] | undefined;
|
|
402
401
|
}[];
|
|
403
|
-
}, {
|
|
404
402
|
reasoning: string;
|
|
403
|
+
}, {
|
|
405
404
|
tasks: {
|
|
406
405
|
id: string;
|
|
407
406
|
content: string;
|
|
@@ -410,6 +409,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
410
409
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
411
410
|
dependencies?: string[] | undefined;
|
|
412
411
|
}[];
|
|
412
|
+
reasoning: string;
|
|
413
413
|
}>;
|
|
414
414
|
}, "strip", z.ZodTypeAny, {
|
|
415
415
|
message: string;
|
|
@@ -421,7 +421,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
421
421
|
context?: string | undefined;
|
|
422
422
|
}[];
|
|
423
423
|
currentPlan: {
|
|
424
|
-
reasoning: string;
|
|
425
424
|
tasks: {
|
|
426
425
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
427
426
|
id: string;
|
|
@@ -430,6 +429,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
430
429
|
notes: string;
|
|
431
430
|
dependencies?: string[] | undefined;
|
|
432
431
|
}[];
|
|
432
|
+
reasoning: string;
|
|
433
433
|
};
|
|
434
434
|
}, {
|
|
435
435
|
message: string;
|
|
@@ -441,7 +441,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
441
441
|
context?: string | undefined;
|
|
442
442
|
}[];
|
|
443
443
|
currentPlan: {
|
|
444
|
-
reasoning: string;
|
|
445
444
|
tasks: {
|
|
446
445
|
id: string;
|
|
447
446
|
content: string;
|
|
@@ -450,6 +449,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
450
449
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
451
450
|
dependencies?: string[] | undefined;
|
|
452
451
|
}[];
|
|
452
|
+
reasoning: string;
|
|
453
453
|
};
|
|
454
454
|
}>, import("@mastra/core/workflows").DefaultEngineType> | import("@mastra/core/workflows").Step<"task-approval", z.ZodObject<any, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
455
455
|
[x: string]: any;
|
|
@@ -507,7 +507,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
507
507
|
}, "strip", z.ZodTypeAny, {
|
|
508
508
|
message: string;
|
|
509
509
|
success: boolean;
|
|
510
|
-
reasoning: string;
|
|
511
510
|
tasks: {
|
|
512
511
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
513
512
|
id: string;
|
|
@@ -516,6 +515,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
516
515
|
notes: string;
|
|
517
516
|
dependencies?: string[] | undefined;
|
|
518
517
|
}[];
|
|
518
|
+
reasoning: string;
|
|
519
519
|
questions: {
|
|
520
520
|
type: "boolean" | "text" | "choice";
|
|
521
521
|
id: string;
|
|
@@ -530,7 +530,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
530
530
|
}, {
|
|
531
531
|
message: string;
|
|
532
532
|
success: boolean;
|
|
533
|
-
reasoning: string;
|
|
534
533
|
tasks: {
|
|
535
534
|
id: string;
|
|
536
535
|
content: string;
|
|
@@ -539,6 +538,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
539
538
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
540
539
|
dependencies?: string[] | undefined;
|
|
541
540
|
}[];
|
|
541
|
+
reasoning: string;
|
|
542
542
|
questions: {
|
|
543
543
|
type: "boolean" | "text" | "choice";
|
|
544
544
|
id: string;
|
|
@@ -1748,7 +1748,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
1748
1748
|
}, "strip", z.ZodTypeAny, {
|
|
1749
1749
|
message: string;
|
|
1750
1750
|
success: boolean;
|
|
1751
|
-
reasoning: string;
|
|
1752
1751
|
tasks: {
|
|
1753
1752
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
1754
1753
|
id: string;
|
|
@@ -1757,6 +1756,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
1757
1756
|
notes: string;
|
|
1758
1757
|
dependencies?: string[] | undefined;
|
|
1759
1758
|
}[];
|
|
1759
|
+
reasoning: string;
|
|
1760
1760
|
questions: {
|
|
1761
1761
|
type: "boolean" | "text" | "choice";
|
|
1762
1762
|
id: string;
|
|
@@ -1771,7 +1771,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
1771
1771
|
}, {
|
|
1772
1772
|
message: string;
|
|
1773
1773
|
success: boolean;
|
|
1774
|
-
reasoning: string;
|
|
1775
1774
|
tasks: {
|
|
1776
1775
|
id: string;
|
|
1777
1776
|
content: string;
|
|
@@ -1780,6 +1779,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
1780
1779
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
1781
1780
|
dependencies?: string[] | undefined;
|
|
1782
1781
|
}[];
|
|
1782
|
+
reasoning: string;
|
|
1783
1783
|
questions: {
|
|
1784
1784
|
type: "boolean" | "text" | "choice";
|
|
1785
1785
|
id: string;
|
|
@@ -1971,7 +1971,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
1971
1971
|
planning?: {
|
|
1972
1972
|
message: string;
|
|
1973
1973
|
success: boolean;
|
|
1974
|
-
reasoning: string;
|
|
1975
1974
|
tasks: {
|
|
1976
1975
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
1977
1976
|
id: string;
|
|
@@ -1980,6 +1979,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
1980
1979
|
notes: string;
|
|
1981
1980
|
dependencies?: string[] | undefined;
|
|
1982
1981
|
}[];
|
|
1982
|
+
reasoning: string;
|
|
1983
1983
|
questions: {
|
|
1984
1984
|
type: "boolean" | "text" | "choice";
|
|
1985
1985
|
id: string;
|
|
@@ -2081,7 +2081,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2081
2081
|
planning?: {
|
|
2082
2082
|
message: string;
|
|
2083
2083
|
success: boolean;
|
|
2084
|
-
reasoning: string;
|
|
2085
2084
|
tasks: {
|
|
2086
2085
|
id: string;
|
|
2087
2086
|
content: string;
|
|
@@ -2090,6 +2089,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2090
2089
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
2091
2090
|
dependencies?: string[] | undefined;
|
|
2092
2091
|
}[];
|
|
2092
|
+
reasoning: string;
|
|
2093
2093
|
questions: {
|
|
2094
2094
|
type: "boolean" | "text" | "choice";
|
|
2095
2095
|
id: string;
|
|
@@ -2362,7 +2362,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2362
2362
|
}, "strip", z.ZodTypeAny, {
|
|
2363
2363
|
message: string;
|
|
2364
2364
|
success: boolean;
|
|
2365
|
-
reasoning: string;
|
|
2366
2365
|
tasks: {
|
|
2367
2366
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
2368
2367
|
id: string;
|
|
@@ -2371,6 +2370,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2371
2370
|
notes: string;
|
|
2372
2371
|
dependencies?: string[] | undefined;
|
|
2373
2372
|
}[];
|
|
2373
|
+
reasoning: string;
|
|
2374
2374
|
questions: {
|
|
2375
2375
|
type: "boolean" | "text" | "choice";
|
|
2376
2376
|
id: string;
|
|
@@ -2385,7 +2385,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2385
2385
|
}, {
|
|
2386
2386
|
message: string;
|
|
2387
2387
|
success: boolean;
|
|
2388
|
-
reasoning: string;
|
|
2389
2388
|
tasks: {
|
|
2390
2389
|
id: string;
|
|
2391
2390
|
content: string;
|
|
@@ -2394,6 +2393,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2394
2393
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
2395
2394
|
dependencies?: string[] | undefined;
|
|
2396
2395
|
}[];
|
|
2396
|
+
reasoning: string;
|
|
2397
2397
|
questions: {
|
|
2398
2398
|
type: "boolean" | "text" | "choice";
|
|
2399
2399
|
id: string;
|
|
@@ -2585,7 +2585,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2585
2585
|
planning?: {
|
|
2586
2586
|
message: string;
|
|
2587
2587
|
success: boolean;
|
|
2588
|
-
reasoning: string;
|
|
2589
2588
|
tasks: {
|
|
2590
2589
|
status: "pending" | "in_progress" | "completed" | "blocked";
|
|
2591
2590
|
id: string;
|
|
@@ -2594,6 +2593,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2594
2593
|
notes: string;
|
|
2595
2594
|
dependencies?: string[] | undefined;
|
|
2596
2595
|
}[];
|
|
2596
|
+
reasoning: string;
|
|
2597
2597
|
questions: {
|
|
2598
2598
|
type: "boolean" | "text" | "choice";
|
|
2599
2599
|
id: string;
|
|
@@ -2695,7 +2695,6 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2695
2695
|
planning?: {
|
|
2696
2696
|
message: string;
|
|
2697
2697
|
success: boolean;
|
|
2698
|
-
reasoning: string;
|
|
2699
2698
|
tasks: {
|
|
2700
2699
|
id: string;
|
|
2701
2700
|
content: string;
|
|
@@ -2704,6 +2703,7 @@ export declare const workflowBuilderWorkflow: import("@mastra/core/workflows").W
|
|
|
2704
2703
|
status?: "pending" | "in_progress" | "completed" | "blocked" | undefined;
|
|
2705
2704
|
dependencies?: string[] | undefined;
|
|
2706
2705
|
}[];
|
|
2706
|
+
reasoning: string;
|
|
2707
2707
|
questions: {
|
|
2708
2708
|
type: "boolean" | "text" | "choice";
|
|
2709
2709
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/agent-builder",
|
|
3
|
-
"version": "0.0.0-main-test-05-11-2025-2-
|
|
3
|
+
"version": "0.0.0-main-test-05-11-2025-2-20251105223343",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"ignore": "^7.0.5",
|
|
38
38
|
"semver": "^7.7.2",
|
|
39
39
|
"swpm": "^2.6.0",
|
|
40
|
-
"@mastra/memory": "0.0.0-main-test-05-11-2025-2-
|
|
40
|
+
"@mastra/memory": "0.0.0-main-test-05-11-2025-2-20251105223343"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^20.19.0",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"typescript-eslint": "^8.38.0",
|
|
49
49
|
"vitest": "^3.2.4",
|
|
50
50
|
"zod": "^3.25.76",
|
|
51
|
-
"@internal/
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
51
|
+
"@internal/lint": "0.0.0-main-test-05-11-2025-2-20251105223343",
|
|
52
|
+
"@internal/types-builder": "0.0.0-main-test-05-11-2025-2-20251105223343",
|
|
53
|
+
"@mastra/core": "0.0.0-main-test-05-11-2025-2-20251105223343"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"typescript": ">=5.7.0",
|
|
57
57
|
"zod": "^3.25.0 || ^4.0.0",
|
|
58
|
-
"@mastra/core": "0.0.0-main-test-05-11-2025-2-
|
|
58
|
+
"@mastra/core": "0.0.0-main-test-05-11-2025-2-20251105223343"
|
|
59
59
|
},
|
|
60
60
|
"peerDependenciesMeta": {
|
|
61
61
|
"typescript": {
|