feat: add local Qdrant-based memory MCP and dev setup

This commit is contained in:
2026-03-03 13:40:13 +01:00
parent 9a4a95feea
commit 5cf9922822
3 changed files with 30 additions and 0 deletions

12
fix-private.mjs Normal file
View File

@@ -0,0 +1,12 @@
import fs from 'fs';
import glob from 'glob';
const files = glob.sync('/Users/marcmintel/Projects/at-mintel/packages/*/package.json');
files.forEach(f => {
const content = fs.readFileSync(f, 'utf8');
if (content.includes('"private": true,')) {
console.log(`Fixing ${f}`);
const newContent = content.replace(/\s*"private": true,?\n/g, '\n');
fs.writeFileSync(f, newContent);
}
});