Files
ruvnet--RuView/vendor
ruv bb554ab7b4 chore: vendor ruvnet/metaharness as a git submodule
Adds vendor/metaharness (github.com/ruvnet/metaharness, pinned at
87b6c51 on main) -- the real MetaHarness generator: repo-aware CLI,
Rust/WASM+NAPI-RS kernel, host adapters, @metaharness/router
(cost-optimal model routing) and @metaharness/darwin ("Darwin Mode",
self-evolving harness config). ADR-285's harness/homecore/ already
depends on the real @metaharness/kernel@0.1.2 npm package; this
vendors the source repo alongside the other vendor/* submodules
(rufield, rvcsi, ruvector, sublinear-time-solver, midstream) for local
inspection and building.

No wiring into any harness/ or crate yet -- follow-up work.
2026-07-31 00:36:37 -04:00
..

vendor/

Third-party dependencies managed as git submodules.

Directory Upstream Description
midstream/ ruvnet/midstream Claude Flow middleware and agent orchestration
ruvector/ ruvnet/ruvector RuVector signal processing and ML pipelines
sublinear-time-solver/ ruvnet/sublinear-time-solver Sublinear-time optimization solvers

All submodules track the main branch of their upstream repos.

Setup

After cloning this repo, initialize submodules:

git submodule update --init --recursive

Or clone with submodules in one step:

git clone --recurse-submodules https://github.com/ruvnet/RuView.git

Update to latest upstream

git submodule update --remote --merge
git add vendor/
git commit -m "chore: update vendor submodules"

A GitHub Actions workflow also checks for updates every 6 hours and opens a PR automatically.