Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -238,3 +238,38 @@ storybook-static
src/mastra/public/store.duckdb
src/mastra/public/store.duckdb.wal
blender.md

tests/test-results/test-results.json
tests/test-results/test-results.xml
tests/test-results/test-results.md
tests/test-results/*.json
tests/test-results/*.xml
tests/test-results/*.md
tests/test-results/**/*.json
tests/test-results/.dot
tests/*.test.ts
*tests/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The pattern *tests/ (and */tests/ on line 253) will ignore the tests/ directory. Since this project maintains a high test coverage target, the test files should be tracked in the repository.

/tests/test-results\test-results.json
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Git ignore patterns should use forward slashes (/) as path separators, even on Windows. The backslash (\) used here is non-standard. Additionally, this specific file is already covered by the pattern on line 242.

/tests/test-results/test-results.json

*/tests/
*windsurf/
*.kiro/
*.kilocode/
*.playwright-mcp/
*.trunk/
*.temp/
*.sisyphus/
.trunk/configs/.yamllint.yaml
*.memories/
*.sessions/
*.logs/
*.log/
*data/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The pattern *data/ will ignore the src/mastra/data/ directory. If this folder contains essential application data or configuration files, it should not be ignored.

conductor/setup_state.json
*conductor/
*dist/
*mastra/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The pattern *mastra/ is overly broad and will ignore the src/mastra/ directory, which contains the core logic of the application. This will prevent source files from being tracked by Git. If the intention was to ignore the .mastra cache/metadata directory, it is already covered on lines 34 and 82.

*node_modules/
*coverage/
*.next/
*.out/

3,105 changes: 621 additions & 2,484 deletions package-lock.json

Large diffs are not rendered by default.

