@mastra/dane 0.0.2-alpha.66 → 0.0.2-alpha.68
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.
|
@@ -19,15 +19,29 @@ const getPacakgesToPublish = new Step({
|
|
|
19
19
|
throw new Error('Agent not found');
|
|
20
20
|
}
|
|
21
21
|
const result = await agent.generate(`
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
Here is my project structure in my monorepo.
|
|
23
|
+
* My core modules are in the 'packages' directory.
|
|
24
|
+
* My integrations are in the 'integrations' directory.
|
|
25
|
+
* My deployers are in the 'deployers' directory.
|
|
26
|
+
|
|
27
|
+
Can you tell me which packages within these folders need to be published to npm?
|
|
28
|
+
`);
|
|
24
29
|
const resultObj = await agent.generate(`
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
Can you format the following text with my described format?
|
|
31
|
+
Text: ${result.text}
|
|
32
|
+
|
|
33
|
+
Precheck: ONLY RETURN DATA IF WE HAVE PACKAGES TO PUBLISH. If we do not, return empty arrays.
|
|
34
|
+
|
|
35
|
+
Formatting Rules:
|
|
36
|
+
* @mastra/core must be first.
|
|
37
|
+
* @mastra/deployer must be second.
|
|
38
|
+
* mastra must be third.
|
|
39
|
+
|
|
40
|
+
Very Important:
|
|
41
|
+
* create-mastra is a package (not an integration) and should be listed in packages array.
|
|
42
|
+
* @mastra/deployers-{name} should be listed after packages.
|
|
43
|
+
* @mastra/dane should be listed after packages and integrations.
|
|
44
|
+
`, {
|
|
31
45
|
output: z.object({
|
|
32
46
|
packages: z.array(z.string()),
|
|
33
47
|
integrations: z.array(z.string()),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/dane",
|
|
3
|
-
"version": "0.0.2-alpha.
|
|
3
|
+
"version": "0.0.2-alpha.68",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"zod": "^3.24.0",
|
|
42
42
|
"@mastra/core": "0.1.27-alpha.66",
|
|
43
43
|
"@mastra/github": "1.0.3-alpha.50",
|
|
44
|
-
"@mastra/firecrawl": "1.0.4-alpha.54",
|
|
45
44
|
"@mastra/memory": "0.0.2-alpha.46",
|
|
46
|
-
"@mastra/rag": "0.0.2-alpha.52",
|
|
47
45
|
"@mastra/mcp": "0.0.1-alpha.6",
|
|
46
|
+
"@mastra/firecrawl": "1.0.4-alpha.54",
|
|
48
47
|
"@mastra/stabilityai": "1.0.1-alpha.41",
|
|
48
|
+
"@mastra/rag": "0.0.2-alpha.52",
|
|
49
49
|
"@mastra/engine": "0.0.5-alpha.60"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|