UNPKG

claude-flow

Version:

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

49 lines (48 loc) 1.37 kB
{ "name": "@claude-flow/memory", "version": "3.0.0-alpha.15", "type": "module", "description": "Memory module - AgentDB unification, HNSW indexing, vector search, hybrid SQLite+AgentDB backend (ADR-009)", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": "./dist/index.js", "./*": "./dist/*.js" }, "scripts": { "test": "vitest run", "bench": "vitest bench", "build": "tsc", "prebuild": "rm -rf dist tsconfig.tsbuildinfo", "prepublishOnly": "npm run build && node -e \"const m = await import('./dist/index.js'); const required = ['ControllerRegistry','HnswLite','PersistentSonaCoordinator','RvfBackend','RvfLearningStore','RvfMigrator']; const missing = required.filter(k => !m[k]); if (missing.length) { console.error('Missing exports:', missing); process.exit(1); } console.log('All required exports present');\"" }, "dependencies": { "agentdb": "^3.0.0-alpha.10", "sql.js": "^1.10.3" }, "optionalDependencies": { "better-sqlite3": "^12.9.0" }, "devDependencies": { "@types/better-sqlite3": "^7.6.11", "@types/sql.js": "^1.4.9", "vitest": "^4.0.16" }, "files": [ "dist", "README.md" ], "publishConfig": { "access": "public", "tag": "v3alpha" }, "os": [ "darwin", "linux", "win32" ], "cpu": [ "x64", "arm64" ] }