Release Summary
PR #244 merged the Neural Trader feature branch into main, adding 4 new crates and 2 ADRs.
New Crates
| Crate |
Version |
Tests |
Publishable |
neural-trader-core |
0.1.0 |
2 |
publish = false |
neural-trader-coherence |
0.1.0 |
8 |
publish = false |
neural-trader-replay |
0.1.0 |
2 |
publish = false |
neural-trader-wasm |
0.1.1 |
10 Rust + 43 Node.js |
publish = false (npm: @ruvector/neural-trader-wasm) |
Architecture
Six-layer pipeline treating the limit order book as a dynamic heterogeneous typed graph (10 node types, 12 edge types, 17 property keys) with MinCut coherence gating, CUSUM drift detection, and proof-gated replay memory.
L1 Ingest → L2 Graph → L3 GNN+Attention → L4 Memory → L5 Coherence → L6 Policy
Layers L1 (core), L4 (replay), L5 (coherence), and WASM bindings are implemented. L2, L3, L6 are planned.
Key Features
- Coherence Gate — tiered permissions (retrieve/write/learn/act) based on MinCut value, CUSUM score, drift score, and regime label
- Regime-Adaptive Thresholds — Calm (floor=12), Normal (floor=9), Volatile (floor=6)
- Reservoir Replay Store — bounded O(1) eviction, gated writes, 7 segment classification kinds
- WASM Bindings — BigInt-safe serialization, hex ID helpers, full coherence gate + replay store in browser
- Dot-matrix visuals — animated billboard squares and mouse-reactive grid on π.ruv.io landing pages
ADRs
- ADR-085 — Neural Trader architecture
- ADR-086 — WASM bindings type mapping strategy
CI Results
All 14 CI checks passed: clippy, 7 feature-flag checks, wasm dedup, test, bench, 4 cross-platform builds (darwin-arm64, darwin-x64, linux-x64-gnu, linux-arm64-gnu).
Publish Checklist
Related
Release Summary
PR #244 merged the Neural Trader feature branch into main, adding 4 new crates and 2 ADRs.
New Crates
neural-trader-corepublish = falseneural-trader-coherencepublish = falseneural-trader-replaypublish = falseneural-trader-wasmpublish = false(npm:@ruvector/neural-trader-wasm)Architecture
Six-layer pipeline treating the limit order book as a dynamic heterogeneous typed graph (10 node types, 12 edge types, 17 property keys) with MinCut coherence gating, CUSUM drift detection, and proof-gated replay memory.
Layers L1 (core), L4 (replay), L5 (coherence), and WASM bindings are implemented. L2, L3, L6 are planned.
Key Features
ADRs
CI Results
All 14 CI checks passed: clippy, 7 feature-flag checks, wasm dedup, test, bench, 4 cross-platform builds (darwin-arm64, darwin-x64, linux-x64-gnu, linux-arm64-gnu).
Publish Checklist
CARGO_PROFILE_RELEASE_CODEGEN_UNITS=256 CARGO_PROFILE_RELEASE_LTO=off wasm-pack build --target web --scope ruvector --releasenode crates/neural-trader-wasm/tests/node-smoke.mjscd crates/neural-trader-wasm/pkg && npm publish --access publicgcloud builds submit --config=crates/mcp-brain-server/cloudbuild.yaml --project=ruv-dev .Related