rust-kgdb 0.6.54 → 0.6.56

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 +22 -0
  2. package/README.md +212 -1678
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  All notable changes to the rust-kgdb TypeScript SDK will be documented in this file.
4
4
 
5
+ ## [0.6.55] - 2025-12-17
6
+
7
+ ### Thought-Provoking Documentation Rewrite
8
+
9
+ #### New Opening: "Why AI Agents Keep Lying"
10
+ Rewrote the entire opening to explain the core insight in human, thought-provoking style:
11
+ - LLMs don't know YOUR data - they make things up
12
+ - Industry response (guardrails, RAG, fine-tuning) treats symptoms, not causes
13
+ - Our insight: What if AI couldn't lie even if it wanted to? Through ARCHITECTURE.
14
+ - LLM generates queries, database executes on YOUR data - no hallucination possible
15
+
16
+ #### Mathematical Foundations Section
17
+ Rewrote in SME style explaining WHY each concept matters:
18
+ - **Category Theory**: "Not Academic Masturbation" - makes incorrect tool calls unrepresentable
19
+ - **Curry-Howard**: Proofs you can execute - audit trails ARE mathematical proofs
20
+ - **WCOJ**: When O(N²) is unacceptable - 31K vs 1T operations for triangle queries
21
+ - **Sparse Matrix**: Why your RAM doesn't explode - CSR makes terabyte matrices practical
22
+ - **Semi-Naive Datalog**: Don't repeat yourself - O(depth) vs O(facts) iterations
23
+ - **HNSW**: O(log N) similarity - find top 10 from 10K embeddings in 16ms
24
+
25
+ ---
26
+
5
27
  ## [0.6.54] - 2025-12-17
6
28
 
7
29
  ### Embedded Database: Game Changer