Mod:add soma support#91
Open
Chenyantt wants to merge 1 commit into
Open
Conversation
enkerewpo
reviewed
Jun 20, 2026
| use robonix_soma::launcher::PackageLauncher; | ||
| use robonix_soma::pb::contracts::{ | ||
| robonix_system_soma_get_urdf_server::RobonixSystemSomaGetUrdfServer, | ||
| robonix_system_soma_get_ymal_server::RobonixSystemSomaGetYmalServer, |
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.
Add soma system service support, including:
Soma — raw body YAML and URDF service
Soma loads one or more deployment directories, caches each deployment's raw
soma.ymaland referenced URDF text, then exposes them to other Robonixcomponents over gRPC.
This simplified version does not render or interpret a self-description. Pilot
calls
robonix/system/soma/get_ymalto receive the original YMAL string, andother services call
robonix/system/soma/get_urdfto receive the correspondingURDF XML string.
Config
Relative
robonix_rootis resolved from the config file directory. Relativedeploymentsentries are then resolved from that Robonix root. For example,when the config file is
system/soma/config.ymal,robonix_root: ../../anddeployments: [examples/test_ci]point at<repo>/examples/test_cino matterwhich directory
cargo run -p robonix-soma -- --config <path>is launched from.If
robonix_rootis omitted, Soma triesROBONIX_SOURCE_PATH,ROBONIX_ROOT,then searches upward from the current directory for the Robonix repository root.
Each deployment directory must contain:
robonix_manifest.yamlsoma.ymalor compatible names such asrobonix.soma.yamlurdf.pathRun
At startup Soma reads every deployment, optionally runs each local primitive and
skill package with
rbnx start -p <package_dir> --endpoint <atlas>, prints astartup report, registers itself in Atlas, and serves gRPC on
--listen.