Commit graph

4 commits

Author SHA1 Message Date
ruvnet
96d8fdc172 chore(workspace): cargo fmt — mechanical whitespace fix across 427 files
Pre-existing rustfmt drift across the workspace was blocking CI's
`Rustfmt` check on PR #373 + PR #377. Running plain `cargo fmt`
reformats 427 files; no semantic changes, no logic changes, no
behavior changes — just what rustfmt already wanted.

None of the touched files are in ruvector-rabitq, ruvector-rulake,
or the new mirror-rulake workflow — those were already fmt-clean
per the per-crate checks on commits 5a4b0d782, 5f32fd450, f5003bc7b.
Drift is in cognitum-gate-kernel, mcp-brain, nervous-system,
prime-radiant, ruqu-core, ruvector-attention, ruvector-mincut,
ruvix/* and sub-crates, plus several examples.

Verified post-fmt:
  cargo check -p ruvector-rabitq -p ruvector-rulake            → clean
  cargo clippy -p ... -p ... --all-targets -- -D warnings      → clean
  cargo test   -p ... -p ... --release                         → 82/82 pass

Intentionally does NOT touch clippy drift — many more warnings
(missing docs, precision-loss casts, too-many-args, unsafe-safety-
docs) spread across unrelated crates, each category a cross-cutting
design decision that deserves its own review.

With this commit Rustfmt CI goes green on PR #373 and PR #377.
Clippy will still fail — that's honest pre-existing state for a
separate dedicated PR.

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-04-24 10:44:02 -04:00
Claude
17ded318d0 feat: 691 discoveries, 50 cross-domain correlations via per-node PPR
Expanded to 13 domains with 14 new data sources:
- Extreme exoplanets (ultra-short period), NOAA solar wind/sunspots,
  ESO press releases, CERN Higgs, NASA Techport, SIMBAD pulsars,
  TESS planet candidates, deep earthquakes (>300km), WHO global health,
  SDSS galaxies, satellite fires, Mars weather

Pipeline improvements:
- Per-node ForwardPush PPR (eps=0.0001) instead of domain-seed
- 12-NN sparse graph for better cross-domain bridge detection
- De-duplicated correlations with seen-set

Top novel discoveries by sublinear solver:
- Space-science → Earth: solar activity correlates with deep earthquakes
- Materials-physics → Space-science: solar region AR14384 persistence
- Earth-science → Economics: crypto bear market + global growth slowdown
- Culture → Space-science: elevated solar activity + dense NEO approaches

https://claude.ai/code/session_01UWE22wnsZRSHKhT4h4Axby
2026-03-16 23:17:00 -04:00
Claude
402d5dccd8 feat: ETL pipeline with sublinear ForwardPush PPR for cross-domain discovery
Three-stage pipeline (Extract → Transform → Load) using ruvector-solver:
- Extract: loads 460+ discoveries from 48 JSON data sources
- Transform: embeds into 64-dim vectors, builds 8-NN sparse graph,
  runs ForwardPush PPR (sublinear O(1/ε), Andersen-Chung-Lang 2006)
- Load: outputs ranked cross-domain correlations + 12×12 domain matrix

New data sources from parallel explorer swarms:
- Humanities: Harvard Art, Library of Congress, Open Library, Nobel, Smithsonian
- Genetics/Env: ClinVar variants, GBIF endangered, EPA air, marine, satellite fires
- Tech/Infra: GitHub trending, Hacker News, SpaceX, ISS, crypto/forex markets

Novel discoveries found by PPR:
- Technology→Earth climate correlation (equatorial weather patterns)
- Technology→Space-science link (ultra-short period brown dwarf)
- Life-science→Academic (agentic AI + GPCR drug discovery bridge)

https://claude.ai/code/session_01UWE22wnsZRSHKhT4h4Axby
2026-03-16 23:17:00 -04:00
Claude
bf244c35e0 feat: expand discovery swarm to 25+ domains with 200+ new entries
New data sources: NASA APOD, GBIF biodiversity, Open-Meteo climate,
solar flares, USGS rivers, arXiv papers, NOAA ocean buoys, disease
tracking, air quality, 126 asteroid close approaches, NASA natural
events (wildfires), and cross-domain correlation engine.

Also adds train-discoveries crate for RuVector-based cross-domain
similarity search training pipeline.

https://claude.ai/code/session_01UWE22wnsZRSHKhT4h4Axby
2026-03-16 23:16:24 -04:00