mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-31 05:13:39 +00:00
docs: add missing crates and examples to root README
Crates added: - ruvector-delta-core, delta-graph, delta-index, delta-consensus, delta-wasm (behavioral change tracking subsystem) - profiling (real-time coherence diagnostics) Examples added: - dna (rvDNA genomic analysis) - delta-behavior (change tracking math) - data (dataset discovery framework) - prime-radiant (coherence engine demos) - benchmarks (temporal reasoning benchmarks) - vwm-viewer (visual vector world model viewer) Updated counts: 70 crates, 34 examples, 34 capabilities. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
parent
784f5ea361
commit
9db3693a44
1 changed files with 26 additions and 2 deletions
28
README.md
28
README.md
|
|
@ -1137,7 +1137,7 @@ await dag.execute();
|
|||
</details>
|
||||
|
||||
<details>
|
||||
<summary>🦀 Rust Crates (63 Packages)</summary>
|
||||
<summary>🦀 Rust Crates (70 Packages)</summary>
|
||||
|
||||
All crates are published to [crates.io](https://crates.io) under the `ruvector-*` namespace.
|
||||
|
||||
|
|
@ -1406,6 +1406,24 @@ See [ruvector-dag README](./crates/ruvector-dag/README.md) for full documentatio
|
|||
|
||||
See [Domain-Driven Design](./docs/architecture/temporal-tensor-store-ddd.md) for architecture details.
|
||||
|
||||
### Delta Behavior (Behavioral Change Tracking)
|
||||
|
||||
| Crate | Description | crates.io |
|
||||
|-------|-------------|-----------|
|
||||
| [ruvector-delta-core](./crates/ruvector-delta-core) | Core delta types and traits for behavioral vector change tracking | [](https://crates.io/crates/ruvector-delta-core) |
|
||||
| [ruvector-delta-graph](./crates/ruvector-delta-graph) | Delta operations for graph structures — edge and node changes | [](https://crates.io/crates/ruvector-delta-graph) |
|
||||
| [ruvector-delta-index](./crates/ruvector-delta-index) | Delta-aware HNSW index with incremental updates and repair | [](https://crates.io/crates/ruvector-delta-index) |
|
||||
| [ruvector-delta-consensus](./crates/ruvector-delta-consensus) | Distributed delta consensus using CRDTs and causal ordering | [](https://crates.io/crates/ruvector-delta-consensus) |
|
||||
| [ruvector-delta-wasm](./crates/ruvector-delta-wasm) | WASM bindings for delta operations on vectors | [](https://crates.io/crates/ruvector-delta-wasm) |
|
||||
|
||||
**Delta Behavior** tracks how vectors change over time — the mathematics of systems that refuse to collapse. Incremental HNSW updates without full rebuilds, CRDT-based distributed consensus, and causal ordering for conflict-free replication.
|
||||
|
||||
### Profiling & Diagnostics
|
||||
|
||||
| Crate | Description | crates.io |
|
||||
|-------|-------------|-----------|
|
||||
| [profiling](./crates/profiling) | Real-time coherence assessment via dynamic min-cut | [](https://crates.io/crates/profiling) |
|
||||
|
||||
### CRV Signal Line Protocol
|
||||
|
||||
| Crate | Description | crates.io |
|
||||
|
|
@ -4213,7 +4231,7 @@ curl -X POST http://localhost:8080/search \
|
|||
<details>
|
||||
<summary>📚 Production Examples</summary>
|
||||
|
||||
28 production-ready examples demonstrating RuVector integration patterns.
|
||||
34 production-ready examples demonstrating RuVector integration patterns.
|
||||
|
||||
| Example | Description | Type |
|
||||
|---------|-------------|------|
|
||||
|
|
@ -4242,6 +4260,12 @@ curl -X POST http://localhost:8080/search \
|
|||
| [wasm](./examples/wasm) | Core WASM examples and bindings | WASM |
|
||||
| [nodejs](./examples/nodejs) | Node.js integration examples | Node.js |
|
||||
| [rust](./examples/rust) | Core Rust usage examples | Rust |
|
||||
| [dna](./examples/dna) | rvDNA: AI-native genomic analysis, variant calling, `.rvdna` format | Rust |
|
||||
| [delta-behavior](./examples/delta-behavior) | Mathematics of systems that refuse to collapse — behavioral change tracking | Rust |
|
||||
| [data](./examples/data) | Dataset discovery framework — graph-based pattern finding in massive datasets | Rust |
|
||||
| [prime-radiant](./examples/prime-radiant) | Prime-Radiant coherence engine examples and usage demos | Rust |
|
||||
| [benchmarks](./examples/benchmarks) | Comprehensive benchmarks for temporal reasoning and vector operations | Rust |
|
||||
| [vwm-viewer](./examples/vwm-viewer) | Visual vector world model viewer (HTML Canvas) | HTML |
|
||||
|
||||
</details>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue