rust-kgdb 0.6.73 → 0.6.74

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 (2) hide show
  1. package/README.md +0 -24
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,30 +8,6 @@
8
8
 
9
9
  ---
10
10
 
11
- ## Documentation Guide (Reading Order)
12
-
13
- For engineers new to rust-kgdb, read in this order:
14
-
15
- | Order | Document | Purpose | Time |
16
- |-------|----------|---------|------|
17
- | 1 | **README.md** (this file) | Why rust-kgdb exists, what problem it solves, architecture overview | 15 min |
18
- | 2 | **[Quick Start](#quick-start)** | Get running with 5 lines of code | 5 min |
19
- | 3 | **[DESIGN.md](./DESIGN.md)** | HyperMind architecture: Schema Context, Predicate Resolver, Typed Tools | 20 min |
20
- | 4 | **[IMPLEMENTATION_GUIDE.md](./IMPLEMENTATION_GUIDE.md)** | Step-by-step implementation: SPARQL, Datalog, Motif, GraphFrames | 30 min |
21
- | 5 | **[examples/](./examples/)** | Working code: fraud detection, underwriting, graph analytics | 30 min |
22
- | 6 | **[HYPERMIND_BENCHMARK_REPORT.md](./HYPERMIND_BENCHMARK_REPORT.md)** | Detailed benchmark methodology and results | 15 min |
23
- | 7 | **[CHANGELOG.md](./CHANGELOG.md)** | Version history and feature additions | 5 min |
24
-
25
- **Quick Links:**
26
- - [Installation](#installation) - `npm install rust-kgdb`
27
- - [SPARQL Examples](#hypermind-where-neural-meets-symbolic)
28
- - [Datalog Examples](#hypermind-where-neural-meets-symbolic)
29
- - [GraphFrame Examples](#feature-overview)
30
- - [Fraud Detection](#production-example-fraud-detection)
31
- - [Benchmarks](#published-benchmarks)
32
-
33
- ---
34
-
35
11
  ## The Problem With AI Today
36
12
 
37
13
  Enterprise AI projects keep failing. Not because the technology is bad, but because organizations use it wrong.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-kgdb",
3
- "version": "0.6.73",
3
+ "version": "0.6.74",
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",