@mastra/agent-builder 0.0.1-alpha.5 → 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,83 @@
1
1
  # @mastra/agent-builder
2
2
 
3
+ ## 0.0.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - cf4e353: Agent Builder Template - adding in UI components to use agent builder template actions
8
+ - 8b7dbbf: Various clean up in the agent builder package. Mark package as experimental.
9
+ - Updated dependencies [fd83526]
10
+ - Updated dependencies [d0b90ab]
11
+ - Updated dependencies [6f5eb7a]
12
+ - Updated dependencies [a01cf14]
13
+ - Updated dependencies [a9e50ee]
14
+ - Updated dependencies [5397eb4]
15
+ - Updated dependencies [c9f4e4a]
16
+ - Updated dependencies [0acbc80]
17
+ - @mastra/core@0.16.0-alpha.0
18
+
19
+ ## 0.0.1
20
+
21
+ ### Patch Changes
22
+
23
+ - ab48c97: dependencies updates:
24
+ - Updated dependency [`zod@^3.25.76` ↗︎](https://www.npmjs.com/package/zod/v/3.25.76) (from `^3.25.67`, in `dependencies`)
25
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
26
+ - b8e1a83: Fix package.json
27
+ - 671a392: Fix core imports inside agent-builder
28
+ - 48b9e55: Add Agent Builder package with template installation workflow
29
+
30
+ Introduces a new package for programmatically building and managing Mastra agents with intelligent template merging capabilities. Features include automated dependency resolution, file conflict handling, and validation fixes.
31
+
32
+ - 48f0742: add deployer, server and clientjs handlers for agent builder template
33
+ - Updated dependencies [ab48c97]
34
+ - Updated dependencies [ab48c97]
35
+ - Updated dependencies [85ef90b]
36
+ - Updated dependencies [aedbbfa]
37
+ - Updated dependencies [ff89505]
38
+ - Updated dependencies [637f323]
39
+ - Updated dependencies [de3cbc6]
40
+ - Updated dependencies [c19bcf7]
41
+ - Updated dependencies [a5632dd]
42
+ - Updated dependencies [4474d04]
43
+ - Updated dependencies [183dc95]
44
+ - Updated dependencies [a1111e2]
45
+ - Updated dependencies [b42a961]
46
+ - Updated dependencies [61debef]
47
+ - Updated dependencies [9beaeff]
48
+ - Updated dependencies [29de0e1]
49
+ - Updated dependencies [f643c65]
50
+ - Updated dependencies [00c74e7]
51
+ - Updated dependencies [f0dfcac]
52
+ - Updated dependencies [fef7375]
53
+ - Updated dependencies [e3d8fea]
54
+ - Updated dependencies [45e4d39]
55
+ - Updated dependencies [9eee594]
56
+ - Updated dependencies [7149d8d]
57
+ - Updated dependencies [822c2e8]
58
+ - Updated dependencies [979912c]
59
+ - Updated dependencies [7dcf4c0]
60
+ - Updated dependencies [4106a58]
61
+ - Updated dependencies [ad78bfc]
62
+ - Updated dependencies [0302f50]
63
+ - Updated dependencies [6ac697e]
64
+ - Updated dependencies [74db265]
65
+ - Updated dependencies [0ce418a]
66
+ - Updated dependencies [af90672]
67
+ - Updated dependencies [8387952]
68
+ - Updated dependencies [7f3b8da]
69
+ - Updated dependencies [905352b]
70
+ - Updated dependencies [599d04c]
71
+ - Updated dependencies [56041d0]
72
+ - Updated dependencies [3412597]
73
+ - Updated dependencies [5eca5d2]
74
+ - Updated dependencies [f2cda47]
75
+ - Updated dependencies [5de1555]
76
+ - Updated dependencies [cfd377a]
77
+ - Updated dependencies [1ed5a3e]
78
+ - @mastra/core@0.15.3
79
+ - @mastra/memory@0.14.3
80
+
3
81
  ## 0.0.1-alpha.5
4
82
 
5
83
  ### Patch Changes
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @mastra/agent-builder
2
2
 
3
+ This package is currently experimental and only meant to be used internally to Mastra at the moment, the APIs are subject to change in this period.
4
+
3
5
  A specialized AI agent for building production-ready Mastra applications, agents, tools, and workflows from natural language requirements.
4
6
 
5
7
  ## Installation
@@ -39,9 +41,7 @@ const builder = new AgentBuilder({
39
41
  });
40
42
 
41
43
  // Generate an agent from natural language
42
- const result = await builder.generateAgent(
43
- 'Create a weather agent that can get current weather and suggest activities',
44
- );
44
+ const result = await builder.generate({ ... })
45
45
  ```
46
46
 
47
47
  ## Configuration