agentdb 3.0.0-alpha.13 → 3.0.0-alpha.14
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.
- package/README.md +207 -2834
- package/package.json +54 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentdb",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.0.0-alpha.14",
|
|
4
|
+
"description": "Self-learning vector memory for AI agents — single-file .rvf cognitive container with HNSW search, episodic Reflexion memory, causal graph + Cypher, 9 RL algorithms, Thompson Sampling bandit, 41 MCP tools, hybrid (BM25 + dense) retrieval, GNN attention. 150x faster than SQLite. Up to +36% search quality from feedback. Runs in Node, browsers (WASM), edge, offline. Backs the agentic-flow / ruflo / Claude Code memory layer.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"types": "dist/src/index.d.ts",
|
|
@@ -84,32 +84,79 @@
|
|
|
84
84
|
"keywords": [
|
|
85
85
|
"agentdb",
|
|
86
86
|
"vector-database",
|
|
87
|
+
"vector-store",
|
|
88
|
+
"vector-search",
|
|
87
89
|
"ai-agents",
|
|
90
|
+
"agent-memory",
|
|
91
|
+
"agentic-ai",
|
|
92
|
+
"agentic",
|
|
93
|
+
"agent-database",
|
|
88
94
|
"memory",
|
|
95
|
+
"self-learning",
|
|
96
|
+
"self-improving",
|
|
97
|
+
"reinforcement-learning",
|
|
98
|
+
"rl",
|
|
99
|
+
"thompson-sampling",
|
|
100
|
+
"bandit",
|
|
89
101
|
"causal-reasoning",
|
|
102
|
+
"causal-graph",
|
|
90
103
|
"reflexion",
|
|
91
104
|
"episodic-memory",
|
|
92
105
|
"skill-library",
|
|
93
106
|
"lifelong-learning",
|
|
94
107
|
"explainable-ai",
|
|
108
|
+
"explainable-recall",
|
|
95
109
|
"provenance",
|
|
110
|
+
"audit-log",
|
|
96
111
|
"hnsw",
|
|
112
|
+
"knn",
|
|
113
|
+
"ann",
|
|
97
114
|
"embeddings",
|
|
115
|
+
"embedding-search",
|
|
116
|
+
"semantic-search",
|
|
117
|
+
"hybrid-search",
|
|
118
|
+
"bm25",
|
|
119
|
+
"rrf",
|
|
120
|
+
"rag",
|
|
121
|
+
"retrieval-augmented-generation",
|
|
122
|
+
"cypher",
|
|
123
|
+
"graph-database",
|
|
124
|
+
"knowledge-graph",
|
|
125
|
+
"gnn",
|
|
126
|
+
"attention",
|
|
127
|
+
"mmr",
|
|
128
|
+
"rerank",
|
|
98
129
|
"sqlite",
|
|
99
130
|
"sql.js",
|
|
100
|
-
"wasm"
|
|
131
|
+
"wasm",
|
|
132
|
+
"edge",
|
|
133
|
+
"browser",
|
|
134
|
+
"offline-first",
|
|
135
|
+
"mcp",
|
|
136
|
+
"model-context-protocol",
|
|
137
|
+
"claude-code",
|
|
138
|
+
"claude-code-plugin",
|
|
139
|
+
"anthropic",
|
|
140
|
+
"llm-memory",
|
|
141
|
+
"llm-tools",
|
|
142
|
+
"agent-orchestration",
|
|
143
|
+
"agentic-flow",
|
|
144
|
+
"ruflo",
|
|
145
|
+
"ruvector",
|
|
146
|
+
"rust",
|
|
147
|
+
"napi",
|
|
148
|
+
"typescript"
|
|
101
149
|
],
|
|
102
150
|
"author": "ruv",
|
|
103
151
|
"license": "MIT",
|
|
104
152
|
"repository": {
|
|
105
153
|
"type": "git",
|
|
106
|
-
"url": "https://github.com/ruvnet/
|
|
107
|
-
"directory": "packages/agentdb"
|
|
154
|
+
"url": "git+https://github.com/ruvnet/agentdb.git"
|
|
108
155
|
},
|
|
109
156
|
"bugs": {
|
|
110
|
-
"url": "https://github.com/ruvnet/
|
|
157
|
+
"url": "https://github.com/ruvnet/agentdb/issues"
|
|
111
158
|
},
|
|
112
|
-
"homepage": "https://agentdb
|
|
159
|
+
"homepage": "https://github.com/ruvnet/agentdb#readme",
|
|
113
160
|
"dependencies": {
|
|
114
161
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
115
162
|
"@opentelemetry/api": "^1.9.0",
|