Add NemoClaw integration - #39
Open
nir-singher-band wants to merge 1 commit into
Open
nir-singher-band wants to merge 1 commit into
nir-singher-band wants to merge 1 commit into
Conversation
Onboards a fresh NemoClaw sandbox on the Anthropic provider (non-interactive), applies the Band OpenClaw plugin's egress policy, installs the plugin (with the current WASM repair 0.2.1 needs), mints a Band agent, and wires it in as the sandbox's channel account — before starting the gateway. Sandbox setup runs before Band agent registration, mirroring openclaw/bootstrap.sh's ordering: a failed onboard never leaves an orphaned Band agent. Validated: python3 scripts/check.py, pytest tests/ -q, bash -n, and scripts/local-bootstrap.sh nemoclaw --print (matches the committed script). Not run end-to-end against live NemoClaw/Docker/Anthropic — no such host in this environment; see PR description.
nir-singher-band
marked this pull request as ready for review
September 16, 2026 16:54
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.
Summary
Adds
nemoclaw/(manifest.yaml+bootstrap.sh+README.md) so connecting an OpenClaw agent inside a NemoClaw sandbox to Band is a singlecurl … | bashsnippet, matching the pattern the NemoClaw fern tutorial documents manually today.The snippet, in order (mirrors openclaw/bootstrap.sh's ordering — sandbox setup before Band registration, so a failed onboard never orphans a Band agent):
nemoclawonPATH,ANTHROPIC_API_KEYexported,nemoclaw host probesucceeds (Docker Desktop/Colima running, not OrbStack).NEMOCLAW_PROVIDER=anthropic,--non-interactive --yes-i-accept-third-party-software— see NemoClaw's CLI reference).@band-ai/openclaw-channel-band@0.2.1in the sandbox vianemoclaw <name> execand repairs its missing WASM file (current upstream gap).openclaw/bootstrap.sh).exec, then restarts the gateway.Validation
python3 scripts/check.py— OK, 4 integrations valid.pytest tests/ -q— 19 passed.bash -n nemoclaw/bootstrap.sh— OK;shellcheckclean apart from one intentional SC2016 (the in-sandbox repair block is single-quoted on purpose — it must not expand on the host).scripts/local-bootstrap.sh nemoclaw --print— output matches the committed script byte-for-byte.Not run end-to-end. This environment has no NemoClaw install, Docker, GPU, or live Anthropic/Band credentials, so the actual onboard → policy → plugin-install → agent-wiring → gateway-restart sequence hasn't executed against real infrastructure. Please dry-run it on a real NemoClaw host before merging.
Open question for maintainers
AGENTS.md's rule is that a new PA harness also joins
pa-conformance/(a four-verb runner + stack). NemoClaw here is a sandboxed deployment of the already-covered OpenClaw harness (same plugin, same channel account shape) rather than a distinct agent runtime, and its stack would need a NemoClaw-capable Docker host, which doesn't fit the existing compose-stack pattern the other harnesses use. I left conformance coverage out of this PR rather than fake it — happy to scope it as a follow-up if you want NemoClaw in the live suite regardless.