feat(hosted-data): add hosted replay repository and CLI - #3262
Open
xiaoyaoqilan wants to merge 16 commits into
Open
feat(hosted-data): add hosted replay repository and CLI#3262xiaoyaoqilan wants to merge 16 commits into
xiaoyaoqilan wants to merge 16 commits into
Conversation
This was referenced Jul 29, 2026
Codecov Report❌ Patch coverage is @@ Coverage Diff @@
## main #3262 +/- ##
==========================================
- Coverage 74.96% 74.86% -0.11%
==========================================
Files 1117 1129 +12
Lines 106875 108219 +1344
Branches 9699 9824 +125
==========================================
+ Hits 80123 81017 +894
- Misses 23945 24403 +458
+ Partials 2807 2799 -8
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 28 files with indirect coverage changes 🚀 New features to boost your workflow:
|
xiaoyaoqilan
marked this pull request as ready for review
July 29, 2026 03:22
xiaoyaoqilan
requested review from
Dreamsorcerer,
leshy,
mustafab0,
paul-nechifor and
spomichter
as code owners
July 29, 2026 03:22
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.
Status
This is the only PR proposed for review and merge for the current #3158 work. The earlier prototype #3201 is closed and is not a merge candidate.
User flow
After installing DimOS on Ubuntu or WSL, a developer can serve, upload, and replay a remote memory2 database through the normal
dimoscommand:The resolver downloads the database once to the XDG cache, verifies SHA-256, and reuses the verified cache on later runs.
What this PR adds
dimos data serve/upload/list/downloadcommands;dimos-replay://OWNER/REPOSITORY/OBJECT_IDreferences;GlobalConfig.replay_dband the existing Go2ReplayConnection;The existing DimOS Relay remains responsible for live robot streams. Hosted replay storage is durable and separate.
Important format boundary
dimos --replay run unitree-go2consumes a memory2 SQLite database (.db,.sqlite, or.sqlite3) containing synchronized lidar, odometry, and video streams. An arbitrary MP4 can be stored and downloaded, but it cannot drive the Go2 SLAM replay by itself.Validation
git diff --checkpassed;dimos-replay://download passed;No new dependencies are added. Serving uses the existing DimOS
webextra. Design context: #3260.Not in this PR
No Relay modification, browser UI, cloud provider, regional routing, or production authorization. This PR does not claim to complete every production requirement in #3158.
AI assistance
OpenAI Codex with GPT-5 assisted with implementation, tests, and scope reduction.
Checklist