@mastra/dane 0.0.2-alpha.67 → 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,16 +19,29 @@ const getPacakgesToPublish = new Step({
19
19
  throw new Error('Agent not found');
20
20
  }
21
21
  const result = await agent.generate(`
22
- Can you tell me which packages within the packages, deployers, and integrations directory need to be published to npm?
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
- ONLY RETURN DATA IF WE HAVE PACKAGES TO PUBLISH. If we do not, return empty arrays.
26
- Can you format this for me ${result.text}?
27
- @mastra/core must be first. mastra must be second.
28
- create-mastra is a package (not an integration) and should be listed in packages array.
29
- deployers should be listed after packages.
30
- @mastra/dane should be listed after packages and integrations.
31
- `, {
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
+ `, {
32
45
  output: z.object({
33
46
  packages: z.array(z.string()),
34
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.67",
3
+ "version": "0.0.2-alpha.68",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "files": [
@@ -40,13 +40,13 @@
40
40
  "typescript": "^5.5.4",
41
41
  "zod": "^3.24.0",
42
42
  "@mastra/core": "0.1.27-alpha.66",
43
- "@mastra/engine": "0.0.5-alpha.60",
44
43
  "@mastra/github": "1.0.3-alpha.50",
45
44
  "@mastra/memory": "0.0.2-alpha.46",
46
- "@mastra/stabilityai": "1.0.1-alpha.41",
45
+ "@mastra/mcp": "0.0.1-alpha.6",
47
46
  "@mastra/firecrawl": "1.0.4-alpha.54",
47
+ "@mastra/stabilityai": "1.0.1-alpha.41",
48
48
  "@mastra/rag": "0.0.2-alpha.52",
49
- "@mastra/mcp": "0.0.1-alpha.6"
49
+ "@mastra/engine": "0.0.5-alpha.60"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "npx tsc",