You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dimos --simulation run unitree-g1-sim boots but the humanoid never moves: click-to-go plans a path and WASD does nothing.
Root cause
The planner publishes nav_cmd_vel and the Rerun panel publishes tele_cmd_vel; G1SimConnection listens on cmd_vel. Every other nav blueprint has a MovementManager merging the two, unitree_g1_basic_sim never got one. Same since Nav Stack 0.1, shipped broken in 0.0.13.
Solution
Add MovementManager.blueprint() to unitree_g1_basic_sim, as unitree_g1_nav_simple does.
How to test
uv run dimos --simulation run unitree-g1-sim, click a goal or use WASD: the G1 walks.
AI assistance
Claude Code (Fable 5.1) assisted extensively with implementation, tests and the PR description under my direction. All hardware validation was done by me on the robot.
The validated authentication and cockpit credential flows behave correctly, with no actionable issue identified.
What we checked:
Ran authentication tests against the relay with missing, invalid, mismatched, and valid robot and viewer credentials, verifying that unauthorized sessions receive auth_failed and valid credentials receive a welcome, and that protected /api/stats requests return 401 without a viewer bearer and 200 with one.
Rendered the cockpit authentication-failure state in Chromium, then validated that submitting a valid viewer token stores it and reloads into an authenticated viewer state, and that logging out clears the stored token and returns to the token entry form.
Changed the relay endpoints and gates and updated the Python bridge client token contract, then ran the integration checks again to confirm the same auth behavior and status codes; environment prepared with Deno installed in a temporary location and all commands exited cleanly.
Executed the corrected Playwright evidence command and it exited 0, confirming that token storage, reload/reconnect state, and credential clearing completed successfully.
Summary
Adds authenticated relay support for robot keys and viewer tokens, including credential handling in the Python bridge and relay protocol.
Adds cockpit token entry, reconnect, and logout behavior for authenticated viewer sessions.
Masks secret configuration values in CLI output and excludes them from persisted run metadata.
dimos --simulation run unitree-g1-sim boots but the humanoid never moves: click-to-go plans a path and WASD does nothing.
Root cause
The planner publishes nav_cmd_vel and the Rerun panel publishes tele_cmd_vel; G1SimConnection listens on cmd_vel. Every other nav blueprint has a MovementManager merging the two, unitree_g1_basic_sim never got one. Same since Nav Stack 0.1, shipped broken in 0.0.13.
Solution
Add MovementManager.blueprint() to unitree_g1_basic_sim, as unitree_g1_nav_simple does.
How to test
uv run dimos --simulation run unitree-g1-sim, click a goal or use WASD: the G1 walks.
AI assistance
Claude Code (Fable 5.1) assisted extensively with implementation, tests and the PR description under my direction. All hardware validation was done by me on the robot.
Checklist
* [ ] I have read and approved the [CLA](https://github.com/dimensionalOS/dimos/blob/main/CLA.md).
What hardware validation was done haha, isn't this a sim only PR?
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
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.
Problem
dimos --simulation run unitree-g1-simboots but the humanoid never moves: click-to-go plans a path and WASD does nothing.Root cause
The planner publishes
nav_cmd_veland the Rerun panel publishestele_cmd_vel;G1SimConnectionlistens oncmd_vel. Every other nav blueprint has a MovementManager merging the two,unitree_g1_basic_simnever got one. Same since Nav Stack 0.1, shipped broken in 0.0.13.Solution
Add
MovementManager.blueprint()tounitree_g1_basic_sim, asunitree_g1_nav_simpledoes.How to test
uv run dimos --simulation run unitree-g1-sim, click a goal or use WASD: the G1 walks.AI assistance
Claude Code (Fable 5.1) assisted extensively with implementation, tests and the PR description under my direction. All hardware validation was done by me on the robot.
Checklist