From 687b5c949f11b98b94782cdd08c8aec61bd816fa Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Wed, 11 Mar 2026 18:11:32 -0400 Subject: [PATCH] fix: upgrade agentdb dependency from v2 to v3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v2 line (^2.0.0-alpha.3.6 resolving to 2.0.0-alpha.3.7) has broken package.json exports — 18 controller and CLI export paths point to ./dist/controllers/ but the actual build output is at ./dist/src/controllers/. This causes runtime errors: [AgentDB Patch] Controller index not found: node_modules/agentdb/dist/controllers/index.js The v3 line (3.0.0-alpha.3+) already has the correct exports map with all paths pointing to ./dist/src/. No further v2 patches are planned. Co-Authored-By: claude-flow --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 953d7d7d6..3523a4506 100644 --- a/package.json +++ b/package.json @@ -207,7 +207,7 @@ "@types/react-dom": "^19.2.2", "@vitejs/plugin-react-swc": "^4.2.0", "@xenova/transformers": "^2.17.2", - "agentdb": "^2.0.0-alpha.3.6", + "agentdb": "^3.0.0-alpha.3", "agentic-payments": "^0.1.13", "autoprefixer": "^10.4.21", "axios": "^1.12.2",