Problem
brev/launch-nemoclaw.sh on feat/brev-nemoclaw-plugin defaults both refs to main:
# line 22
COMMUNITY_REF="${COMMUNITY_REF:-${COMMUNITY_BRANCH:-main}}"
# line 26
PLUGIN_REF="${PLUGIN_REF:-main}"
The public NVIDIA Brev launchable (build.nvidia.com/nemoclaw → Try Early Preview) runs this script on every deploy. Tracking main means each user gets whatever HEAD is at that moment — behavior drifts, regressions ship silently to end users, and reproducing a bug report is impossible without a commit SHA.
Reported upstream in NVIDIA/NemoClaw#1242 by NV QA.
Constraint
NVIDIA/NemoClaw has git tags (latest v0.0.18) — PLUGIN_REF can pin to one today.
NVIDIA/OpenShell-Community has no tags and no releases — COMMUNITY_REF has nothing to pin to yet. Cutting a stable tag here is a prerequisite.
Proposed fix
- Cut a stable tag on
feat/brev-nemoclaw-plugin (or the branch backing the public launchable) — e.g. brev-launchable-v0.0.18 matching NemoClaw's release.
- Update defaults in
brev/launch-nemoclaw.sh:
COMMUNITY_REF="${COMMUNITY_REF:-brev-launchable-v0.0.18}"
PLUGIN_REF="${PLUGIN_REF:-v0.0.18}"
- Release-time bump — tie
PLUGIN_REF updates to NemoClaw release cadence so the launchable always points at the latest stable pair.
Environment
Problem
brev/launch-nemoclaw.shonfeat/brev-nemoclaw-plugindefaults both refs tomain:The public NVIDIA Brev launchable (build.nvidia.com/nemoclaw → Try Early Preview) runs this script on every deploy. Tracking
mainmeans each user gets whatever HEAD is at that moment — behavior drifts, regressions ship silently to end users, and reproducing a bug report is impossible without a commit SHA.Reported upstream in NVIDIA/NemoClaw#1242 by NV QA.
Constraint
NVIDIA/NemoClawhas git tags (latestv0.0.18) —PLUGIN_REFcan pin to one today.NVIDIA/OpenShell-Communityhas no tags and no releases —COMMUNITY_REFhas nothing to pin to yet. Cutting a stable tag here is a prerequisite.Proposed fix
feat/brev-nemoclaw-plugin(or the branch backing the public launchable) — e.g.brev-launchable-v0.0.18matching NemoClaw's release.brev/launch-nemoclaw.sh:PLUGIN_REFupdates to NemoClaw release cadence so the launchable always points at the latest stable pair.Environment