chore: import shaal/VectorVroom as submodule under examples/#378
Merged
Conversation
VectorVroom is a browser-based genetic-algorithm car racer that uses ruvector's WASM build for a "cross-track vector-memory bridge" — effectively a downstream demo of the RuVector ecosystem running in a browser with no build step. Repo: https://github.com/shaal/VectorVroom Homepage: https://vectorvroom.shaal.dev Size: 3.4 MiB Language: JavaScript Stars: 8 Pinned at upstream commit 4c2527b4526ccb8960cd13e3d9e1802d958dca60 ("fix(ab-mode): sync baseline worker …"). Contributors who want to interact with the demo source should run: git submodule update --init examples/vectorvroom Otherwise the directory is a clone-on-demand pointer; cargo / CI for the rest of the workspace is unaffected since examples/* is already excluded from the root workspace `members` list. Heads up: shaal/VectorVroom currently has no declared license (GitHub API reports `license: null`). This matters if we ever embed its code into a ruvector release artifact; as a pure submodule pointer we're only vendoring a clone URL + commit SHA, not the code itself into our tree. Co-Authored-By: claude-flow <ruv@ruv.net>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Imports shaal/VectorVroom as a git submodule under
examples/vectorvroom. VectorVroom is a browser-based genetic-algorithm car racer that uses RuVector's WASM build for a "cross-track vector-memory bridge" — effectively a downstream demo of the ecosystem running entirely in the browser with no build step.What lands in this PR
Consumer notes
Fresh clones get an empty `examples/vectorvroom/` directory unless they run:
```bash
git submodule update --init examples/vectorvroom
```
That's the standard submodule idiom — nothing new for contributors already familiar with it. The rest of the workspace is unaffected: `examples/*` is already excluded from the root `[workspace] members` list, so `cargo check` / `cargo test` / `cargo build` at the root don't touch the submodule.
To update the submodule to upstream `main` later:
```bash
git submodule update --remote examples/vectorvroom
git commit -am "chore(vectorvroom): bump to upstream main"
```
Licensing note
shaal/VectorVroom currently declares no license (GitHub's API returns `license: null`). This matters if we ever embed or redistribute its code in a RuVector release artifact. As a pure submodule pointer we're only vendoring a clone URL + commit SHA — no VectorVroom source enters the ruvector tree itself, so this import is fine as-is. Worth revisiting if:
Either of those would need a license clarification with the upstream author first.
Test plan
🤖 Generated with claude-flow