feat(memory2): durable saved locations anchored in map across restarts - #3226
Open
jingdongdjj-ctrl wants to merge 2 commits into
Open
feat(memory2): durable saved locations anchored in map across restarts#3226jingdongdjj-ctrl wants to merge 2 commits into
map across restarts#3226jingdongdjj-ctrl wants to merge 2 commits into
Conversation
jingdongdjj-ctrl
requested review from
Dreamsorcerer,
leshy,
mustafab0,
paul-nechifor and
spomichter
as code owners
July 27, 2026 19:45
1 task
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.
Contribution path
#3225
Problem
tag_location("kitchen") works, but after a cold boot from a different pose, navigate_with_text("kitchen") cannot resolve the same physical place. The failure is also silent and the default behaviour drive to the wrong coordinates.
Solution
LocationStore/LocationMemory) that lets the robot save locations with accurate map references, allows updates, and clearly reports errors if a location can't be used.RelocStatus,map_id) so the system knows whether a location is based on up-to-date mapping data or stale information.unitree-go2-agentic-locationsblueprint, which combines agentic features, relocalization, and the new saved location memory.How to Test
unit test with
uv run pytest dimos/memory2/test_locations.py dimos/memory2/test_location_module.py \ dimos/agents/skills/test_navigation.py -k "navigate_to_location or location" -qAI assistance
Claude Code with Opus 5.0
Checklist