58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentstack",
"version": "1.0.46",
"version": "1.0.47",
"description": "Multi-agent frameworks and tools for building AI applications with Mastra.",
"main": "index.js",
"scripts": {
Expand All @@ -11,8 +11,8 @@
"dev:next": "cross-env NODE_OPTIONS='--max-old-space-size=8192' next dev --turbopack",
"build:next": "next build",
"build:mastra": "mastra build",
"start:mastra": "mastra start",
"start:next": "next start",
"start:mastra": "dotenvx run -- mastra start",
"start:next": "dotenvx run -- next start",
"chrome:debug": "cmd /c start \"\" \"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe\" --remote-debugging-port=9222 --user-data-dir=%TEMP%\\chrome-debug",
"brave:debug": "cmd /c start \"\" \"C:\\Program Files\\BraveSoftware\\Brave-Browser\\Application\\brave.exe\" --remote-debugging-port=9222 --user-data-dir=%TEMP%\\chrome-debug",
"generate": "dotenvx run -- npx auth@latest generate",
Expand All @@ -28,7 +28,7 @@
"prettier:check": "dotenvx run -- prettier --check .",
"prettier:write": "dotenvx run -- prettier --write .",
"format": "npm run prettier:write",
"convex": "dotenvx run npx convex dev --env-file .env.local",
"convex": "dotenvx run -- npx convex dev --env-file .env.local",
"code": "npx mastracode",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
Expand Down Expand Up @@ -81,25 +81,25 @@
"@mastra/ai-sdk": "^1.4.0",
"@mastra/auth-better-auth": "^1.0.2",
"@mastra/auth-supabase": "^1.0.0",
"@mastra/client-js": "^1.13.5-alpha.8",
"@mastra/client-js": "^1.14.0-alpha.10",
"@mastra/cloudflare": "^1.3.2-alpha.0",
"@mastra/cloudflare-d1": "^1.0.5-alpha.0",
"@mastra/convex": "^1.0.8-alpha.0",
"@mastra/core": "^1.26.0-alpha.8",
"@mastra/core": "^1.26.0-alpha.10",
"@mastra/daytona": "^0.2.1",
"@mastra/deployer": "^1.26.0-alpha.8",
"@mastra/deployer": "^1.26.0-alpha.10",
"@mastra/deployer-cloudflare": "^1.1.23",
"@mastra/docker": "^0.0.0-alpha.0",
"@mastra/duckdb": "^1.1.2",
"@mastra/editor": "^0.7.17-alpha.2",
"@mastra/docker": "^0.1.0-alpha.0",
"@mastra/duckdb": "^1.1.3-alpha.0",
"@mastra/editor": "^0.7.17-alpha.3",
Comment on lines +84 to +94
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After bumping @mastra/* packages (e.g. @mastra/core), the lockfile indicates these packages require Node >=22.13.0, but this repo’s engines.node is still >=20.9.0. This mismatch can lead to install/runtime failures depending on the environment; consider updating engines.node (and CI/runtime docs) to match, or pin Mastra dependencies to versions compatible with Node 20.

Copilot uses AI. Check for mistakes.
"@mastra/evals": "^1.2.1",
"@mastra/fastembed": "^1.0.1",
"@mastra/gcs": "^0.2.0",
"@mastra/lance": "^1.0.4",
"@mastra/libsql": "^1.8.2-alpha.0",
"@mastra/lance": "^1.0.5-alpha.0",
"@mastra/libsql": "^1.9.0-alpha.1",
"@mastra/loggers": "^1.1.1",
"@mastra/mcp": "^1.5.0",
"@mastra/memory": "^1.16.0-alpha.2",
"@mastra/memory": "^1.16.0-alpha.3",
"@mastra/mongodb": "^1.7.2-alpha.0",
"@mastra/observability": "^1.10.0-alpha.2",
"@mastra/otel-bridge": "^1.0.16",
Expand All @@ -121,8 +121,8 @@
"@octokit/plugin-retry": "^8.1.0",
"@openrouter/ai-sdk-provider": "^2.8.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.72.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.214.0",
"@opentelemetry/auto-instrumentations-node": "^0.73.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.215.0",
"@opeoginni/github-copilot-openai-compatible": "^1.0.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-collapsible": "^1.1.12",
Expand All @@ -147,7 +147,7 @@
"@tanstack/react-form-nextjs": "^1.29.0",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-query-devtools": "^5.99.2",
"@tanstack/react-store": "^0.10.0",
"@tanstack/react-store": "^0.11.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.24",
"@tslab/typescript-for-tslab": "^5.1.3",
Expand Down Expand Up @@ -209,7 +209,7 @@
"lenis": "^1.3.23",
"lucide-react": "^1.8.0",
"marked": "^18.0.2",
"mastracode": "^0.14.0",
"mastracode": "^0.15.0-alpha.10",
"mathjs": "^15.2.0",
"media-chrome": "^4.19.0",
"module": "^2.0.0",
Expand Down Expand Up @@ -284,7 +284,7 @@
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-onboarding": "^10.3.5",
"@storybook/nextjs": "^10.3.5",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/postcss": "^4.2.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/adm-zip": "^0.5.8",
Expand All @@ -301,8 +301,8 @@
"@types/strip-comments": "^2.0.4",
"@types/three": "^0.184.0",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "^4.1.4",
"cross-env": "^10.1.0",
"eslint": "^10.2.1",
Expand All @@ -312,13 +312,13 @@
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.3.5",
"ink-testing-library": "^4.0.0",
"mastra": "^1.6.1-alpha.8",
"mastra": "^1.6.1-alpha.10",
"prettier": "^3.8.3",
"storybook": "^10.3.5",
"tailwindcss": "^4.2.2",
"tailwindcss": "^4.2.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"typescript-eslint": "^8.59.0",
"typescript-language-server": "^5.1.3",
"vitest": "^4.1.4"
},
Expand All @@ -338,19 +338,19 @@
"lodash-es": "^4.18.1",
"lodash": "^4.18.1",
"dompurify": "^3.4.0",
"langsmith": "^0.5.20",
"langsmith": "^0.5.21",
"path-to-regexp": "^8.4.2",
"@tootallnate/once": "^3.0.1",
"picomatch": "^4.0.4",
"simple-git": "^3.36.0",
"rollup": "^4.60.1",
"rollup": "^4.60.2",
"hono": "^4.12.14",
"defu": "^6.1.7",
"minimatch": "^10.2.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@mastra/core": "^1.26.0-alpha.8"
"typescript-eslint": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@mastra/core": "^1.26.0-alpha.10"
}
}
65 changes: 0 additions & 65 deletions thoughts/ledgers/CONTINUITY_ses_2d77.md

This file was deleted.

62 changes: 0 additions & 62 deletions thoughts/ledgers/CONTINUITY_ses_3846.md

This file was deleted.

Loading
Loading