@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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
3
19
  ## 0.0.1
4
20
 
5
21
  ### 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