rust-kgdb 0.6.17 → 0.6.18

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/CHANGELOG.md +36 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,42 @@
2
2
 
3
3
  All notable changes to the rust-kgdb TypeScript SDK will be documented in this file.
4
4
 
5
+ ## [0.6.18] - 2025-12-16
6
+
7
+ ### Documentation: Progressive Disclosure Structure
8
+
9
+ Inspired by Symbolica's approach - content gradually steps up from simple to advanced.
10
+
11
+ #### docs/CORE_CONCEPTS.md - Complete Restructure
12
+ - **Problem/Solution code examples** at the very top
13
+ - **Plain English intro** for every technical section
14
+ - **Practical examples** before theory
15
+ - **Technical depth preserved** in clearly marked subsections
16
+ - **Gradual progression**: Simple → Practical → Why it matters → Deep Dive
17
+
18
+ #### Section Renames (Practical First)
19
+ | Before | After |
20
+ |--------|-------|
21
+ | Type Theory Foundation | Typed Tools: Input/Output Validation |
22
+ | Category Theory: Tools as Morphisms | Tool Chaining: Connecting Tools Together |
23
+ | Proof Theory: Execution Witnesses | Reasoning Trace: Audit Trail for Every Answer |
24
+ | Concept Lookup: The Cmd+/ Analogy | Schema Discovery: How Agents Find Your Data |
25
+
26
+ #### Structure Pattern (Each Section)
27
+ ```
28
+ ## Practical Title
29
+ > Plain English: What it does in one sentence
30
+
31
+ ### How to Use It (code example)
32
+ ### Why It Matters (business value)
33
+ ### Technical Foundation (optional deep dive)
34
+ [Full mathematical depth preserved here]
35
+ ```
36
+
37
+ **All Curry-Howard, Category Theory, Morphism definitions, TypeId system, Refinement Types, Session Types content preserved** - just better organized for progressive learning.
38
+
39
+ ---
40
+
5
41
  ## [0.6.17] - 2025-12-16
6
42
 
7
43
  ### Documentation Restructure: Practical First
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-kgdb",
3
- "version": "0.6.17",
3
+ "version": "0.6.18",
4
4
  "description": "Production-grade Neuro-Symbolic AI Framework with Schema-Aware GraphDB, Context Theory, and Memory Hypergraph: +86.4% accuracy over vanilla LLMs. Features Schema-Aware GraphDB (auto schema extraction), BYOO (Bring Your Own Ontology) for enterprise, cross-agent schema caching, LLM Planner for natural language to typed SPARQL, ProofDAG with Curry-Howard witnesses. High-performance (2.78µs lookups, 35x faster than RDFox). W3C SPARQL 1.1 compliant.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",