rust-kgdb 0.6.50 → 0.6.51

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +16 -2
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,29 @@
2
2
 
3
3
  All notable changes to the rust-kgdb TypeScript SDK will be documented in this file.
4
4
 
5
+ ## [0.6.51] - 2025-12-17
6
+
7
+ ### Factual Capabilities Comparison
8
+
9
+ #### Added Built-in Capabilities Table
10
+ Shows what HyperMind has natively vs what LangChain/DSPy need external dependencies for:
11
+
12
+ | Capability | HyperMind | LangChain/DSPy |
13
+ |------------|-----------|----------------|
14
+ | Recursive Reasoning | Datalog semi-naive (native) | Manual implementation |
15
+ | Graph Propagation | Pregel BSP | External library (NetworkX) |
16
+ | Multi-way Joins | WCOJ O(N^(ρ/2)) | No native support |
17
+ | Pattern Matching | Motif DSL | Manual traversal |
18
+ | OWL 2 RL Reasoning | Sparse matrix CSR/CSC | External reasoner |
19
+ | Vector Similarity | HNSW + ARCADE cache | External vector DB |
20
+ | Transitive Closure | Native Datalog | Loop implementation |
21
+
22
+ #### Added Agent Memory to Framework Comparison
23
+ - Built-in: Working + Episodic + KG-backed memory
24
+ - Memory Retrieval: 94% Recall@10 at 10K depth, 16.7ms
25
+
26
+ ---
27
+
5
28
  ## [0.6.50] - 2025-12-17
6
29
 
7
30
  ### Complete Architecture Documentation
package/README.md CHANGED
@@ -154,8 +154,22 @@
154
154
  | **Core Function** | Execute queries on data | Chain LLM prompts |
155
155
  | **Data Storage** | Built-in QuadStore | None (BYODB) |
156
156
  | **Query Execution** | Native SPARQL/Datalog | External DB needed |
157
-
158
- **Where HyperMind Genuinely Wins**:
157
+ | **Agent Memory** | Built-in (Working + Episodic + KG-backed) | External vector DB needed |
158
+ | **Memory Retrieval** | 94% Recall@10 at 10K depth, 16.7ms | Depends on external provider |
159
+
160
+ **Built-in Capabilities (No External Dependencies)**:
161
+
162
+ | Capability | HyperMind | LangChain/DSPy |
163
+ |------------|-----------|----------------|
164
+ | **Recursive Reasoning** | Datalog semi-naive evaluation (native) | Manual implementation needed |
165
+ | **Graph Propagation** | Pregel BSP (PageRank, shortest paths) | External library (NetworkX) |
166
+ | **Multi-way Joins** | WCOJ algorithm O(N^(ρ/2)) | No native support |
167
+ | **Pattern Matching** | Motif DSL `(a)-[]->(b); (b)-[]->(c)` | Manual graph traversal |
168
+ | **OWL 2 RL Reasoning** | Sparse matrix CSR/CSC (native) | External reasoner needed |
169
+ | **Vector Similarity** | HNSW + ARCADE 1-hop cache | External vector DB (Pinecone, etc.) |
170
+ | **Transitive Closure** | `ancestor(?X,?Z) :- parent(?X,?Y), ancestor(?Y,?Z)` | Loop implementation |
171
+
172
+ **Database Performance (vs Industry Leaders)**:
159
173
 
160
174
  | Metric | HyperMind | Comparison |
161
175
  |--------|-----------|------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-kgdb",
3
- "version": "0.6.50",
3
+ "version": "0.6.51",
4
4
  "description": "High-performance RDF/SPARQL database with AI agent framework. GraphDB (449ns lookups, 35x faster than RDFox), GraphFrames analytics (PageRank, motifs), Datalog reasoning, HNSW vector embeddings. HyperMindAgent for schema-aware query generation with audit trails. W3C SPARQL 1.1 compliant. Native performance via Rust + NAPI-RS.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",