@mastra/dane 0.0.2-alpha.78 → 0.0.2-alpha.80

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/mastra/agents/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAarC,eAAO,MAAM,iBAAiB,6HAU5B,CAAC;AAEH,eAAO,MAAM,gBAAgB,6HAO3B,CAAC;AAiBH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAgC/B,CAAC;AAEH,eAAO,MAAM,eAAe,6HAa1B,CAAC;AAEH,eAAO,MAAM,aAAa,6HAcxB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAuDf,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/mastra/agents/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAarC,eAAO,MAAM,iBAAiB,6HAU5B,CAAC;AAEH,eAAO,MAAM,gBAAgB,6HAO3B,CAAC;AAiCH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAgC/B,CAAC;AAEH,eAAO,MAAM,eAAe,6HAa1B,CAAC;AAEH,eAAO,MAAM,aAAa,6HAcxB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAuDf,CAAC"}
@@ -28,18 +28,34 @@ export const daneIssueLabeler = new Agent({
28
28
  model: getBaseModelConfig(),
29
29
  });
30
30
  const packages_llm_text = `
31
- @mastra/core is located in the "packages/core" directory.
32
- @mastra/deployer is located in the "packages/deployer" directory.
33
- mastra is located in the "packages/cli" directory.
34
- @mastra/engine is located in the "packages/engine" directory.
35
- @mastra/evals is located in the "packages/evals" directory.
36
- @mastra/rag is located in the "packages/rag" directory.
37
- @mastra/tts is located in the "packages/tts" directory.
38
- @mastra/memory is located in the "packages/memory" directory.
39
- @mastra/mcp is located in the "packages/mcp" directory.
40
- @mastra/deployer-{name} is located in the "deployers/{name}" directory.
41
- @mastra/vector-{name} is located in the "vector-stores/{name}" directory.
42
- @mastra/vector-astra is located in the "vector-stores/astra-db" directory.
31
+ // PACKAGE LOCATION RULES - FOLLOW THESE EXACTLY:
32
+
33
+ // 1. Core packages - all must be directly under packages/:
34
+ @mastra/core -> packages/core
35
+ @mastra/deployer -> packages/deployer
36
+ mastra -> packages/cli
37
+ @mastra/engine -> packages/engine
38
+ @mastra/evals -> packages/evals
39
+ @mastra/rag -> packages/rag
40
+ @mastra/tts -> packages/tts
41
+ @mastra/memory -> packages/memory
42
+ @mastra/mcp -> packages/mcp
43
+
44
+ // 2. Deployer packages - STRICT RULES:
45
+ // - ALL deployer packages must be directly under deployers/
46
+ // - Format: @mastra/deployer-{name} -> deployers/{name}
47
+ // - Example: @mastra/deployer-cloudflare -> deployers/cloudflare
48
+ // - NEVER in any other directory (not in integrations/, examples/, packages/, etc)
49
+
50
+ // 3. Vector store packages - STRICT RULES:
51
+ // - ALL vector packages must be directly under vector-stores/
52
+ // - Format: @mastra/vector-{name} -> vector-stores/{name}
53
+ // - Special case: @mastra/vector-astra -> vector-stores/astra-db
54
+
55
+ // VALIDATION:
56
+ // 1. Never mix examples/ or integrations/ with package paths
57
+ // 2. Package paths must exactly match these patterns
58
+ // 3. No additional subdirectories allowed
43
59
  `;
44
60
  export const danePackagePublisher = new Agent({
45
61
  name: 'DanePackagePublisher',
@@ -49,6 +49,7 @@ const getPacakgesToPublish = new Step({
49
49
  1. Build Order Requirements:
50
50
  - ALL packages MUST be built before publishing
51
51
  - @mastra/core MUST be built first
52
+ - @mastra/deployer MUST be built second
52
53
  - Dependencies must be built before dependents
53
54
  - Group parallel builds by directory type
54
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/dane",
3
- "version": "0.0.2-alpha.78",
3
+ "version": "0.0.2-alpha.80",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "files": [
@@ -39,14 +39,14 @@
39
39
  "sqlite3": "^5.1.7",
40
40
  "typescript": "^5.5.4",
41
41
  "zod": "^3.24.0",
42
- "@mastra/engine": "0.0.5-alpha.63",
43
- "@mastra/core": "0.1.27-alpha.69",
44
- "@mastra/github": "1.0.3-alpha.53",
45
- "@mastra/memory": "0.0.2-alpha.49",
46
- "@mastra/stabilityai": "1.0.1-alpha.44",
47
- "@mastra/firecrawl": "1.0.4-alpha.59",
48
- "@mastra/rag": "0.0.2-alpha.57",
49
- "@mastra/mcp": "0.0.1-alpha.10"
42
+ "@mastra/core": "0.1.27-alpha.70",
43
+ "@mastra/firecrawl": "1.0.4-alpha.61",
44
+ "@mastra/engine": "0.0.5-alpha.65",
45
+ "@mastra/github": "1.0.3-alpha.54",
46
+ "@mastra/rag": "0.0.2-alpha.59",
47
+ "@mastra/stabilityai": "1.0.1-alpha.45",
48
+ "@mastra/memory": "0.0.2-alpha.51",
49
+ "@mastra/mcp": "0.0.1-alpha.12"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "npx tsc",